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"?> | |
<LinearLayout | |
android:id="@+id/widget51" | |
android:layout_width="fill_parent" | |
android:layout_height="fill_parent" | |
android:orientation="vertical" | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
> | |
<TextView | |
android:id="@+id/widget40" |
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
W/System.err(17841): java.lang.Exception: java.lang.Exception | |
W/System.err(17841): at com.gtalkstatus.android.GTalkStatusApplication.updateConnection(GTalkStatusApplication.java:87) | |
W/System.err(17841): at com.gtalkstatus.android.GTalkStatusUpdater.onStart(GTalkStatusUpdater.java:123) | |
W/System.err(17841): at com.gtalkstatus.android.GTalkStatusUpdater.onStartCommand(GTalkStatusUpdater.java:53) | |
W/System.err(17841): at android.app.ActivityThread.handleServiceArgs(ActivityThread.java:2873) | |
W/System.err(17841): at android.app.ActivityThread.access$3500(ActivityThread.java:119) | |
W/System.err(17841): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1926) | |
W/System.err(17841): at android.os.Handler.dispatchMessage(Handler.java:99) | |
W/System.err(17841): at android.os.Looper.loop(Looper.java:123) | |
W/System.err(17841): at android.app.ActivityThread.main(ActivityThread.java:4363) |
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
from direct.showbase.ShowBase import ShowBase | |
class MyApp(ShowBase): | |
def __init__(self): | |
ShowBase.__init__(self) | |
environ = loader.loadModel("models/crash/crash_crude") | |
environ.reparentTo(self.render) | |
environ.setScale(0.25, 0.25, 0.25) |
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.bestpnd.MagneticFieldMeter; | |
import android.app.Activity; | |
import android.os.Bundle; | |
import android.hardware.*; | |
import android.widget.TextView; | |
import java.lang.Float; | |
public class MagFieldMonitor extends Activity | |
{ |
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
import urllib | |
import urllib2 | |
import re | |
from urllib2 import URLError, HTTPError | |
error = None | |
wave = None | |
auth = None |
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
// Replace Links with Images | |
if (settings.replaceLinksWithImages == 'true') { | |
var subset = jQuery('.postbody a'); | |
if(settings.dontReplaceLinksSpoiler == 'true') { | |
subset = subset.not('.bbc-spoiler a'); | |
} | |
subset.each(function() { |
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
// Replace inline Images with Links | |
if (settings.replaceImagesWithLinks == 'true') { | |
jQuery('.postbody img').each(function() { | |
var source = jQuery(this).attr('src'); | |
jQuery(this).after("<a href='" + source + "'>" + source + "</a>"); | |
jQuery(this).remove(); | |
}); | |
} | |
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
{ | |
"name": "Sizerator", | |
"version": "1.0", | |
"description": "The first extension that I made.", | |
"toolstrips": [ | |
"my_toolstrip.html" | |
], | |
"permissions": [ | |
"tabs" | |
], |
NewerOlder