View gist:7468636
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
Testing with Internet Explorer / NAT Port Forwarding | |
It is possible to connect to the rails server inside the linux virtual machine from the host computer. | |
This allows testing the development site with Internet Explorer. | |
Note: This assumes the CentOS vm is running in NAT networking mode. | |
1) Find out what ip address the vm is using. Open a terminal in the vm and run /sbin/ifconfig | |
For this example the eth0 inet addr is 192.168.179.128. | |
2) Open System > Administration > Security Level and Firewall. (Enter the root password if necessary.) | |
3) On the "Firewall Options" tab, open the "Other ports" section and add ports 3000 and 8080. | |
4) Click ok and confirm the changes. | |
2) On the windows host, open C:\ProgramData\VMware\vmnetnat.conf with a text editor. |
View gist:3f257badca7cfc2f7a940b0b8b56c8ec
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
======================= | |
SNES | |
======================= | |
7th Saga, The (USA) | |
ActRaiser (USA) | |
Aladdin (USA) | |
Alien 3 (USA) | |
Arkanoid - Doh it Again (USA) | |
Axelay (USA) |
View gist:af714f8b683a478931edfd8381adb598
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 scrollInt = 0; | |
function ScrollForever() { | |
scrollInt = window.setInterval(function() {window.scrollTo(0,document.body.scrollHeight);}, 1000); | |
} | |
function StopScrolling() { | |
window.clearInterval(scrollInt); | |
} | |
ScrollForever(); |
View gist:c903998b98b7920d529f9c9f169e2f3b
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 moment from 'moment-timezone'; | |
moment().tz("America/Detroit", true).utcOffset(0, false).format(); |
View gist:638d10102fc75ac62334dc85301be836
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
!`:: ; Next window | |
WinGetClass, ActiveClass, A | |
WinGet, WinClassCount, Count, ahk_class %ActiveClass% | |
IF WinClassCount = 1 | |
Return | |
Else | |
WinGet, List, List, % "ahk_class " ActiveClass | |
Loop, % List | |
{ | |
index := List - A_Index + 1 |
View gist:be9abca5f3b13169cce8
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
git config --global user.email "davidrenne@gmail.com" | |
git config --global user.name "David Renne" | |
git config --global core.editor "vim" | |
git config --global core.fileMode false | |
git config --global push.default current | |
git config --global alias.up 'pull --rebase --autostash' | |
git config --global alias.cp 'cherry-pick' | |
git config --global alias.s 'status' | |
git config --global alias.co 'checkout' | |
git config --global alias.c 'commit -a' |
View gist:28e123e27417f3326aee18363f69bc77
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 MUIField from 'material-ui/TextField'; | |
import React, {Component} from 'react'; | |
class TextField extends Component { | |
constructor(props, context) { | |
super(props, context); | |
this.state = { | |
value: props.value || props.defaultValue |
View gist:8a090f68d62192e2aed8a57a6da38130
This file has been truncated, but you can view the full file.
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
Memorycrawler.com User Bjorn_Freeh Memories | |
=========================MEMORY INFO===================================== | |
|Memory Name:Answering Interview:Batman for TV, 1966<br/><br/>Do you remember when Batman (Adam West) and Robin (Burt Ward) climbed the charts in prime-time TV? | |
| | |
|Place:Marysville, Michigan | |
| | |
|Location:Armada, |
View gist:b5fe3cd6ba5ecb05f3fe5f78ed43ae82
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
MemoryCrawler.com Podcast Episode 1: Our First Podcast! | |
Alan Jackson song was removed so we dont have any copyright issues (Search for a song called www.memory). TheMemoryCrawler is nervous about first podcast and tries to give a site overview. Calling grandpataylor (memory about catching fish). Shithouse memory from grandpataylor. Facebook integration with memorycrawler. Toe Jam and Earl relation to memorycrawler rankings. Post a memory of being a home wrecker. Calling brother dan10878 (sorry about the low audio). Beth Stalker plug. All you need is a little TCF bank! Susan loves my pathetic things I have done. Bank nightmares/learning experiences. Release of the wii. Name that videogame tune. | |
MemoryCrawler.com Podcast Episode 2: Thanksgiving Special | |
Memorycrawler Thanksgiving special. Interview with Aunt Becca. Knock down of her Ex-Husband and popping babies out. Baby stories of when Becca was born. Dan, Dave and Noel talk about Pickled Pigs Feet. Uncle Kirt talks about Marthon experience. Barb Taylor tal |
View gocore_install
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
set -e | |
appName=$1 | |
username=$2 | |
pushGithub=$3 | |
rm -rf $appName/ | |
camelUpper="${appName^}" | |
mkdir -p $appName/build$camelUpper | |
mkdir -p $appName/modelBuild$camelUpper | |
cd $appName/ | |
IN=$(pwd) |
NewerOlder