Use rg tool to search for files efficiently
- Clean, Simple, Maintainable Code
- Favor readability over cleverness
- Prioritize simplicity in design
- Write code that future developers can easily understand
| QUICK SIMPLE ASSIGNMENT | |
| 1. | |
| We have the following arrays | |
| color = ["Blue ", "Green", "Red", "Orange", "Violet", "Indigo", "Yellow "]; | |
| o = ["th","st","nd","rd"] | |
| Write a JavaScript program to display the colors in the following way : | |
| "1st choice is Blue." | |
| "2nd choice is Green." |
First, go to https://<yourname>.sanity.studio (or to the url of your studio if it's hosted elsewhere). Then open the developer console (usually by one of the keyboard shortcuts Command+Option+I, F12 or Control+Shift+I depending on what browser/platform you are using)
app.bundle.js file in the sidebar tree view.| # http://webapps.stackexchange.com/questions/39587/view-estimated-size-of-github-repository-before-cloning | |
| # tested on macOS | |
| echo https://github.com/torvalds/linux.git | perl -ne 'print $1 if m!([^/]+/[^/]+?)(?:\.git)?$!' | xargs -I{} curl -s -k https://api.github.com/repos/'{}' | grep size | |
| # output: | |
| # "size": 1746294, |
All of the below properties or methods, when requested/called in JavaScript, will trigger the browser to synchronously calculate the style and layout*. This is also called reflow or layout thrashing, and is common performance bottleneck.
Generally, all APIs that synchronously provide layout metrics will trigger forced reflow / layout. Read on for additional cases and details.
elem.offsetLeft, elem.offsetTop, elem.offsetWidth, elem.offsetHeight, elem.offsetParent(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.