Skip to content

Instantly share code, notes, and snippets.

View saurshaz's full-sized avatar

saurshaz saurshaz

View GitHub Profile
@aljiwala
aljiwala / Awesome_GO.md
Created March 24, 2017 14:59
Awesomeness of Golang by uhub

#awesome-go

A curated list of awesome Go frameworks, libraries and software.

@auser
auser / App.jsx
Last active September 27, 2015 11:16
import React from 'react-native';
import Routes from '../routes';
export class App extends React.Component {
componentDidMount() {
// ... bootstrap goes here
}
_renderScene(route, nav) {
anonymous
anonymous / index.html
Created September 14, 2015 17:20
polymer // source http://jsbin.com/xiyane
<!doctype html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.6.4.js"></script>
<script src="https://code.jquery.com/jquery.min.js"></script>
<script src="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
<title>polymer</title>
<script src="https://rawgit.com/webcomponents/webcomponentsjs/master/webcomponents-lite.js"></script>
<link rel="import" href="https://rawgit.com/Polymer/polymer/master/polymer.html">
@benhedrington
benhedrington / dropbox
Created April 10, 2012 01:06
Dropbox init.d
#!/bin/sh
# dropbox service
# Replace with linux users you want to run Dropbox clients for
DROPBOX_USERS="user1 user2"
DAEMON=.dropbox-dist/dropbox
start() {
echo "Starting dropbox..."
for dbuser in $DROPBOX_USERS; do