Skip to content

Instantly share code, notes, and snippets.

View skade's full-sized avatar
💭
Bringing Rust to safety critical.

Florian Gilcher skade

💭
Bringing Rust to safety critical.
View GitHub Profile
@skade
skade / Procfile
Created November 10, 2011 15:45
Using Foreman & tail to follow the whole stack
app: padrino start -p 4000 -c my_app_folder -e development
redismonitor: redis-cli MONITOR
nginxtail: tail -n1 -f /var/log/nginx/access.log
@skade
skade / Guardfile
Created February 27, 2012 10:21 — forked from dhepper/ci.sh
Poor man's CI, Ruby edition
# gem install guard; guard
guard 'django_tests' do
watch(%r{(.+)\.py}) do |m|
`django-admin.py test main`
end
end
@skade
skade / gist:3251351
Created August 3, 2012 20:47
A statement about the Vagrant Usergroup Berlin July
Hello everyone,
as most of you will have noticed, there was no Vagrant Usergroup Berlin in July.
The reasons are simple: most of the organizing Team - Robert, Jana, Felix and
myself - are currently involved in Eurucamp (http://2012.eurucamp.org). The camp
will take place in 2 weeks (17. - 19. of August). After the camp, all systems
should be back to normal and we will try to organize another Vagrant UG as soon
as possible.
Thank you all,
@skade
skade / gist:4174945
Created November 30, 2012 10:14 — forked from mmack/gist:4174856
f = -> h,k { h[k] = Hash.new(&f) }
h = Hash.new &f
data = {
"80e33bc0-1b9a-0130-d2fb-38f6b113e413:data:message:name" => "max",
"80e33bc0-1b9a-0130-d2fb-38f6b113e413:data:text" => "bla",
"80e33bc0-1b9a-0130-d2fb-38f6b113e413:data:message:line:x" => 123
}
data.each do |path, v|
@skade
skade / function_to_copy.rs
Last active October 28, 2015 19:06
function_to_copy
use std::net::{TcpListener, TcpStream};
use std::io::BufReader;
use std::io::BufRead;
use std::io::Write;
fn read_message(stream: &mut TcpStream) -> String {
let mut read_buffer = String::new();
let mut buffered_stream = BufReader::new(stream);
let res = buffered_stream.read_line(&mut read_buffer);
@skade
skade / function_to_copy.rs
Last active November 2, 2015 09:47
stuff to copy
fn handle(mailbox: &mut Mailbox, stream: &mut TcpStream) {
let message = read_message(stream);
match message.trim() {
"READ" => {
let maybe_mail = mailbox.get_mail();
if let Some(mail) = maybe_mail {
write!(stream, "{}", mail);
} else {
write!(stream, "Sorry, no new messages!");
}

Client Management

  • ???

Proposals

  • Bidsketch
  • Proposable

Invoicing

@skade
skade / hackday_info
Created February 1, 2013 14:10
eurucamp JRuby Hackday
Hi,
you are receiving this email because you registered for the first eurucamp hackdays[1] that are happening this weekend at co.up. To get there, take the subway to Kottbusser Tor. Co.up is in the building at the rear of Adalbertstraße 7.
http://goo.gl/maps/gFYgV
I will open the doors at 9:00am on both days and keep them open for as long as possible/necessary. The room is prepared, some help cleaning it up on the evenings is much appreciated. We have drinks at the usual co.up prices (1.50 per bottle) and I will bring coffee beans. As usual, we might be ordering pizza or something similar during the day.
Be aware that you don't need to be on time - there will be enough time to introduce everyone personally and to hand out tasks for those that don't have any. Just drop by when its convenient for you.
@skade
skade / cancellation.md
Created March 5, 2013 23:50
eurucamp hackdays 03/2013 cancellation

eurucamp hackdays 03/2013 cancellation

Hi Berlin Ruby Hackers,

this might not be unexpected, given the silence and missing advertisment about the event after the inital announcement on the last rug_b: I cancelled eurucamp hackdays for March 2013. I just don't have the time and energy for running it currently.

Sorry for cancelling so late, I thought I'd find the time.

I am currently searching for dates in April, so stay tuned.

How to use a PS3 controller on Mac OS X 10.7 (Lion)

  1. Open Apple menu -> System Preferences -> Bluetooth and disable Bluetooth on Mac as well as any other nearby Macs or devices which will try to pair with and confuse the controller.

  2. Reset PS3 controller by inserting paperclip into pinhole near L2 button.

  3. Connect PS3 controller to Mac with USB cable.

  4. Enable Bluetooth.