Skip to content

Instantly share code, notes, and snippets.

View ridvanaltun's full-sized avatar
๐Ÿด
prostagma?

Rฤฑdvan Altun ridvanaltun

๐Ÿด
prostagma?
View GitHub Profile
@rxaviers
rxaviers / gist:7360908
Last active May 17, 2025 07:56
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:
@iros
iros / API.md
Created August 22, 2012 14:42
Documenting your REST API

Title

<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>

  • URL

    <The URL Structure (path only, no root url)>

  • Method:

@jacksonfdam
jacksonfdam / gist:3000275
Created June 26, 2012 23:56
Regular Expressions List
//Regular Expressions List
//Short Tutorial
\ // the escape character - used to find an instance of a metacharacter like a period, brackets, etc.
. // match any character except newline
x // match any instance of x
^x // match any character except x
[x] // match any instance of x in the bracketed range - [abxyz] will match any instance of a, b, x, y, or z
| // an OR operator - [x|y] will match an instance of x or y
@akoimeexx
akoimeexx / rgb_driver-v6.c
Created March 27, 2012 13:47
AVR Attiny13 RGB Led Driver
/**
* AVR program to provide lighting modes for an RGB LED
* Copyright (c) 2011 Akoi Meexx (http://akoimeexx.com/)
*
* Chip type: Attiny13
* Clock frequency: Default internal clock (9.6MHz / 8 = 1.2MHz)
* +--------+
* [ (PB5) |1* 8| (VCC) Power ]
* [ Button (PB3) |2 7| (PB2) BLUE ]
* [ (PB4) |3 6| (PB1) GREEN ]