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
#chat-box.ubuntu.hidden-xs | |
.closed | |
.pull-right | |
= link_to_function content_tag(:i, nil, class: 'glyphicon glyphicon-chevron-up').html_safe, 'chat.show()' | |
.m-l-small | |
= link_to_function 'Chat with us', 'chat.show()' | |
.opened{style: 'display: none'} | |
.header | |
.pull-right | |
= link_to_function content_tag(:i, nil, class: 'glyphicon glyphicon-plus-sign').html_safe, 'chat.maximize()', class: 'maximize', style: 'display: none' |
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
Parisoma @ 11th & Howard | |
http://www.parisoma.com/startups/#dedicated | |
$595 | |
Sandbox Suites @ 10th & Mission | |
http://www.sandboxsuites.com/coworking/ | |
$495, $595 (skybox) | |
Hub @ 5th & Mission | |
https://bayarea.impacthub.net/join-us/ |
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
Verifying myself: My Bitcoin username is +briansigafoos. https://onename.io/briansigafoos |
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
if [ -f ~/.bash_aliases ]; then | |
. ~/.bash_aliases | |
fi |
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
export PATH=~/bin:$PATH | |
if [ -f ~/.bash_aliases ]; then | |
. ~/.bash_aliases | |
fi | |
txtblk='\e[0;30m' # Black - Regular | |
txtred='\e[0;31m' # Red | |
txtgrn='\e[0;32m' # Green | |
txtylw='\e[0;33m' # Yellow |
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
# Word and Character Count service for Mac OS X | |
# Adds a Word and Character Count option to the text selection context menu | |
# Use Automator.app to create a new service, and then select the Run AppleScript | |
# action. Paste in this code and save as Word and Character Count. Now switch to | |
# a new app, select some text, and open the context menu to find the new option. | |
# Copyright 2012, Noah Slater <[email protected]> | |
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
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'aws-sdk' | |
s3 = AWS::S3.new( | |
:access_key_id => 'PASTE_HERE', | |
#### SECRET KEY ##### | |
:secret_access_key => 'PASTE_SECRET_KEY_HERE') | |
#### DO NOT COMMIT #### |
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
# Put this file in your /Users/<your_username>/Library/Preferences/<rubymine_version>/rubymine.vmoptions | |
# Ex: /Users/bob/Library/Preferences/RubyMine80/rubymine.vmoptions | |
-Xms128m | |
-Xmx1536m | |
-XX:MaxPermSize=250m | |
-XX:+UseCompressedOops |
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
# 1) Create your private key (any password will do, we remove it below) | |
$ cd ~/.ssh | |
$ openssl genrsa -des3 -out server.orig.key 2048 | |
# 2) Remove the password | |
$ openssl rsa -in server.orig.key -out server.key |
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
#!/bin/bash | |
if [ ! -f Gemfile ]; then | |
echo "Are you sure you're in a Ruby on Rails app?" | |
else | |
ln -s "$(pwd)" ~/.puma-dev/"$(basename `pwd`)" | |
puma-dev -install | |
echo "Your app should be available at http://$(basename `pwd`).dev and https://$(basename `pwd`).dev now!" | |
fi |
OlderNewer