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
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 |
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
------------------------------------- | |
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 |
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
[ | |
{ "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"}}, |
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
{ | |
"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" |
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
foreach ($test as $key => $value){ | |
switch($key) { | |
case 'tags': | |
Debug::dump($key); | |
die('yo'); | |
default: | |
die('nope'); | |
} | |
} |
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 com.tapcrowd.engagor.util.object; | |
import android.database.Cursor; | |
public class Tracking { | |
private String identifier; | |
private String apiKey; | |
private String accountId; | |
private String enabled; |
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
<?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); |