Skip to content

Instantly share code, notes, and snippets.

View Tirael's full-sized avatar
🏠
Working from home

Georgiy Zhuykov Tirael

🏠
Working from home
  • Moscow, Moscow City, Russian Federation
View GitHub Profile
@Tirael
Tirael / cycriptBot.py
Created September 25, 2015 16:50 — forked from conradev/cycriptBot.py
Cycript IRC Bot
from twisted.words.protocols import irc
from twisted.internet import reactor, protocol
import sys, os, subprocess, tempfile
class CycriptBot(irc.IRCClient):
nickname = "cycriptbot"
def __init__(self):
self.process = "SpringBoard"
@Tirael
Tirael / convert-image-to-base64.js
Created April 16, 2016 09:38 — forked from HereChen/convert-image-to-base64.js
convert image to base64
/**
* version1: convert online image
* @param {String} url
* @param {Function} callback
* @param {String} [outputFormat='image/png']
* @author HaNdTriX
* @example
convertImgToBase64('http://goo.gl/AOxHAL', function(base64Img){
console.log('IMAGE:',base64Img);
})
@Tirael
Tirael / index.js
Created November 24, 2016 16:15
Nightmarejs .click() on each element with delay between
var Nightmare = require('nightmare');
var nightmare = Nightmare({ show: true });
nightmare
.goto('http://example.com/')
.click('.buttonOpenModal')
.wait('div.Buttons')
.evaluate(function () {
var interval = setInterval(function () {
var btn = document.querySelectorAll('div.Buttons');
@Tirael
Tirael / google-paging.js
Last active November 24, 2016 21:15
Dynamic paging with Nightmare / Electron (page scrape)
var Nightmare = require('nightmare');
var vo = require('vo');
vo(run)(function(err, result) {
if (err) throw err;
});
function* run() {
var nightmare = Nightmare({ show: true }),
MAX_PAGE = 100,
@Tirael
Tirael / infinite_scrolling.js
Created November 24, 2016 21:16
Nightmare.JS infinite scroll action
var Nightmare = require('nightmare');
var vo = require('vo');
var nightmare = Nightmare({
show: true
});
var run = function * () {
yield nightmare.goto('http://scrollmagic.io/examples/advanced/infinite_scrolling.html');
var previousHeight, currentHeight=0;
@Tirael
Tirael / machine-test.js
Created November 25, 2016 01:00
machine-test
var machina = require('machina');
var vehicleSignal = new machina.BehavioralFsm( {
initialize: function( options ) {
// your setup code goes here...
},
namespace: "vehicle-signal",
@Tirael
Tirael / IObservableMocking.cs
Last active April 24, 2017 11:50
Auto-mocking an IObservable pushes a value
// https://github.com/nsubstitute/NSubstitute/issues/210#issuecomment-158282595
foo.WhenStuffHappened.Returns(Observable.Return(5));
// or
foo.WhenStuffHappened.Returns(Observable.Empty());
// or
foo.WhenStuffHappened.Returns(Observable.Throws(new Exception("Die")));
@Tirael
Tirael / 01-promise-wait-and-catch.js
Created January 11, 2019 10:24
Promise waitAndCatch
/**
* Wait for a specified number of milliseconds. If a promise hasn't resolved, reject it.
* This is a necessary replacement in some cases since cancellable promises aren't a thing
* and is helpful if you want to wait _no longer than_ a specified amount of time.
* @param {int} time Amount of time to wait before resolving arbitrarily.
* @param {function} fn That returns a Promise. It will be run one tick before the timer starts.
* @return {Promise}
*/
export function waitAndCatch(time, fn) {
return new Promise((resolve, reject) => {
@Tirael
Tirael / promise-take-at-least.js
Created January 11, 2019 10:24 — forked from adamwathan/promise-take-at-least.js
Promise.takeAtLeast
// Creates a new promise that automatically resolves after some timeout:
Promise.delay = function (time) {
return new Promise((resolve, reject) => {
setTimeout(resolve, time)
})
}
// Throttle this promise to resolve no faster than the specified time:
Promise.prototype.takeAtLeast = function (time) {
return new Promise((resolve, reject) => {
@Tirael
Tirael / Program.cs
Created May 18, 2019 23:08 — forked from dlidstrom/Program.cs
Castle Windsor typed app settings
[AppSettings("smtp:")]
public interface SmtpConfiguration
{
string Name { get; set; }
int Port { get; set; }
string Username { get; set; }
}