Skip to content

Instantly share code, notes, and snippets.

View volbil's full-sized avatar

Volodymyr Biloshytskyi volbil

View GitHub Profile
@volbil
volbil / label.py
Created October 28, 2020 00:06
AdjectiveAdjectiveAnimal
import random
adjectives = [
"adorable", "adventurous", "aggressive", "alert", "attractive", "average",
"beautiful", "blue-eyed ", "bloody", "blushing", "bright", "clean", "clear",
"cloudy", "colorful", "crowded", "cute", "dark", "drab", "distinct", "dull",
"elegant", "excited", "fancy", "filthy", "glamorous", "gleaming", "gorgeous",
"graceful", "grotesque", "handsome", "homely", "light", "long", "magnificent",
"misty", "motionless", "muddy", "old-fashioned", "plain", "poised", "precious",
"quaint", "shiny", "smoggy", "sparkling", "spotless", "stormy", "strange",
BEGIN MESSAGE.
UPOiIn2oba8cN96 yqAdlmRc2yoSCBv zW7iaaajDzmjiYS rVLs2v7QwI7hMsy
Kx6JEZZ8YqHWaNP o2J4XtJ1XjLTCKq 6Xr2MZHgg6vDVBl wTXbAIhZyj4Y6MZ
VLTzyGY6CSmiglm yjKNYxWZE9jhBJ3 yavd6avyhnWDhy5 lkdDV1hNaTqDzDl
eBbQ2C52nUmPyPg qnDBL9yiWylMX2n Ms8A621.
END MESSAGE.

Keybase proof

I hereby claim:

  • I am volbil on github.
  • I am volbil (https://keybase.io/volbil) on keybase.
  • I have a public key ASC2ykhmX7si0oDuQCkEHceCu7r78FjVO1xbed8O4ZT1tAo

To claim this, I am signing this object:

Hello, today our community server was attacked by severe report attack. Attacked which is going by pseudonym Mink created fake account with same nickname as our server admin cryptozeny and posted allegedly his personal info in public his own public server (check attachemnts 1-3). After this he probably reported them to Discord support team. As result today all of server admins, including user who joined just couple hours before was banned, here is not full list (with actual user id) of banned users:

crypt?zeny: 619739278695727104

import hashlib
import struct
header = {
"version": 2,
"prev_block": "000000000000000117c80378b8da0e33559b5997f2ad55e2f7d18ec1975b9717",
"merkle_root": "871714dcbae6c8193a2bb9b2a69fe1c0440399f38d94b3a0f1b447275a29978a",
"timestamp": 1392872245,
"bits": 419520339,
"nonce": 856192328
#!/usr/bin/env python
#
# Electrum - lightweight Bitcoin client
# Copyright (C) 2011 thomasv@gitorious
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
<?php
class CSRF {
public function __construct() {
if (!isset($_SESSION['csrfToken'])) {
$_SESSION['csrfToken'] = [];
}
}
@volbil
volbil / apache.conf
Created October 7, 2018 08:14 — forked from rambabusaravanan/apache.conf
SPA - Apache, Nginx Configuration for Single Page Application like React.js on a custom path
# To host on root path just use "<Location />" for http://mydomainname.in
# To host on non-root path use "<Location /myreactapp>" for http://mydomainname.in/mypath
# If non-root path, don't forgot to add "homepage": "/myreactapp" in your app's package.json
<VirtualHost *:80>
ServerName mydomainname.in
DirectoryIndex index.html
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined