Skip to content

Instantly share code, notes, and snippets.

View zolotokrylin's full-sized avatar
🦄
I am hiring. Please check https://holdex.io/c/jobs

Vadim zolotokrylin

🦄
I am hiring. Please check https://holdex.io/c/jobs
View GitHub Profile
@zolotokrylin
zolotokrylin / console_print.js
Created July 30, 2017 14:32
Cool console print
(function() {
console.log(" ▀▄ ▄▀"),
console.log(" ▄█▀███▀█▄"),
console.log(" █▀███████▀█"),
console.log(" █ █▀▀▀▀▀█ █"),
console.log(" ▀▀ ▀▀"),
console.log("┌───────────────────────────────────────────────────────────────────┐"),
console.log("│ Found a bug? Please report to hello@example.com"),
console.log("├───────────────────────────────────────────────────────────────────┴──────────────────┐"),
console.log("│ We're always looking for excellent developers! Check out https://example.com/careers │"),
@zolotokrylin
zolotokrylin / package.json
Created November 13, 2017 13:41
Gif splitter
{
"name": "gif_renamer",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
@zolotokrylin
zolotokrylin / load_test_util.sh
Created November 13, 2017 13:52
Simple load test
#!/bin/bash
COUNTER=0
while [ $COUNTER -lt 15 ]; do
curl -X GET https://api.dev.bump.fm/v1.0/playlists -H 'user-agent: mxbl' -I &
let COUNTER=COUNTER+1
done
@zolotokrylin
zolotokrylin / trello-product-owner.html
Last active May 1, 2019 13:31
Product Owner cheat-list
<!DOCTYPE html>
<html>
<head>
<title>Product manager dashboard</title>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="https://api.trello.com/1/client.js?key=5971ce0cdd8bc45946980a62ed81ae8c"></script>
</head>
@zolotokrylin
zolotokrylin / holdex-preloader.html
Last active July 6, 2019 05:55
Holdex pre-loader animation
<div class="preloader">
<div class="right-tnx">
<div class="flip">
<div class="tnx">
<div class="el"></div>
<div>
<div class="el"></div>
</div>
</div>
</div>
@zolotokrylin
zolotokrylin / cryptokitties.sol
Created March 30, 2021 04:20 — forked from arpit/cryptokitties.sol
Cryptokitties Contract from the Eth blockchain
pragma solidity ^0.4.11;
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
contract Ownable {
address public owner;