Forked from Bruno Azevedo's Pen Origami Bird.
A Pen by Yuval Saraf on CodePen.
var inbarCalendarByUv = () => { | |
const CONTINUE_TEXT = 'המשך'; | |
const GOOGLE_CAL_IMPORT_URL = 'https://calendar.google.com/calendar/r/settings/export'; | |
const BTN_ID = 'uv-cal-btn'; | |
const meetTypes = { | |
lecture: 1, | |
exercise: 2, | |
lab: 3, | |
freeHours: 4, | |
}; |
#!/bin/bash | |
#source ~/.my_custom_commands.sh | |
function rename-folder() { | |
for f in *.*; do | |
newname=`echo "$f" | sed -E "s/$1/$2/g"` | |
if [ $3 == 'do' ] | |
then | |
mv "$f" "$newname" | |
else |
find src -type f -name '*.js' | xargs grep -c '/>' $1 | awk '!/:0/' | sed -r 's/\.js.+//g' | xargs -I file echo file.js file.jsx |
Forked from Bruno Azevedo's Pen Origami Bird.
A Pen by Yuval Saraf on CodePen.
<div class="messy-array"> | |
</div> |
A Pen by Yuval Saraf on CodePen.