Skip to content

Instantly share code, notes, and snippets.

@b333z
b333z / gist:1048400
Created June 27, 2011 06:35 — forked from maxsum-corin/gist:1044165
Multiple windows in vim
:split filename
ctrl-w w split window and load another file
:vsplit filename
ctrl-w v vertical split
:hide
ctrl-w q close current window
ctrl-w arrow move cursor up/down/left/right a window
ctrl-w ctrl-w move cursor to another window (cycle)
@Gadgetoid
Gadgetoid / README.md
Last active April 19, 2024 10:07
Raspberry Pi 5 - All channels on pwm0
@Matthew-Wise
Matthew-Wise / Program.cs
Created July 19, 2022 14:10
Umbraco 10 Application insights with Serilog sink
using Microsoft.ApplicationInsights.Extensibility;
using Serilog;
public class Program
{
public static void Main(string[] args)
=> CreateHostBuilder(args)
.Build()
.Run();
@brgaulin
brgaulin / Readme.md
Last active April 19, 2024 10:03
ESP32-S2 Keyboard on Arduino
@rxaviers
rxaviers / gist:7360908
Last active April 19, 2024 10:02
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
1. یک فرم با تمامی اینپوت ها میسازین و با پست ریکوست به جایی ارسال میکنین
حداقل ده تا فیلد باید داشته باشه و از چک باکس و رادیو باتن با تمامی نکاتش استفاده شده باشه
2.https://developer.mozilla.org/en-US/docs/Web/HTML
3. مطالعه ی تمامی اینپوت ها و حل مثال هاش بجز جی اس ها
4. attribute - global -> مطالعه کنین
5. element
6. 5 site متفاوت رو تویه پی دی اف
@bomboclat
bomboclat / convert-deploymentconfig-to-deployment.py
Last active April 19, 2024 10:00
convert-deploymentconfig-to-deployment.py
#!/usr/bin/env python3
import sys
import re
import yaml
class YamlTransform():
def __init__(self, filename, keys_sub):
self.filename = filename
@adrianhajdin
adrianhajdin / globals.css
Created May 5, 2023 13:13
Next.js 13 Full Course 2023 | Build and Deploy a Full Stack App Using the Official React Framework
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
/*
Note: The styles for this gradient grid background is heavily inspired by the creator of this amazing site (https://dub.sh) – all credits go to them!
*/
@rohankhudedev
rohankhudedev / opcache.ini
Last active April 19, 2024 09:56
Best Zend OpCache Settings / Tuning / Configurations
[opcache]
; Determines if Zend OPCache is enabled
opcache.enable=1
; Determines if Zend OPCache is enabled for the CLI version of PHP
;opcache.enable_cli=1
; The OPcache shared memory storage size.
opcache.memory_consumption=512
@achmadns
achmadns / show-retention-policies.sh
Created October 9, 2017 03:43
Show retention policies on InfluxDB through CLI
#!/bin/bash
for x in `influx -execute 'show databases' | grep -v -e ^name -e --- -e ^_internal`;do printf "RETENTION POLICIES ON $x \n"; influx -execute "SHOW RETENTION POLICIES ON $x";done