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
translations missing or not in the right place for language 'pt': | |
Only in values/strings.xml: | |
<string name="log_today">Today</string> | |
<string name="log_yesterday">Yesterday</string> | |
<string name="log_smilies">Smilies</string> | |
<string name="translate_to_sys_lang">Translate to %s</string> | |
<string name="translate_to_english">Translate to English</string> | |
<string name="translate_length_warning">Translate may fail with large amounts of text.</string> | |
<string name="err_detail_google_maps_limit_reached">c:geo failed to download static maps. Maybe google maps limit is reached.</string> | |
<string name="warn_invalid_mapfile">The selected map file is not a valid mapsforge version 0.3.0 map file.\nOffline maps are not available.</string> |
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
Destinations Count % cum% | |
---------------- --------- ------ ------ | |
88.190.27.159 11259 90.7 90.7 | |
2a01:e0b:2135::1 1154 9.3 100.0 | |
Query Type Count % cum% | |
---------- --------- ------ ------ | |
A? 12401 99.9 99.9 | |
AAAA? 4 0.0 99.9 | |
TXT? 4 0.0 100.0 |
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
2012-10-01 Buy bitcoins | |
Assets:Bitcoins 2 BTC @ $11 | |
Assets:USD | |
2012-10-02 Sell bitcoins | |
Assets:USD | |
Assets:Bitcoins -1 BTC (@) $10 |
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
translations missing or not in the right place for language 'de': | |
Only in values/strings.xml: | |
<string name="caches_map_locus_export">Export to Locus</string> | |
<string name="about_version">Version</string> | |
<string name="map_source_osm_mapnik">OSM: Mapnik</string> | |
<string name="map_source_osm_offline">OSM: Offline</string> | |
<string name="cache_menu_streetview">Street View</string> | |
<string name="cache_menu_oruxmaps">OruxMaps</string> | |
<string name="gpx_import_title_static_maps">Store static maps</string> | |
<string name="gpx_import_title_reading_file">Reading file</string> |
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
# Contributor: Kyle Keen <[email protected]> | |
pkgname=saleae-logic | |
pkgver=1.1.15 | |
pkgrel=3 | |
pkgdesc="High speed USB logic analyzer." | |
arch=(i686 x86_64) | |
url="http://www.saleae.com/" | |
license=('unknown') # closed source, none given | |
depends=('gcc-libs' 'gtk2' 'libice') | |
makedepends=() |
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
V/NetworkChangeReceiver( 2372): Network Change | |
D/FREEMOBILE( 1848): ----------------------------------- UTILS ------------------------- | |
D/FREEMOBILE( 1848): : true | |
D/FREEMOBILE( 1848): R :1 | |
D/FREEMOBILE( 1848): ### Receiver : android.net.conn.CONNECTIVITY_CHANGE | |
W/System.err( 1848): android.provider.Settings$SettingNotFoundException: button_mvno_roaming_key | |
W/System.err( 1848): at android.provider.Settings$System.getInt(Settings.java:908) | |
W/System.err( 1848): at fr.freemobile.android.mobileconfig.RoamingListener.checkRoamingStatus(RoamingListener.java:142) | |
W/System.err( 1848): at fr.freemobile.android.mobileconfig.RoamingListener.onReceive(RoamingListener.java:90) |
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 akka.actor._ | |
import akka.event.Logging | |
object Bug extends App { | |
ActorSystem("Bug").actorOf(Props[Bug]) | |
} | |
class Bug extends Actor with FSM[Int, (Int, Int)] { |
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
package cgeo.geocaching.maps; | |
import cgeo.geocaching.Settings; | |
import cgeo.geocaching.cgBase; | |
import cgeo.geocaching.cgSearch; | |
import cgeo.geocaching.geopoint.Geopoint; | |
import org.apache.commons.lang3.StringUtils; | |
import android.os.Handler; |
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 scala.collection.mutable.{HashMap, Map} | |
import scala.concurrent.Channel | |
import scala.concurrent.ops.spawn | |
import android.content.Context | |
import android.os.{Handler, Message} | |
object AndroidBG { | |
private val androidBGs: Map[Context, AndroidBG] = new HashMap() |
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
class Example { | |
println("Constructing an Example object: " + this) | |
} | |
object Test extends App { | |
// Return a new object of type T when called as f[T] | |
def f[T : Manifest] = manifest[T].erasure.getConstructor().newInstance() |