Skip to content

Instantly share code, notes, and snippets.

View serkanaltuntas's full-sized avatar

Serkan Altuntaş serkanaltuntas

View GitHub Profile
@gaearon
gaearon / index.html
Last active February 13, 2024 09:46
Multiple React components on a single HTML page
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Add React in One Minute</title>
</head>
<body>
<h2>Add React in One Minute</h2>
<p>This page demonstrates using React with no build tooling.</p>
@hjertnes
hjertnes / doom.txt
Created April 6, 2018 08:28
Doom Emacs Cheatsheet
SPC
SPC: find file
, switch buffer
. browse files
: MX
; EX
< switch buffer
` eval
u universal arg
x pop up scratch
@deniszgonjanin
deniszgonjanin / flickr-download-set.py
Created February 23, 2012 00:04
#Downloads all the images in a Flickr set, given the set id
#Downloads all the images in a set, given the set id
# you need http://stuvel.eu/flickrapi#installation
import flickrapi
import urllib2
import os
api_key = 'a flickr API key'
#id of set you would like to download
@mnot
mnot / RSS.py
Created October 29, 2009 12:48
RSS.py: work with RSS channels as data structures
#!/usr/bin/env python
"""
RSS.py
Classes for working with RSS channels as arbitrary data structures.
Requires Python 2.2 or newer and PyXML 0.7.1 or newer.
ChannelBase - Base class for RSS Channels.
CollectionChannel - RSS Channel modeled as a URI-per-entry