-
Make sure to structure your practice around what you need to work on. You can cut segments shorter, or out completely if necessary to make more time.
-
- January 2021
- [[January 7th, 2021]]
- Not super consistent on shorthop L-Cancels, specially while moving
- Full jump aerials probably shouldn't be done hitting eggs, we end up mixing up too many short hops, which already have their own practice section
- Pivot grabs
- Movement is a bit sloppy
- [[January 7th, 2021]]
- January 2021
-
FD Chaingrab vs spacies is inconsistent still, grind that out
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
.Body-aside { | |
min-width: 300px; | |
} | |
.Practice-placeholder { | |
display: flex; | |
justify-content: center; | |
} | |
article.Article { |
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
/** | |
* For the comments marked as "NOTE" I normally wouldn't include as comments | |
* in an actual program, but I felt they were aspects that needed I'd talk | |
* about if I were explaining it in a whiteboard-type interview. | |
* | |
* I also added "array-flatten-non-verbose.js" which is what I'd show if I had to | |
* "Ship to production", and my tests were grabbing the flattenArray, and | |
* recursiveFlatten function somewhere like jest to run more formal tests | |
* | |
* https://gist.github.com/Zyst/63d3bfaecc66a792e8484a4a41fc9018#file-array-flatten-non-verbose-js |
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
@-moz-document domain("novelupdates.com") { | |
td > [type="checkbox"]:checked, | |
td > [type="checkbox"]:not(:checked) { | |
position: static; | |
left: 0; | |
float: right; | |
margin: 4px; | |
width: 18px; | |
height: 18px; | |
} |
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
#! /bin/bash | |
### BEGIN INIT INFO | |
# Provides: dns-sync | |
# Required-Start: | |
# Required-Stop: | |
# Default-Start: S | |
# Default-Stop: | |
# Short-Description: Synchronizes /etc/resolv.conf in WLS with Windows DNS - Matthias Brooks | |
### END INIT INFO |
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
""" | |
A program that takes Mexican Santander's exported file, and outputs a YNAB | |
compatible CSV file | |
""" | |
import pandas as pd | |
RENT = "Immediate Obligations: Rent 1st" | |
TECMILENIO = "Immediate Obligations: Tecmilenio 1st" | |
GAS = "Immediate Obligations: Gas 13th" | |
AXTEL = "Immediate Obligations: Axtel 14th" |
This is mostly centered around Marth/Lucina. Some of these entries are generic, but some others are specific to Marth or Lucina. If you practice this with another character you might wanna find some movement specific combos for it.
https://youtu.be/d3UHUW57bzk?t=1364
Make sure you can fast fall very consistently with shorthops.
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
{ | |
// Place your snippets for JavaScript here. Each snippet is defined under a snippet name and has a prefix, body and | |
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the | |
// same ids are connected. | |
// Example: | |
"Print to console": { | |
"prefix": "log", | |
"body": [ | |
"console.log('$1');", |
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
:term "C:\Program Files\Git\bin\bash.exe" |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream