Skip to content

Instantly share code, notes, and snippets.

View DaWe35's full-sized avatar

DaWe DaWe35

View GitHub Profile
@realenjoyer
realenjoyer / WL.csv
Created April 23, 2024 10:28
Here you can find a list of 15000 top $ENJOY holders (Snapshot Taken at 2024-04-22T00:00:00Z)
We can't make this file beautiful and searchable because it's too large.
Address,Balance
0xb6b701878a1f80197df2c209d0bdd292ea73164d,6.732254577217902e+10
0xe6d15aef7fa74241dfdc83a79814be99ccd9d8c8,8.690907205403254e+09
0x3a3f615b05aad54d8a7af1d1b20854f0513278da,3.396818521577127e+09
0x40c0e36e6921b1bef210503448f2acee5192d81d,3.6754405100132924e+08
0x430f09841d65beb3f27765503d0f850b8bce7713,3.630043999702476e+08
0x8106928e60bfe96a1c86cd17afb8a867e5e0d0a9,3.2483606499927497e+08
0xa9fb3e29b7f789faf8e2656bfc7f9bff2ed766e9,3.1927183420359284e+08
0x5b8ce4b3e7a74befbbad1954f9a2f1c1257ea84a,3.0162127859761006e+08
0xa30e4c545bbdc568a9491e7e339268ae0626464b,2.9114270578000003e+08
@JTraversa
JTraversa / SWIV.json
Last active May 9, 2024 20:41
SWIV Retroactive Distribution
{
"0xe14c894FFA7404d493217Cd97Cdca415979f750D": "2000000000000000000000",
"0x68251b5f3889b1B98349f8aF8dbC1FAc75Ab4Ce9": "2000000000000000000000",
"0xC7D2c67bC38b0E8b15B632c19Ef629022FD56543": "4000000000000000000000",
"0x5517968D4289e068aA74b4Aa9450aa18eE2d14A3": "4000000000000000000000",
"0x01628A344a6E8Db2aa3E0954BC2C2D1e26444f9D": "5937007874015748300000",
"0x7eb6d04f63521a2e993F5D74F5e18a3e99085BB7": "2000000000000000000000",
"0x087Eae3a20901197F68bAb6fAD5966254c8Dd52e": "2000000000000000000000",
"0xF72F3240728C65F04948bC28a7F6772B590cb56F": "5937007874015748300000",
"0x5DdA68A8990038a13f8B4937e01Be1236c36C018": "4000000000000000000000",
@perials
perials / login.php
Last active January 19, 2020 02:46
Google login using PHP and Google Client Library version 2
<?php
/*
* Please install Google client library using composer. Use below command
* composer require google/apiclient:"^2.0"
*/
// Turn ON error reporting
error_reporting(E_ALL);
ini_set('display_errors', 1);
@ilkamo
ilkamo / sia-daemon.md
Last active January 24, 2023 04:20
Get started with Sia downloading and starting a Sia Daemon via command line on an Ubuntu Server.

Get started with Sia downloading and starting a Sia Daemon via command line on an Ubuntu Server.

Today I started a Sia Daemon on my VPS. During the entire process I encountered some problems, so I decided to share this document with you.

You can start a Sia Daemon as a root user, but is a good practise to create a dedicated user. So before starting, let's create a user called sia.

adduser sia

su sia

@seresistvanandras
seresistvanandras / OBWS_2.md
Last active April 16, 2024 03:32
Hacking smart contracts for fun and profit

Hacking smart contracts for fun and profit

Description of the game

The goal of the game to break as many contracts as possible! Note: one of these contracts is a HONEYPOT! BE CAREFUL!!

Claim your Ropsten test ether here!

The contracts you need to break and their addresses:

@sander1
sander1 / preview.sh
Last active August 29, 2019 09:22
Video preview script from https://davidwalsh.name/video-preview
sourcefile=$1
destfile=$2
# Overly simple validation
if [ ! -e "$sourcefile" ]; then
echo 'Please provide an existing input file.'
exit
fi
if [ "$destfile" == "" ]; then
@bsingr
bsingr / LICENSE.txt
Last active February 26, 2024 10:12
http json echo server written in python3
Copyright (c) 2016 Jens Bissinger
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
@DianaEromosele
DianaEromosele / Change "origin" of your GIT repository
Created August 7, 2016 00:31
Change "origin" of your GIT repository
$ git remote rm origin
$ git remote add origin git@github.com:aplikacjainfo/proj1.git
$ git config master.remote origin
$ git config master.merge refs/heads/master
@mandiwise
mandiwise / Update remote repo
Last active May 15, 2024 09:50
Transfer repo from Bitbucket to Github
// Reference: http://www.blackdogfoundry.com/blog/moving-repository-from-bitbucket-to-github/
// See also: http://www.paulund.co.uk/change-url-of-git-repository
$ cd $HOME/Code/repo-directory
$ git remote rename origin bitbucket
$ git remote add origin https://github.com/mandiwise/awesome-new-repo.git
$ git push origin master
$ git remote rm bitbucket
@myusuf3
myusuf3 / delete_git_submodule.md
Created November 3, 2014 17:36
How effectively delete a git submodule.

To remove a submodule you need to:

  • Delete the relevant section from the .gitmodules file.
  • Stage the .gitmodules changes git add .gitmodules
  • Delete the relevant section from .git/config.
  • Run git rm --cached path_to_submodule (no trailing slash).
  • Run rm -rf .git/modules/path_to_submodule (no trailing slash).
  • Commit git commit -m "Removed submodule "
  • Delete the now untracked submodule files rm -rf path_to_submodule