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
| <script>(function(d, s, id) { | |
| var js, ujs = d.getElementsByTagName(s)[0]; | |
| if (d.getElementById(id)) return; | |
| js = d.createElement(s); js.id = id; | |
| js.src = "//umano.me/widgets/player.min.js"; | |
| ujs.parentNode.insertBefore(js, ujs); | |
| }(document, 'script', 'umano-jssdk'));</script> | |
| <div class="umano-player" data-canonical="http://pandodaily.com/2012/11/21/umano-wants-to-tell-you-the-news-literally"> | |
| </div> |
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
| #!/bin/bash | |
| # Updates all EC2 instances from git | |
| # Author: anton@sothree.com | |
| CODE_LOCATION=/var/www/your_project | |
| SERVER_PREFIX=your_project | |
| # exit if something fails | |
| set -e |
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
| #!/bin/bash | |
| # SSH into an EC2 instance by name | |
| # Author: tokudu@github.com (SoThree.com). | |
| set -e | |
| if [ $# -lt 1 ] | |
| then | |
| echo "Usage: `basename $0` instance_name" | |
| exit 1 | |
| fi |
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
| <?php | |
| function debug($var = false) { | |
| echo "\n<pre style=\"background: #FFFF99; font-size: 10px;\">\n"; | |
| $var = print_r($var, true); | |
| echo $var . "\n</pre>\n"; | |
| } | |
| ?> |
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"?> | |
| <com.tokudu.begemot.widgets.CheckableLinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:layout_width="fill_parent" | |
| android:layout_height="fill_parent" | |
| android:padding="5dip" | |
| android:orientation="vertical" | |
| > | |
| <CheckedTextView | |
| android:id="@+id/user_name" |
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
| package com.tokudu.begemot.widgets; | |
| import android.content.Context; | |
| import android.util.AttributeSet; | |
| import android.view.View; | |
| import android.widget.Checkable; | |
| import android.widget.CheckedTextView; | |
| import android.widget.LinearLayout; | |
| /* |
NewerOlder