When making this website, i wanted a simple, reasonable way to make it look good on most displays. Not counting any minimization techniques, the following 58 bytes worked well for me:
main {
max-width: 38rem;
padding: 2rem;
margin: auto;
}| function decrypt(input1,input2) | |
| { | |
| var encText = input1.split(' '); | |
| var flag=false; | |
| for(var i=1; i <= 26; i++) { | |
| var decText = ""; | |
| for(var encWordIndex in encText) { | |
| var encWord = encText[encWordIndex]; | |
| var decWord = ""; | |
| //return encWord; |
| Latency Comparison Numbers | |
| -------------------------- | |
| 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 |
| { | |
| "blacklist_regex": "(?i).*[^a-z](password|otp|verification|activation|passcode)[^a-z].*", | |
| "min_app_version": "131", | |
| "rules": [ | |
| { | |
| "name": "Airtel", | |
| "telco": true, | |
| "patterns": [ | |
| { | |
| "regex": "(?i)Bill.*\\sfor\\sRs.\\s?([\\d,\\,]*(?:.\\d{2})?).*mobile\\s?(\\d{10})?.*Due\\sDate:\\s?([\\d,\\-,A-Z]*)", |
| ### Keybase proof | |
| I hereby claim: | |
| * I am vs4vijay on github. | |
| * I am vs4vijay (https://keybase.io/vs4vijay) on keybase. | |
| * I have a public key ASBV_u_0IvkkCaNqzD09urK2ioS-zpwABimqh0UmjFurpgo | |
| To claim this, I am signing this object: |
| { | |
| "name": "Viz Pool", | |
| "description": "A Cardano Pool on Testnet", | |
| "ticker": "VIZ", | |
| "homepage": "https://github.com/vs4vijay" | |
| } |
| # OPTION-I: Using Containerd with nerdctl on WSL | |
| - Start WSL2 | |
| - Install `containerd` - sudo apt install containerd | |
| - Run `sudo /etc/init.d/docker start` # systemd is not available on WSL, use this Step | |
| - OR | |
| - Run `containerd` - `sudo systemctl enable --now containerd` | |
| - Install nerdctl - `wget https://github.com/containerd/nerdctl/releases/download/v0.12.1/nerdctl-0.12.1-linux-amd64.tar.gz` | |
| - `nerdctl run -it --rm nginx` |
| range x from 1 to 4 step 1 | |
| | extend part = case(x == 1, "Just", x == 2, "another", x == 3, "Kusto", "hacker") | |
| | summarize result = strcat_array(make_list(part), " ") |