Skip to content

Instantly share code, notes, and snippets.

View codereflection's full-sized avatar

Jeff Schumacher codereflection

View GitHub Profile
@max-mapper
max-mapper / readme.md
Last active May 14, 2022 09:12
list of interdisciplinary open source conferences

Interdisciplinary Open Source Community Conferences

Criteria

  • Must be an event that someone involved in open source would be interested in attending
  • Must be a community oriented event (no corporate owned for-profit events here please)
  • Can't be about a specific language/framework.

Leave suggestions in the comments below

@iamandycohen
iamandycohen / Impersonation
Last active July 12, 2021 02:29
Impersonation
using System;
using System.ComponentModel;
using System.Runtime.InteropServices;
using System.Security.Permissions;
using System.Security.Principal;
public class UserImpersonator : IDisposable
{
[DllImport("advapi32.dll", SetLastError = true)]
@thiyagaraj
thiyagaraj / grover.c
Created October 17, 2012 03:53
Grover - A simple autonomous arduino bot - Work in progress
#include <Servo.h>
#define HEAD_SERVO_PIN 13
#define ULTRASONIC_TRIG_PIN 2
#define ULTRASONIC_ECHO_PIN 5
#define ULTRASONIC_POWER_PIN 3
#define OBSTACLE_MIN_DISTANCE 25 //in centimeter
#define MOVE_LEFT_PIN 12 //left
#define MOVE_RIGHT_PIN 11 //right
@zixiaojindao
zixiaojindao / .gitignore
Created October 17, 2012 02:57 — forked from smoothfriction/.gitignore
.gitignore for visual studio
#OS junk files
[Tt]humbs.db
*.DS_Store
#Visual Studio files
*.[Oo]bj
*.user
*.aps
*.pch
*.vspscc
@jcbozonier
jcbozonier / gist:1294555
Created October 18, 2011 03:41
Things to know when starting a new language...
How do I unit test?
Is there a REPL? How can I facilitate rapid feedback/learning?
How can I share what I make with the world?
What are the patterns/anti-patterns?
What is the core language philosophy?
How does this all work for Windows AND Mac
How do you create/reference/deploy third party libs and packages?
Recommended editor/IDE? What's the minimal I need to know to get up and running?
var app = require('express').createServer()
, io = require('socket.io').listen(app);
io.configure(function () {
io.set("transports", ["xhr-polling"]);
io.set("polling duration", 10);
});
var port = process.env.PORT || 3000;
app.listen(port);