Skip to content

Instantly share code, notes, and snippets.

View ans1genie's full-sized avatar
🍅
Focusing

Anas AIT BAHA ans1genie

🍅
Focusing
View GitHub Profile
@subbe
subbe / greetings.json
Created April 6, 2021 08:32
Greetings from different languages. Data includes language, country and flag.
{
"Afrikaans":{
"greetings":[
"Hallo (hal-low)"
],
"countries":[
{
"name":"South Africa",
"flag":"🇿🇦"
},
@mfd
mfd / teams.sh
Last active June 13, 2025 08:56
Download any video from Microsoft Teams, SharePoint and OneDrive
2teams() {
NOW=$(date +"%Y-%m-%d_%H%M")
if [ ! -z $2 ] ; then
echo $NOW"_"$2.mp4
ffmpeg -i $1 -codec copy $NOW"_"$2.mp4
else
echo $NOW"_teamsvid".mp4
ffmpeg -i $1 -codec copy $NOW"_teamsvideo".mp4
fi
}