Skip to content

Instantly share code, notes, and snippets.

View arcayne's full-sized avatar
🎯
Focusing

Joan De Arcayne arcayne

🎯
Focusing
  • Remote
View GitHub Profile

Keybase proof

I hereby claim:

  • I am arcayne on github.
  • I am dearkane (https://keybase.io/dearkane) on keybase.
  • I have a public key whose fingerprint is BB4B 5E21 4EBF 5D39 B8C5 B58B 9D84 5CDE 743A 81DE

To claim this, I am signing this object:

cordova.define("cordova/plugin/BarcodeScanner", function (require, exports, module) {
var exec = require("cordova/exec");
function BarcodeScanner() {
this.Encode = {
TEXT_TYPE: "TEXT_TYPE",
EMAIL_TYPE: "EMAIL_TYPE",
PHONE_TYPE: "PHONE_TYPE",
SMS_TYPE: "SMS_TYPE"
// CONTACT_TYPE: "CONTACT_TYPE", // TODO: not implemented, requires passing a Bundle class from Javascript to Java
// LOCATION_TYPE: "LOCATION_TYPE" // TODO: not implemented, requires passing a Bundle class from Javascript to Java
export PATH=/Users/me/android-sdk-mac_86/platform-tools:/Users/me/android-sdk-mac_86/tools:$PATH
@arcayne
arcayne / Useful quries
Created August 8, 2013 13:03
Useful queries on site
SELECT * FROM (
SELECT
OWNER, SEGMENT_NAME, BYTES/1024/1024 SIZE_MB
FROM
DBA_SEGMENTS
WHERE
SEGMENT_TYPE = 'TABLE'
AND tablespace_name = 'HIST_DATA'
ORDER BY
@arcayne
arcayne / TR_PLCCOMMUNICATION
Created August 8, 2013 07:31
Query for TR_PLCCOMMUNICATION
select *
from TR_PLCCOMMUNICATION
and telegram not like '%PING%'
and telegram not like '%PONG%'
and telegram not like '%STAT%'
and telegram not like '%ACKR%'
order by id DESC