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
| <!doctype html> | |
| <!-- | |
| To run this demo you need to have seriously and the nightvision effect. | |
| wget https://raw.github.com/brianchirls/Seriously.js/master/seriously.js | |
| mkdir effects | |
| cd effects | |
| wget https://raw.github.com/brianchirls/Seriously.js/aacdc75665d98a52c8a0c2e0e0cbbf85b136a151/effects/seriously.nightvision.js | |
| --> | |
| <html> |
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
| int leds[] = {12, 8}; | |
| int potPin = 2; | |
| void setup() { | |
| Serial.begin(9600); | |
| for (int i; i <= sizeof(leds); i++) { | |
| pinMode(leds[i], OUTPUT); | |
| } |
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
| private abstract class CustomTabListener implements ActionBar.TabListener { | |
| @Override | |
| public void onTabUnselected(Tab tab) { | |
| ((TextView)tab.getCustomView()).setSelected(false); | |
| } | |
| @Override | |
| public void onTabReselected(Tab tab) { | |
| // Needed by the interface. |
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
| 5 stars 1626 | |
| 4 stars 579 | |
| 3 stars 99 | |
| 2 stars 32 | |
| 1 star 44 |
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
| Successful response | |
| < HTTP/1.1 200 OK | |
| < Date: Fri, 26 Aug 2011 08:07:13 GMT | |
| < Cache-Control: private, max-age=0 | |
| < Content-Type: text/xml; charset=utf-8 | |
| < Content-Length: 247 | |
| < | |
| <?xml version="1.0" encoding="utf-8"?> | |
| <cPTSOperator xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://tempuri.org/InData.xsd"> |
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
| diff --git a/src/com/example/android/supportv4/app/LoaderCustomSupport.java b/src/com/example/android/supportv4/app/LoaderCustomSupport.java | |
| index cdfce89..9131f52 100644 | |
| --- a/src/com/example/android/supportv4/app/LoaderCustomSupport.java | |
| +++ b/src/com/example/android/supportv4/app/LoaderCustomSupport.java | |
| @@ -16,8 +16,6 @@ | |
| package com.example.android.supportv4.app; | |
| -import com.example.android.supportv4.R; | |
| - |
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
| 1890 System.err W IOException processing: 26 | |
| 1890 System.err W java.io.IOException: Server returned: 3 | |
| 1890 System.err W at android_maps_conflict_avoidance.com.google.googlenav.map.BaseTileRequest.readResponseData(BaseTileRequest.java:115) | |
| 1890 System.err W at android_maps_conflict_avoidance.com.google.googlenav.map.MapService$MapTileRequest.readResponseData(MapService.java:1473) | |
| 1890 System.err W at android_maps_conflict_avoidance.com.google.googlenav.datarequest.DataRequestDispatcher.processDataRequest(DataRequestDispatcher.java:1117) | |
| 1890 System.err W at android_maps_conflict_avoidance.com.google.googlenav.datarequest.DataRequestDispatcher.serviceRequests(DataRequestDispatcher.java:994) | |
| 1890 System.err W at android_maps_conflict_avoidance.com.google.googlenav.datarequest.DataRequestDispatcher$DispatcherServer.run(DataRequestDispatcher.java:1702) | |
| 1890 System.err W at java.lan |
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
| ActionBar actionBar = (ActionBar) findViewById(R.id.actionbar); | |
| actionBar.setHomeAction(new IntentAction(this, HomeActivity.createIntent(this), R.drawable.ic_title_home_default)); | |
| actionBar.addAction(new IntentAction(this, createShareIntent(), R.drawable.ic_title_share_default)); | |
| actionBar.addAction(new ExportAction()); |
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
| SUBSYSTEM=="usb", SYSFS{idVendor}=="18d1", MODE="0666" | |
| SUBSYSTEM=="usb", SYSFS{idVendor}=="0bb4", MODE="0666" |
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
| // ==UserScript== | |
| // @name RemoveClickableBackgroundOnVoddler | |
| // @namespace voddler | |
| // @include http://www.voddler.*/* | |
| // ==/UserScript== | |
| (function () { | |
| var ad_background = document.getElementById("ad_background"); | |
| ad_background.setAttribute("id", "no_ad_background"); | |
| ad_background.style.cursor = ""; | |
| })(); |