Skip to content

Instantly share code, notes, and snippets.

@hebbian
hebbian / .Xresources
Last active October 29, 2015 03:24
.Xresources
!You may want to run $ xrdb -merge ~/.Xresources with each update
!Xft settings:
Xft*dpi: 96
Xft*hinting: true
! hintstyle 3 for flat-panel displays
Xft*hintstyle: 2
Xft*antialias: true
! uncomment/adjust for flat-panel display
...
var settings = {
baseurl : 'http://demo.tlevi.net/',
path: ....
...
@hebbian
hebbian / gist:9fb51f8113d147ca4f8d
Last active August 29, 2015 14:22
Get Base64 image file from file input with Angular
app.directive("fileread", [function () {
return {
scope: {
fileread: "="
},
link: function (scope, element, attributes) {
element.bind("change", function (changeEvent) {
var reader = new FileReader();
reader.onload = function (loadEvent) {
scope.$apply(function () {
io.on("connection", function(socket) {
console.log('A user connected');
socket.emit('message', { message: 'welcome to the chat' });
socket.on('send:message', function(data) {
console.log(data);
socket.emit('message', data);
});
});
@hebbian
hebbian / Testing Gist
Created February 17, 2015 07:44
Testing Gist
- (void)testingGistAsSharedCode:(BOOL)param
{
if (param) {
NSLog(@"Yes, it is");
} else {
NSLog(@"It's useless");
}
}
@hebbian
hebbian / brdc.py
Created August 26, 2015 17:08
brdc.py for weechat
# Copyright (C) 2013 - Hebbian <idiotiquehebb@gmail.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the