I hereby claim:
- I am azenla on github.
- I am alexzenla (https://keybase.io/alexzenla) on keybase.
- I have a public key ASAnaNm-loXjKDbJ_AkkLyPuT968k9QR-KXy66XEFvcugQo
To claim this, I am signing this object:
| var SecTrustEvaluate_handle = | |
| Module.findExportByName('Security', 'SecTrustEvaluate'); | |
| var SecTrustEvaluateWithError_handle = | |
| Module.findExportByName('Security', 'SecTrustEvaluateWithError'); | |
| var SSL_CTX_set_custom_verify_handle = | |
| Module.findExportByName('libboringssl.dylib', 'SSL_CTX_set_custom_verify'); | |
| var SSL_get_psk_identity_handle = | |
| Module.findExportByName('libboringssl.dylib', 'SSL_get_psk_identity'); | |
| var boringssl_context_set_verify_mode_handle = Module.findExportByName( | |
| 'libboringssl.dylib', 'boringssl_context_set_verify_mode'); |
| import "dart:io"; | |
| add(a, b) => a + b; | |
| subtract(a, b) => a - b; | |
| multiply(a, b) => a * b; | |
| divide(a, b) => a / b; | |
| modulo(a, b) => a % b; | |
| const operators = const { | |
| "+": add, |
| version: 1 | |
| values: | |
| default-options: "tty=hvc0" | |
| phases: | |
| startup: | |
| - actions: ["welcome"] | |
| actions: |
| -> gnome | |
| -> bolt | |
| -> musl | |
| -> glib | |
| -> busybox-binsh | |
| -> busybox | |
| -> musl | |
| -> musl | |
| -> libffi | |
| -> musl |
| /// Dart is built around a timer, which basically schedules functions in a queue. | |
| /// The Future class is essentially just sugar on top of the event loop. | |
| /// To help people understand what the event loop actually does, I have written code which implements the event loop. | |
| /// See https://www.dartlang.org/articles/event-loop/ for more information. | |
| import "dart:async"; | |
| class EventLoop { | |
| /// Function Queue. | |
| static final List<Function> queue = []; |
| /@introduceDomain = "" | |
| /@releaseDomain = "" | |
| /local = "" | |
| /tool = "" | |
| /vm = "" | |
| /vm/c44aa934-6ebc-4b84-b3cf-0a25ba6d508b = "" | |
| /vm/c44aa934-6ebc-4b84-b3cf-0a25ba6d508b/device = "" | |
| /vm/c44aa934-6ebc-4b84-b3cf-0a25ba6d508b/image = "" | |
| /vm/c44aa934-6ebc-4b84-b3cf-0a25ba6d508b/name = "protect-c44aa934-6ebc-4b84-b3cf-0a25ba6d508b" | |
| /vm/c44aa934-6ebc-4b84-b3cf-0a25ba6d508b/uuid = "c44aa934-6ebc-4b84-b3cf-0a25ba6d508b" |
| #[derive(Clone, Copy, Debug)] | |
| pub enum CpuClass { | |
| Standard, | |
| Performance, | |
| Efficiency, | |
| } | |
| #[derive(Clone, Copy, Debug)] | |
| pub struct CpuTopologyInfo { | |
| pub core: u32, |
I hereby claim:
To claim this, I am signing this object:
| [kaendfinger@localhost Dart]$ dart --help -v | |
| Usage: dart [<vm-flags>] <dart-script-file> [<dart-options>] | |
| Executes the Dart script passed as <dart-script-file>. | |
| Supported options: | |
| --checked or -c | |
| Insert runtime type checks and enable assertions (checked mode). | |
| --help or -h | |
| Display this message (add -v or --verbose for information about |
| import "dart:io"; | |
| class SystemCTL { | |
| static const String CIRCLE = "\u25CF"; | |
| final bool useSudo; | |
| SystemCTL({this.useSudo: false}); | |
| Future<bool> start(String service) async { |