- Spend more time learning/practicing than job searching
- Focus on your specialty
- Make websites: for yourself, your club, your mom, your neighbor
- Make apps: typical examples (todo, sorted table), remake existing apps
- Work on a passion project: find one app that clicks with you and work on it regularly
- Learn about a11y/a11y development: valuable skillset that will set you apart from the crowd
- Learn tooling: ESLint, Prettier, node modules
- Make your own node module: it's not as hard as it seems and will provide you valuable info into how node modules work
- Practice styling: CSS3 (variables, flex box, grid), SASS/LESS
- Ditch bootstrap: fine technology that some companies use, but doesn't demonstrate much developer ability
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
//======== | |
// 2019 | |
//======== | |
// Perhaps this is the same as 2018. I can't remember. | |
$$('h6[style="text-align: center;"]').map(item => { | |
if (item.innerText.includes('\n')) return item.innerText.split('\n')[0]; | |
return item.innerText; | |
}) | |
//======== |
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
zip -r popsicle-sticks-mini.zip popsicle-sticks-mini -x "*.DS_Store" "*.svg" \*.git\* "*README.md" \*src/img/cws\* |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
</head> | |
<body> | |
<img id="image" /> | |
<?xml version="1.0" standalone="no"?> | |
<svg width="200" height="250" version="1.1" xmlns="http://www.w3.org/2000/svg"> |
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
# Get to configs | |
sudo raspi-config | |
# | |
sudo /home/pi/ | |
# Get to SSH settings | |
# SSH | |
# > Make sure you're on the same wifi network |
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
// AutoTrader | |
$$('span.miles-per-year').forEach(element => element.parentNode.removeChild(element)) | |
$$('div.inventory-listing-body').forEach(card => { | |
// AGE | |
// getYear is relative to 1900 | |
var currentModelYear = new Date().getYear() + 1901 | |
var title = card.querySelector('h2.text-size-400').textContent | |
var numbers = title.match(/(\d+){4}/g) |
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
// ==UserScript== | |
// @name Filter options in "Awesome Design Systems" | |
// @version 1 | |
// @grant none | |
// @match https://github.com/alexpate/awesome-design-systems | |
// ==/UserScript== | |
(() => { | |
'use strict' | |
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
Users/<username>/Library/Application Support/Firefox/Profiles/xxxxxxxx.default |
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
{"lastUpload":"2020-02-20T11:14:48.323Z","extensionVersion":"v3.4.3"} |
The order is appoximate:
- HTML & CSS
- JavaScript: data types, structures, loops, methods, promises
- React by CDN
- Node.js
- Node modules
- Babel & Webpack
- ES6 Basics: import, export, destructuring
- create-react-app
OlderNewer