Skip to content

Instantly share code, notes, and snippets.

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

Ken Depelchin kendepelchin

🏠
Working from home
View GitHub Profile
2025-04-15T10:41:56.8894399Z ##[debug]Starting: Set up job
2025-04-15T10:41:56.8895527Z Current runner version: '2.323.0'
2025-04-15T10:41:56.8919349Z ##[group]Operating System
2025-04-15T10:41:56.8920136Z Ubuntu
2025-04-15T10:41:56.8920821Z 22.04.5
2025-04-15T10:41:56.8921392Z LTS
2025-04-15T10:41:56.8921849Z ##[endgroup]
2025-04-15T10:41:56.8922385Z ##[group]Runner Image
2025-04-15T10:41:56.8923044Z Image: ubuntu-22.04
2025-04-15T10:41:56.8923591Z Version: 20250406.1.0
-------------------------------------
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
foreach ($test as $key => $value){
switch($key) {
case 'tags':
Debug::dump($key);
die('yo');
default:
die('nope');
}
}
@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);