This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- This is v0.6 of the custom script for AlfredApp for iTerm 2.9+ | |
-- Please see https://github.com/stuartcryan/custom-iterm-applescripts-for-alfred/ | |
-- for the latest changes. | |
-- Please note, if you store the iTerm binary in any other location than the Applications Folder | |
-- please ensure you update the two locations below (in the format of : rather than / for folder dividers) | |
-- this gets around issues with AppleScript not handling things well if you have two iTerm binaries on your system... which can happen :D | |
on alfred_script(q) | |
if application "iTerm2" is running or application "iTerm" is running then |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
export default class Table extends React.Component { | |
constructor() { | |
super(); | |
this.state = { query: '', filteredData: undefined }; | |
} | |
searching = () => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unbind r | |
bind r source-file ~/.tmux.conf | |
###################### | |
### DESIGN CHANGES ### | |
###################### | |
# panes | |
set -g pane-border-fg black |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var MyComponent = React.createClass({ | |
mixins: [ReactMeteor.Mixin], | |
startMeteorSubscriptions: function() { | |
Meteor.subscribe("players"); | |
}, | |
// Make sure your component implements this method. | |
getMeteorState: function() { | |
return { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
➜ meteor modulus deploy | |
Welcome to Modulus | |
You are logged in as [email protected] | |
Please choose which project to use: | |
1) achs | |
2) achs-testing | |
[?] project 1 | |
Selecting achs | |
Compressing project... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
that.yielded.Dispose(); | |
^ | |
../src/fibers.cc: In static member function 'static v8::Handle<v8::Value> Fiber::New(const int&)': | |
../src/fibers.cc:223:13: error: request for member 'Length' in 'args', which is of non-class type 'const int' | |
if (args.Length() != 1) { | |
^ | |
../src/fibers.cc:9:45: error: 'New' is not a member of 'v8::String' | |
#define THROW(x, m) return ThrowException(x(String::New(m))) | |
^ | |
../src/fibers.cc:224:5: note: in expansion of macro 'THROW' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
➜ achs-updated git:(master) ✗ modulus deploy | |
Welcome to Modulus | |
You are logged in as [email protected] | |
[?] Are you sure you want to use project achs? (yes) yes | |
Meteor project detected... | |
Input: /Users/rodrigocisternas/meteor/achs-updated | |
Output: /Users/rodrigocisternas/meteor/achs-updated/.demeteorized | |
Determining Meteor version... | |
Meteor version: 1.0.3.1 | |
Bundling Meteor App... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Error: `/mnt/data/1/node_modules/fibers/bin/linux-x64-v8-3.28/fibers.node` is missing. Try reinstalling `node-fibers`? | |
at Object.<anonymous> (/mnt/data/1/node_modules/fibers/fibers.js:13:8) | |
at Module._compile (module.js:460:26) | |
at Object.Module._extensions..js (module.js:478:10) | |
at Module.load (module.js:355:32) | |
at Function.Module._load (module.js:310:12) | |
at Module.require (module.js:365:17) | |
at require (module.js:384:17) | |
at Object.<anonymous> (/mnt/data/1/programs/server/boot.js:1:75) | |
at Module._compile (module.js:460:26) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.element:before, | |
.element:after { | |
content: " "; | |
display: table; | |
} | |
.element:after { clear: both } | |
.element { *zoom: 1 } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.clearfix:after { | |
visibility: hidden; | |
display: block; | |
font-size: 0; | |
content: " "; | |
clear: both; | |
height: 0; | |
} | |
* html .clearfix { zoom: 1; } /* IE6 */ | |
*:first-child+html .clearfix { zoom: 1; } /* IE7 */ |