I hereby claim:
- I am pbrdmn on github.
- I am pbrdmn (https://keybase.io/pbrdmn) on keybase.
- I have a public key whose fingerprint is 8F5C DA07 3921 34D5 E048 A420 BB23 E2A4 EA5D 394A
To claim this, I am signing this object:
| require './ctb' | |
| require 'csv' | |
| ## New CTB Instance, write empty file | |
| ctb = CTB.new("Organisation", "ID_123", "A11111111") | |
| ctb_output_file = "ctb-#{Time.now.strftime("%Y%m%d")}.txt" | |
| File.write(ctb_output_file, ''); | |
| # Define input files | |
| svb_input_file = 'svb.txt' |
| class ACH | |
| RECORD_SIZE = 94 # Always "094" because every record contains 94 characters. | |
| PRIORITY_CODE = "01" | |
| HEADER_RECORD_TYPE_CODE = "1" | |
| BATCH_HEADER_RECORD_TYPE_CODE = "5" | |
| ENTRY_RECORD_TYPE_CODE = "6" | |
| BATCH_CONTROL_RECORD_TYPE_CODE = "8" | |
| FOOTER_RECORD_TYPE_CODE = "9" | |
| BLOCKING_FACTOR = 10 | |
| FORMAT_CODE = "1" |
| /* | |
| Ascii banana | |
| Writing bits from key state and typing characters | |
| */ | |
| #include "Keyboard.h" | |
| #define DEBOUNCE_TIME 50 | |
| #define NUM_KEYS 8 | |
| int pins[] = { 7, 8, 9, 10, 16, 14, 15, 18, }; |
| /* | |
| Hex Banana | |
| Demonstrating tap/hold behaviour with on/off debouncing. | |
| */ | |
| #include "Keyboard.h" | |
| #define DEBOUNCE_TIME 50 | |
| #define HOLD_TIME 300 |
| /* | |
| Banana | |
| Demonstrating tap behaviour with on/off debouncing. | |
| */ | |
| #include "Keyboard.h" | |
| #define DEBOUNCE_TIME 50 | |
| #define TIMEOUT 2000 |
| setInterval(()=>{ | |
| document.querySelector('button.c-button.c-button--primary.c-button--medium')?.textContent.includes('new message')?.click(); | |
| document.querySelector('button.c-button-unstyled.p-ia__view_header__button.p-ia__view_header__button--with_label')?.textContent.includes('new message')?.click(); | |
| }, 1000); |
I hereby claim:
To claim this, I am signing this object:
| /* Initial list */ | |
| $scope.tasks = [ | |
| { | |
| title: 'Create a List', | |
| description: 'Create my first list', | |
| completed: true, | |
| picture: null | |
| }, | |
| { | |
| title: 'Complete list', |