- Navigate to https://vax4nyc.nyc.gov/patient/s/vaccination-schedule
- Fill out the "Eligibility" form
- Check " New York City residents ages 30 or older"
- "No" you're not NYC employee
- Fill in DoB
- Fill in Zip
- "yes" Certify live in NYC
- click Next
- Fill in "Health Screening And attestation
- "no" for allergic reaction
This file contains 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
# Inspired from https://github.com/meiokubo/emoji.zsh-theme/blob/main/emoji.zsh-theme | |
PROMPT=" %(?:%{$fg_bold[cyan]%}➜:%{$fg_bold[cyan]%}➜)" | |
PROMPT+=' %{$fg[green]%}%c%{$reset_color%} $(git_prompt_info)' | |
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[green]%}[%{$fg[cyan]%}" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} " | |
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%}] %{$fg[yellow]%}✏️ " | |
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%}] ✅" |
This file contains 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
#!/bin/bash | |
# Set the source and destination directories | |
SRC_DIR="$1" | |
DEST_DIR="$2" | |
# Loop through all SVG files in the source directory | |
for svg_file in "$SRC_DIR"/*.svg | |
do | |
# Get the filename without the path or extension |
This file contains 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
import Controller from '@ember/controller'; | |
export default class ApplicationController extends Controller { | |
appName = 'Ember Twiddle'; | |
} |
This file contains 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
import Component from '@glimmer/component'; | |
import { inject as service } from '@ember/service'; | |
export default class extends Component { | |
@service router; | |
constructor() { | |
super(...arguments); | |
this.router.on('routeWillChange', (transition) => { |
This file contains 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
import Controller from '@ember/controller'; | |
export default class ApplicationController extends Controller { | |
appName = 'Ember Twiddle'; | |
modelName = "My Model Name"; | |
modelId = 33; | |
} |
This file contains 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
import Controller from '@ember/controller'; | |
import { tracked } from '@glimmer/tracking'; | |
export default class ApplicationController extends Controller { | |
appName = 'Ember Twiddle'; | |
@tracked checkValue = 1; | |
} |
This file contains 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
// Typescript Generics | |
class MyMap<T extends Error> { | |
value: T; | |
getVal() { | |
return this.value; | |
} | |
constructor(val: T) { |
This file contains 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
let failingTests = []; | |
const testElements = document.querySelectorAll('li[id].fail'); | |
testElements.forEach(test => { | |
const moduleName = test.getElementsByClassName('module-name')[0].textContent | |
const testName = test.getElementsByClassName('test-name')[0].textContent | |
failingTests.push(`- [ ] ${moduleName} ${testName}`) | |
}); | |
console.log(failingTests.join('\n')); |
NewerOlder