Skip to content

Instantly share code, notes, and snippets.

package main
import (
"bytes"
"fmt"
"strconv"
"sync"
"testing"
)
@stulentsev
stulentsev / mixed.rb
Created April 18, 2019 11:50
spam filter: proof of concept
tests = %w(
лошадь
horse
horse123
h0rse
лошадb
slоn
)
@stulentsev
stulentsev / pq.go
Created June 26, 2019 11:08 — forked from asaelko/pq.go
import (
"math/big"
"math/rand"
"time"
)
func SplitPQ(pq *big.Int) (p1, p2 *big.Int) {
value_0 := big.NewInt(0)
value_1 := big.NewInt(1)
value_15 := big.NewInt(15)
require 'benchmark/ips'
require 'set'
sizes = [3, 5, 10, 15, 100]
sizes.each do |size|
Benchmark.ips do |x|
range = 1..size
array = range.to_a
hash = array.each_with_object({}) {|x, memo| memo[x] = x}
% cat .git/hooks/pre-commit
#! /usr/bin/env ruby
puts "pre-commit hook: checking for forgotten debug statements"
debug_statements = [
'binding.pry',
'console.log',
':focus',
'focus: true',
using System;
using FortniteReplayReader;
using Unreal.Core.Models.Enums;
using System.Threading.Tasks;
using Fortnite_API;
using Fortnite_API.Objects.V1;
using FortniteReplayReader.Models;
using System.CommandLine;
RUN echo "https://mirror.yandex.ru/mirrors/alpine/v3.7/main" > /etc/apk/repositories \
&& echo "https://mirror.yandex.ru/mirrors/alpine/v3.7/community" >> /etc/apk/repositories \
&& echo "https://mirror.yandex.ru/mirrors/alpine/v3.5/main" >> /etc/apk/repositories \