I'm in a hospital in Spain and my MacBook was stolen.
Now I bought a new one and need to configure it. I have an external hard drive that backup everything using Time Machine, but I don't want all the crap I had in the old one.
| module.exports = function(dbConfig) { | |
| var knex = require('knex')(dbConfig); | |
| var KnexQueryBuilder = require('knex/lib/query/builder'); | |
| KnexQueryBuilder.prototype.paginate = function (per_page, current_page) { | |
| var pagination = {}; | |
| var per_page = per_page || 10; | |
| var page = current_page || 1; | |
| if (page < 1) page = 1; |
| import React from 'react' | |
| import { connect } from 'react-redux' | |
| import { redirect as redirectAction } from 'src/redux/auth/action'; | |
| class Index extends React.Component { | |
| static propTypes = { | |
| redirect: React.PropTypes.func.isRequired, | |
| }; |
I'm in a hospital in Spain and my MacBook was stolen.
Now I bought a new one and need to configure it. I have an external hard drive that backup everything using Time Machine, but I don't want all the crap I had in the old one.
| @mixin font-stack($family, $weight, $size: inherit, $line-height: inherit, $style: normal, $stack: '"Lucida Grande", "Lucida Sans", Verdana, Helvetica, Arial, sans-serif') { | |
| @if $weight >= 6 { -webkit-font-smoothing: antialiased; } // Sharpen up the bold text | |
| font: { | |
| @if $style == normal { | |
| family: "#{$family} #{$weight}r", "#{$family} A", "#{$family} B", unquote($stack); | |
| } | |
| @else if $style == italic { | |
| family: "#{$family} #{$weight}i", "#{$family} A", "#{$family} B", unquote($stack); | |
| } | |
| size: $size; |
| import org.gradle.api.tasks.Exec | |
| defaultTasks 'bower' | |
| // Get the path for the locally installed binaries | |
| task npmBin << { | |
| new ByteArrayOutputStream().withStream { os -> | |
| def result = exec { | |
| executable = 'npm' | |
| args = ['bin'] |
| #!/usr/bin/env python | |
| # saved to ~/bin/batcharge.py and from | |
| # http://stevelosh.com/blog/2010/02/my-extravagant-zsh-prompt/#my-right-prompt-battery-capacity | |
| #!/usr/bin/env python | |
| # coding=UTF-8 | |
| import math, subprocess | |
| p = subprocess.Popen(["ioreg", "-rc", "AppleSmartBattery"], stdout=subprocess.PIPE) | |
| output = p.communicate()[0] |
Requires a patched powerline font (see https://gist.github.com/baopham/1838072 or https://github.com/Lokaltog/powerline-fonts).
Screenshot using the smyck theme.
| define([ | |
| 'marionette', | |
| 'templates' | |
| ], function(Marionette, Templates) { | |
| var app = new Marionette.Application({ | |
| root: '/', | |
| templates: Templates | |
| }); | |
| /* | |
| AngularJS v1.1.4 | |
| (c) 2010-2012 Google, Inc. http://angularjs.org | |
| License: MIT | |
| */ | |
| (function(M,V,s){'use strict';function gc(){var b=M.angular;M.angular=hc;return b}function o(b,a,c){var d;if(b)if(I(b))for(d in b)d!="prototype"&&d!="length"&&d!="name"&&b.hasOwnProperty(d)&&a.call(c,b[d],d);else if(b.forEach&&b.forEach!==o)b.forEach(a,c);else if(!b||typeof b.length!=="number"?0:typeof b.hasOwnProperty!="function"&&typeof b.constructor!="function"||b instanceof P||ca&&b instanceof ca||Da.call(b)!=="[object Object]"||typeof b.callee==="function")for(d=0;d<b.length;d++)a.call(c,b[d], | |
| d);else for(d in b)b.hasOwnProperty(d)&&a.call(c,b[d],d);return b}function rb(b){var a=[],c;for(c in b)b.hasOwnProperty(c)&&a.push(c);return a.sort()}function ic(b,a,c){for(var d=rb(b),e=0;e<d.length;e++)a.call(c,b[d[e]],d[e]);return d}function sb(b){return function(a,c){b(c,a)}}function Ea(){for(var b=Z.length,a;b;){b--;a=Z[b].charCodeAt(0);if(a==57)return Z[b]="A",Z.join("");if(a==90)Z[b]="0";else return Z[b]=String.fromCharCod |
| (function() { | |
| var $injector = angular.injector(['ng']); | |
| $injector.invoke(function($http, $rootScope) { | |
| // this works! | |
| $rootScope.$apply(function() { | |
| $http.get("/auth/csrf_token").then(function(response) { | |
| angular.module("app").constant("CSRF_TOKEN", response.csrf_token); | |
| angular.bootstrap(document, ['app']); |