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
| import "./styles.css"; | |
| document.getElementById("app").innerHTML = ` | |
| <h1>Hello Vanilla!</h1> | |
| <div> | |
| We use the same configuration as Parcel to bundle this sandbox, you can find more | |
| info about Parcel. | |
| </div> | |
| `; |
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
| Latency Comparison Numbers (~2012) | |
| ---------------------------------- | |
| L1 cache reference 0.5 ns | |
| Branch mispredict 5 ns | |
| L2 cache reference 7 ns 14x L1 cache | |
| Mutex lock/unlock 25 ns | |
| Main memory reference 100 ns 20x L2 cache, 200x L1 cache | |
| Compress 1K bytes with Zippy 3,000 ns 3 us | |
| Send 1K bytes over 1 Gbps network 10,000 ns 10 us | |
| Read 4K randomly from SSD* 150,000 ns 150 us ~1GB/sec SSD |
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
| ################################################## | |
| # Write a title summarizing what this commit does. | |
| # Start with an uppercase imperative verb, such as | |
| # Add, Drop, Fix, Refactor, Bump; see ideas below. | |
| # Think of your title as akin to an email subject, | |
| # so you don't need to end with a sentence period. | |
| # Use 50 char maximum, which is this line's width. | |
| ################################################## | |
| Add your title here |
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
| ### PowerShell profile template - Manan Sharma | |
| ### | |
| ### https://gist.github.com/mananshr/be2a248d1e34e52a77d0be37ffcd7fb4 | |
| ### | |
| ### Source credits: Tim Sneath <tim@sneath.org> | |
| ### Forked from https://gist.github.com/timsneath/19867b12eee7fd5af2ba | |
| ### | |
| ### This file should be stored in $PROFILE.CurrentUserAllHosts | |
| ### If $PROFILE.CurrentUserAllHosts doesn't exist, you can make one with the following: | |
| ### PS> New-Item $PROFILE.CurrentUserAllHosts -ItemType File -Force |
OlderNewer