Git command reference.
If you have a project on your computer and you just created an empty Git repository in GitHub, use these commands to upload everything to Git.
cd your-directory
function isOdious(x) { | |
if (x < 0) throw new Error('Value must be positive!') | |
const binaryExpansion = x.toString(2) | |
const count = Array.from(binaryExpansion).reduce((acc, val) => (val == 1 ? acc + 1 : acc), 0) | |
return count % 2 === 1 | |
} |
There is no consensus on the right way to organize a React application. React gives you a lot of freedom, but with that freedom comes the responsibility of deciding on your own architecture. Often the case is that whoever sets up the application in the beginning throws almost everything in a components
folder, or maybe components
and containers
if they used Redux, but I propose there's a better way. I like to be deliberate about how I organize my applications so they're easy to use, understand, and extend.
I'm going to show you what I consider to be an intuitive and scalable system for large-scale production React applications. The main concept I think is important is to make the architecture focused on feature as opposed to type, organizing only shared components on a global level and modularized all the other related entities together in the localized view.
Since this article will be opinionated,
body { | |
margin: 0; | |
font-family: -apple-system, BlinkMacSystemFont, sans-serif; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
} | |
p { | |
font-size: 1.1rem; | |
} |
[ | |
{ | |
"id":"shfksjh32hrkwefhkj3h", | |
"text":"# Example default note\n\n- [Laconia](https://laconia.dev)\n- [Chip8.js](https://github.com/taniarascia/chip8", | |
"created":"", | |
"lastUpdated":"" | |
}, | |
{ | |
"id":"893hfehfkjshkj233", | |
"text":"# Another something else\n\nEveryone loves notes", |
method1 = async () => { | |
const things = await getThings() | |
for (let thing of things) { | |
const stuff = await getStuffFromThing(thing) | |
console.log(stuff) // works | |
} | |
} | |
method2 = async () => { |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Ansi 0 Color</key> | |
<dict> | |
<key>Alpha Component</key> | |
<real>1</real> | |
<key>Blue Component</key> | |
<real>0.77254903316497803</real> |
(this == that || these == those) is (this != that && these != those) | |
!(a && b) == (!a || !b) | |
!(a || b) == (!a && !b) |