Skip to content

Instantly share code, notes, and snippets.

View goh-chunlin's full-sized avatar
😄
Your friendly neighbourhood software developer in Singapore.

Goh Chun Lin goh-chunlin

😄
Your friendly neighbourhood software developer in Singapore.
View GitHub Profile
@lukas-h
lukas-h / license-badges.md
Last active October 18, 2024 16:36
Markdown License Badges for your Project

Markdown License badges

Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.

Notes

  • The badges do not fully replace the license informations for your projects, they are only emblems for the README, that the user can see the License at first glance.

Translations: (No guarantee that the translations are up-to-date)

@PurpleBooth
PurpleBooth / README-Template.md
Last active October 19, 2024 20:53
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@pmgeorg
pmgeorg / MergeSort.cs
Last active May 19, 2019 09:30
Merge Sort C#
using System;
class MergeSortAlgorithm
{
public static void MergeSort(int[] input, int low, int high)
{
if (low < high)
{
int middle = (low / 2) + (high / 2);
MergeSort(input, low, middle);
@rxaviers
rxaviers / gist:7360908
Last active October 20, 2024 00:26
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:
@indyfromoz
indyfromoz / aspnet-mvc.gitignore
Created November 19, 2012 06:44
.Gitignore for ASP.NET MVC
###################
# compiled source #
###################
*.com
*.class
*.dll
*.exe
*.pdb
*.dll.config
*.cache