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
| Bus 002 Device 073: ID 08e6:5501 Gemplus GemProx-PU Contactless Smart Card Reader | |
| Couldn't open device, some information will be missing | |
| Device Descriptor: | |
| bLength 18 | |
| bDescriptorType 1 | |
| bcdUSB 1.10 | |
| bDeviceClass 0 (Defined at Interface level) | |
| bDeviceSubClass 0 | |
| bDeviceProtocol 0 | |
| bMaxPacketSize0 64 |
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
| 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 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
| 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 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
| 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 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
| 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 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
| # Contributor: Kyle Keen <keenerd@gmail.com> | |
| 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 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
| 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 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 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 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 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 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 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() |