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;
}
# 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` |
{ | |
"name": "Viz Pool", | |
"description": "A Cardano Pool on Testnet", | |
"ticker": "VIZ", | |
"homepage": "https://github.com/vs4vijay" | |
} |
### 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: |
{ | |
"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]*)", |
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 |
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; |
# Author = Nikhil Venkat Sonti | |
# email = nikhilsv92@gmail.com | |
# github ID = shadowfax92 | |
import sys | |
from xml.dom.minidom import _get_StringIO | |
from lxml import html | |
import requests | |
import os | |
import re | |
import time |
application: you-app-name-here | |
version: 1 | |
runtime: python | |
api_version: 1 | |
default_expiration: "30d" | |
handlers: | |
- url: /(.*\.(appcache|manifest)) | |
mime_type: text/cache-manifest |
Demo showing how to wire up side menus along with navigation within Ionic.
Forked from Steve Davis's Pen Side Menu and Navigation: 1.0.0-beta.1.
Forked from Mike Hartington's Pen Side Menu and Navigation: 1.0.0-beta.1.
Forked from Captain Anonymous's Pen Side Menu and Navigation: 1.0.0-beta.1.
A Pen by Vijay Soni on CodePen.