Skip to content

Instantly share code, notes, and snippets.

View kendepelchin's full-sized avatar
🏠
Working from home

Ken Depelchin kendepelchin

🏠
Working from home
  • Pexip Engage (Skedify)
  • Ghent, Belgium
View GitHub Profile
-------------------------------------
Translated Report (Full Report Below)
-------------------------------------
Incident Identifier: F466C291-C556-4FAD-AD4D-A6A5EFE75F5F
CrashReporter Key: 70B0FD66-FC34-69F7-DE2D-83C109C35FD2
Hardware Model: MacBookPro17,1
Process: onyx [1641]
Path: /Users/USER/Library/Developer/CoreSimulator/Devices/E1B52B01-DAE2-49DB-9266-4463CDDD0C89/data/Containers/Bundle/Application/1140A95A-2647-4C5D-A604-C5EF5AAB632C/onyx.app/onyx
Identifier: org.reactjs.native.example.onyx
[
{ "keys": ["alt+d"], "command": "find_under_expand" },
{ "keys": ["super+d"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" },
{ "keys": ["super+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
{ "keys": ["super+shift+c"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["super+alt+forward_slash"], "command": "toggle_comment", "args": { "block": true } },
{ "keys": ["super+shift+w"], "command": "close_all" },
{ "keys": ["super+k", "super+f"], "command": "phpcs_fix_this_file", "args": {"tool": "Fixer"}},
{
"caret_style": "phase",
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Darker.tmTheme",
"default_line_ending": "LF",
"ensure_newline_at_eof_on_save": true,
"font_size": 14,
"highlight_line": true,
"ignored_packages":
[
"Vintage"
foreach ($test as $key => $value){
switch($key) {
case 'tags':
Debug::dump($key);
die('yo');
default:
die('nope');
}
}
package com.tapcrowd.engagor.util.object;
import android.database.Cursor;
public class Tracking {
private String identifier;
private String apiKey;
private String accountId;
private String enabled;
@kendepelchin
kendepelchin / litecoin_kraken.php
Last active August 29, 2015 13:56
Get terminal notifications for litecoin changes
<?php
error_reporting(0);
while (true) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://api.kraken.com/0/public/Ticker?pair=LTCEUR');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$content = curl_exec($ch);
curl_close($ch);