- @typescript-eslint/eslint-plugin
- @typescript-eslint/parser
- eslint
- eslint-config-airbnb-base
- eslint-config-prettier
- eslint-plugin-import
- eslint-plugin-prettier
- prettier
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
| #https://github.com/zeyadetman/RemoveDuplicateFiles | |
| import os | |
| import hashlib | |
| import sys | |
| files = [] | |
| def hashing(Filepath): | |
| with open(Filepath, 'rb') as f: | |
| HashedFile = hashlib.sha256(f.read()).hexdigest() | |
| return HashedFile |
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
| # If you come from bash you might have to change your $PATH. | |
| # export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| # Path to your oh-my-zsh installation. | |
| export ZSH="/Users/zeyadetman/.oh-my-zsh" | |
| # Set name of the theme to load --- if set to "random", it will | |
| # load a random theme each time oh-my-zsh is loaded, in which case, | |
| # to know which specific one was loaded, run: echo $RANDOM_THEME | |
| # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes |
I hereby claim:
- I am zeyadetman on github.
- I am zeyadetman (https://keybase.io/zeyadetman) on keybase.
- I have a public key ASBMhPyomnelq8bQO1z_-lahvzuv1jqvHKhSo4fADHe64wo
To claim this, I am signing this object:
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 | |
| pushit () { | |
| echo "Getting data..."; | |
| jira issue list -a"Zeyad Etman" -s"IN PROGRESS"; | |
| echo "\nPlease enter ticket id: " | |
| read id; | |
| echo "\n" | |
| desc=$(jira issue list -q "key = $id" --plain); | |
| A=$(awk -F"$id" '{print $2}' <<< $desc) |
Hey 👋 This is the function I've created for exporting specific notion database to GitHub Repo in my telegram bot (full code) The function supports nested databases.
ctx is used for telegram bot you can ignore it.
const handleDatabases = async (
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
Show hidden characters
| { | |
| "React Functional Component with Props": { | |
| "prefix": "rfcp", | |
| "body": [ | |
| "interface $1Props {}", | |
| "", | |
| "export const $1 = ({}: $1Props) => {", | |
| " return $2;", | |
| "};" | |
| ] |
