- Repository resides here - https://github.com/looselytyped/web-apps-with-vue3
- Link to this Gist - https://gist.github.com/looselytyped/3374c6803523164c373d768f316a1a49
- Getting started with
create-vue
- What do you have in the project you cloned?
echo Predicted is $PREDICTED | |
COUNTER=0 | |
PREDICTED=$1 | |
PREDICTED="${PREDICTED:=12}" | |
TEST="$(($PREDICTED*60))" | |
while true | |
do | |
echo test is $TEST | |
COUNTER=$((COUNTER+1)) |
use std::collections::{BTreeMap}; | |
use std::fs::File; | |
use std::io::{self, BufRead, Read, Seek, SeekFrom}; | |
use std::ops::AddAssign; | |
use fnv::FnvHashMap; | |
#[derive(Debug, Clone, Copy)] | |
struct TemperatureStats { | |
min: f32, | |
max: f32, |
ls | xargs -I {} mv {} PRE_{} | |
ls | xargs -I {} mv {} {}_SUF | |
# can use filering with ls in $0 |
#!/bin/bash | |
usage() { echo "$0 usage:" && grep " .)\ #" $0; exit 0; } | |
[ $# -eq 0 ] && usage | |
while getopts ":hs:b:e:" arg; do | |
case $arg in | |
b) # Specify b value. | |
echo "runningBoD is ${OPTARG}" | |
./BoD.sh | |
;; | |
e) # Specify e value. |
create-vue
for context in Personal InterfaceWith Healthify HP FP EnjoyBy Delegated2 DailyDo DRAMAL ; do tc $context; tp > readme_$context.md; tt>readme_$context.md; ts >> readme_$context.md; tcn; echo $context; done |
You will need Docker installed! Here is a link to get you started. Proceed after you are done installing.
ls | sort | awk '{ print "alias " $0"=cd $HBox/"$0";cat readme*.md"}' | |
alias Upskillin=cd $HBox/Upskillin;cat readme*.md | |
alias UrgentlyGet=cd $HBox/UrgentlyGet;cat readme*.md | |
alias Whatis=cd $HBox/Whatis;cat readme*.md | |
alias WorkingWith=cd $HBox/WorkingWith;cat readme*.md |
import requests | |
import csv | |
import os | |
import json | |
import re | |
from bs4 import BeautifulSoup | |
import mechanize | |
from random import choice | |
user_agents = ['Mozilla/5.0 (X11; U; Linux; i686; en-US; rv:1.6) Gecko Debian/1.6-7','Konqueror/3.0-rc4; (Konqueror/3.0-rc4; i686 Linux;;datecode)','Opera/9.52 (X11; Linux i686; U; en)'] | |
random_user_agent = choice(user_agents) |
74 Script done on 2020-06-04 12:57:09+0530 | |
75 find . -name *.txt -not -path '*/\.*' -print0 | xargs -0 -exec l s -la {} + | |
76 find . -name *.txt -not -path '*/\.*' -print0 | xargs -0 sed -i 's/#/~/g' | |
77 | |
78 -exec rename _dbg.txt .txt '{}' \; | |
79 | |
80 | |
81 | |
82 Find txt files and rename them to be md | |
83 |