View Testing Gist
- (void)testingGistAsSharedCode:(BOOL)param | |
{ | |
if (param) { | |
NSLog(@"Yes, it is"); | |
} else { | |
NSLog(@"It's useless"); | |
} | |
} |
View .vimrc
" Run git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim | |
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() " required | |
" core plugins | |
Plugin 'gmarik/Vundle.vim' | |
Plugin 'flazz/vim-colorschemes' |
View gist:aa88da1930ba17786cf1
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); | |
}); | |
}); |
View gist:9fb51f8113d147ca4f8d
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 () { |
View gist:ab2527a359c4d08e05ab
... | |
var settings = { | |
baseurl : 'http://demo.tlevi.net/', | |
path: .... | |
... |
View brdc.py
# 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 |
View .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 |
View gist:ef9ec9e13d2e32395818
(function() { | |
var app = angular.module("skeleton-app", []); | |
}()); | |
(function(app) { | |
app.controller('njajalcontroller', function($scope){ | |
$scope.hello = "hahahaha"; | |
}); | |
}(angular.module('app'))); |
View Sublime Text 3 Build 3103 License Key - CRACK
I use the first | |
—– BEGIN LICENSE —– | |
Michael Barnes | |
Single User License | |
EA7E-821385 | |
8A353C41 872A0D5C DF9B2950 AFF6F667 | |
C458EA6D 8EA3C286 98D1D650 131A97AB | |
AA919AEC EF20E143 B361B1E7 4C8B7F04 |
View gist:62a8945ccbfa4d24f89f2aff1be61428
{ | |
"name": "dummy-service", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"author": "", | |
"license": "ISC", |
OlderNewer