Skip to content

Instantly share code, notes, and snippets.

View lebiru's full-sized avatar
😀
learning vim

Bilal lebiru

😀
learning vim
View GitHub Profile
@ZacharyPatten
ZacharyPatten / readme.md
Last active February 3, 2023 15:58
GitHub Repository Checklist (C#)

GitHub Repository Checklist (C#)

Have a repository on GitHub? Planning on making a repository on GitHub? This checklist is intended to introduce you to various features that may help you make the most of your GitHub repository with specific recommendations for C# repositories.

Checklist

These are only suggestions.
They may not be appropriate for all repositories.
They are in no particular order.
Click each item to expand for more information.

@mbostock
mbostock / .block
Last active March 2, 2020 17:20
OMG Particles II
license: gpl-3.0
@trumball
trumball / Country drop down list.html
Created September 26, 2013 18:25
Country drop down list
<select>
<option value=" " selected>(please select a country)</option>
<option value="--">none</option>
<option value="AF">Afghanistan</option>
<option value="AL">Albania</option>
<option value="DZ">Algeria</option>
<option value="AS">American Samoa</option>
<option value="AD">Andorra</option>
<option value="AO">Angola</option>
<option value="AI">Anguilla</option>
@gamblore
gamblore / Maze.java
Created July 7, 2013 23:13
Maze generation in Java. (For libGDX)
package net.gamblore.maze.entities;
import java.util.LinkedList;
import java.util.List;
import com.badlogic.gdx.Gdx;
public class Maze {
private static final String TAG = "Maze";
@LeVM
LeVM / Default (OSX).sublime-keymap
Created September 27, 2012 18:58
Sublime Text 2 - View in multiple broswers
{ "keys": ["alt+1"], "command": "open_browser", "args": {"keyPressed": "1"} },
{ "keys": ["alt+2"], "command": "open_browser", "args": {"keyPressed": "2"} },
{ "keys": ["alt+3"], "command": "open_browser", "args": {"keyPressed": "3"} },
{ "keys": ["alt+4"], "command": "open_browser", "args": {"keyPressed": "4"} }