This file contains hidden or 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
| <?xml version="1.0" encoding="utf-8"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| package="com.example.bgfirebaseapp" | |
| android:versionCode="1" | |
| android:versionName="1.0" > | |
| <uses-sdk | |
| android:minSdkVersion="16" | |
| android:targetSdkVersion="17" /> |
This file contains hidden or 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
| /* | |
| In the node.js intro tutorial (http://nodejs.org/), they show a basic tcp | |
| server, but for some reason omit a client connecting to it. I added an | |
| example at the bottom. | |
| Save the following server in example.js: | |
| */ | |
| var net = require('net'); |
This file contains hidden or 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
| Here is a simple jQuery plugin to make a table header fixed on top of a div when this is scrolled. | |
| Using the code from twitter bootstrap documentation page, this code is customized for table header. | |
| Create the table with the table-fixed-header class and a thead tag: | |
| <table class="table table-striped table-fixed-header" id="mytable"> | |
| <thead class="header"> | |
| <tr> | |
| <th>Email Address</th> | |
| <th>First Name</th> | |
| <th>Last Name</th> |
This file contains hidden or 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
| # Win7 Powershell script to resize Minecraft to 1280x720 (HD for fraps youtube capture) | |
| # use by typing the following at a command prompt: | |
| # > PowerShell -ExecutionPolicy Bypass -File minecraft-sethd.ps1 | |
| # refs: | |
| # http://stackoverflow.com/questions/2556872/how-to-set-foreground-window-from-powershell-event-subscriber-action | |
| # http://richardspowershellblog.wordpress.com/2011/07/23/moving-windows/ | |
| # http://www.suite101.com/content/client-area-size-with-movewindow-a17846 |
NewerOlder