I hereby claim:
- I am mahdyar on github.
- I am mahdyar (https://keybase.io/mahdyar) on keybase.
- I have a public key whose fingerprint is 0C45 1EE6 1812 7F21 271C 77ED 15DF CA00 8893 751D
To claim this, I am signing this object:
| addEventListener("fetch", (event) => { | |
| event.respondWith(handleRequest(event)); | |
| }); | |
| let data = { | |
| ok: false, | |
| }; | |
| async function handleRequest(event) { | |
| if (event.request.method == "POST") { | |
| let body = await event.request.json(); | |
| if (body.url && body.title && body.telemark_code) { |
| for appFolder in /Applications/*/ ; do | |
| cd "$appFolder/Contents/MacOS/" 2> /dev/null | |
| if [[ "$?" != 0 ]]; then continue; fi | |
| for file in * ; do | |
| if [ ! -d "$file" ] && [[ $file != *"."* ]]; then | |
| architecture=$(file "$file") | |
| if [[ $architecture != *"arm64"* ]]; then | |
| echo "\"$file\" doesn't support arm64." |
I hereby claim:
To claim this, I am signing this object:
| package main | |
| import ( | |
| "fmt" | |
| "net" | |
| ) | |
| /************************************************************************* |
| #!/bin/sh | |
| TODO=~/.TODO | |
| # The Path of The TODO-List | |
| alias clt="rm -rf $TODO" # For make the List empty. | |
| alias adt="echo '#'$1 >> $TODO" # For add an Item to the List. | |
| # Displaying the List.. | |
| if test -f "$TODO";then |