This file contains 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
from selenium import webdriver | |
from selenium.webdriver.common.by import By | |
from selenium.webdriver.common.action_chains import ActionChains | |
from selenium.webdriver.support.ui import WebDriverWait | |
from selenium.webdriver.support import expected_conditions as EC | |
import time | |
driver_path = "/opt/homebrew/bin/chromedriver" | |
driver = webdriver.Chrome(executable_path=driver_path) |
This file contains 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
/** | |
Author: Alperen Serkan Aksoz | |
Date: 18/04/2024 | |
this script helps you to create a massa transfer transaction | |
don't forget to create .env file and add your PRIVATE_KEY in it | |
address below is my wallet, you can thank me with Massa, cheers! | |
AU1TfGZR41Q2ka2HiAi4n7Ai31qbAycYVeEfPRyStv55ADfPKK27 | |
*/ |
This file contains 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 | |
# function to extract each tar file | |
extract_tar() { | |
local file="$1" | |
local folder="$(basename "$file" .tar.bz2)" | |
mkdir "$folder" | |
tar -xjf "$file" -C "$folder" | |
} |
This file contains 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/python3 | |
import os | |
import sys | |
""" | |
read terminal output | |
https://stackoverflow.com/q/3503879/12688015 | |
""" |
This file contains 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
# Conky, a system monitor, based on torsmo | |
# | |
# Any original torsmo code is licensed under the BSD license | |
# | |
# All code written since the fork of torsmo is licensed under the GPL | |
# | |
# Please see COPYING for details | |
# | |
# Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen | |
# Copyright (c) 2005-2010 Brenden Matthews, Philip Kovacs, et. al. (see AUTHORS) |
This file contains 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
set nocompatible " disable compatibility to old-time vi | |
set showmatch " show matching brackets. | |
set ignorecase " case insensitive matching | |
set mouse=v " middle-click paste with mouse | |
set hlsearch " highlight search results | |
set autoindent " indent a new line the same amount as the line just typed | |
set number " add line numbers | |
set relativenumber | |
set wildmode=longest,list " get bash-like tab completions | |
set cc=85 " set an 80 column border for good coding style |