I hereby claim:
- I am fallenstedt on github.
- I am fallenstedt (https://keybase.io/fallenstedt) on keybase.
- I have a public key ASC9XKEzj4DsJZDXNeszL8jAlaLxCHhC1esNgTCRlTXaUQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| [ ] > Task :device_info:preBuild UP-TO-DATE | |
| [ ] > Task :device_info:preDebugBuild UP-TO-DATE | |
| [ ] > Task :device_info:checkDebugManifest UP-TO-DATE | |
| [ ] > Transform firebase-messaging.aar (com.google.firebase:firebase-messaging:20.0.1) with AarTransform | |
| [ ] > Transform firebase-messaging.aar (com.google.firebase:firebase-messaging:20.0.1) with AarTransform | |
| [ ] > Task :device_info:processDebugManifest UP-TO-DATE | |
| [ ] > Task :firebase_analytics:preBuild UP-TO-DATE | |
| [ ] > Task :firebase_analytics:preDebugBuild UP-TO-DATE | |
| [ ] > Task :firebase_analytics:checkDebugManifest UP-TO-DATE | |
| [ ] > Task :firebase_analytics:processDebugManifest UP-TO-DATE |
| import java.util.* | |
| fun main(args: Array<String>) { | |
| dayOfWeek() | |
| } | |
| fun dayOfWeek() { | |
| println("What day is it today?") | |
| val dayOfWeek: Int = Calendar.getInstance().get(Calendar.DAY_OF_WEEK) |
| Set WshShell = CreateObject("WScript.Shell") | |
| MsgBox ConvertToKey(WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId")) | |
| Function ConvertToKey(Key) | |
| Const KeyOffset = 52 | |
| i = 28 | |
| Chars = "BCDFGHJKMPQRTVWXY2346789" | |
| Do | |
| Cur = 0 | |
| x = 14 |
| import 'dart:async'; | |
| import 'validators.dart'; | |
| import 'package:rxdart/rxdart.dart'; | |
| class Bloc with Validators { | |
| final _email = BehaviorSubject<String>(); | |
| final _password = BehaviorSubject<String>(); | |
| Stream<String> get email => _email.stream.transform(validateEmail); | |
| Stream<String> get password => _password.stream.transform(validatePassword); |
| import 'dart:async'; | |
| class Cake {} | |
| class Order { | |
| String type; | |
| Order(this.type); | |
| } | |
| void main() { | |
| final StreamController<Order> controller = new StreamController(); |
| //... add at bottom of file | |
| document.addEventListener('DOMContentLoaded', function () { | |
| $(`<style></style>`).appendTo('head').html(`body { background: #222; color: #e6e6e6; } | |
| a { color: #949494; } | |
| a:link, a:visited { color: #949494; } | |
| import 'intersection-observer' | |
| /** | |
| * Creates a new LazyLoader. | |
| * | |
| * Will search for images and video elements that have a class of 'lazy' | |
| * It will then Target the element's `data-src` / data-srcset property and then | |
| * Lazily load the content with an IntersectionObserver or | |
| * a fallback method for ancient browswers. | |
| * |
| pragma solidity ^0.4.24; | |
| contract HelloWorld { | |
| string public message; | |
| int256 public myNumber; | |
| address public owner; | |
| constructor(string initialMessage) public { | |
| message = initialMessage; | |
| myNumber = 42; |