A Pen by Yuval Saraf on CodePen.
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
<div class="messy-array"> | |
</div> |
Forked from Bruno Azevedo's Pen Origami Bird.
A Pen by Yuval Saraf on CodePen.
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
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 |
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
#!/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 |
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
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, | |
}; |