Skip to content

Instantly share code, notes, and snippets.

View secondfry's full-sized avatar
:shipit:
More Pylons are required...

Rustam @SecondFry Gubaydullin secondfry

:shipit:
More Pylons are required...
View GitHub Profile
@secondfry
secondfry / 7.go
Last active August 11, 2021 10:19
7.md answer
package main
import "fmt"
// Небольшой disclamier.
// Это решение создано так, как будто бы, я бы пошел на алгоритмическую секцию.
// Однако усложняющим фактором было то, что не было человека, с которым можно было бы обсудить решение.
// Теперь постфактум я посмотрел решение на Leetcode,
// узнал о https://en.wikipedia.org/wiki/Kadane%27s_algorithm
@secondfry
secondfry / .zshrc.local not.zsh
Last active August 10, 2021 12:34
Personal additions to grml zsh config
## Common
export EDITOR='subl -w'
export LC_ALL='en_US.UTF-8'
## ZSH
# Virtualenv support
function virtual_env_prompt () {
REPLY=${VIRTUAL_ENV+(${VIRTUAL_ENV:t}) }
}
grml_theme_add_token virtual-env -f virtual_env_prompt '%F{magenta}' '%f'
@secondfry
secondfry / 01_iptables_by_second_fry.sh
Last active November 1, 2019 13:47
Probably my default iptables config
#!/bin/bash
### Читаем:
### https://wiki.archlinux.org/index.php/Simple_stateful_firewall
### https://www.booleanworld.com/depth-guide-iptables-linux-firewall/
### https://javapipe.com/blog/iptables-ddos-protection/
### Подготовка.
# ulogd!
@secondfry
secondfry / init-2b-arp.sh
Last active October 29, 2019 16:00
Identify all IP adresses which are part of the same subnet #ecole42 #school21 #init
#!/bin/sh
# (c) Copyright 2019 oadhesiv
# MIT license
# rgbg vavg hxenqra f tvgn, fzryb fgni zvahf fbebx qin
ping -c 2 -b $(ip -o -4 addr show dev en0 | awk '{print $6}')
arp -i en0 -n | grep . | awk '{print $1}'
@secondfry
secondfry / eve-pi-planets.js
Created January 30, 2017 23:14
eve-marketdata.com unique planet finder
/**
* Scripts for pages alike https://eve-marketdata.com/pi.php?step=PIPlanner2&type_name=Broadcast+Node&solarsystem_name=Resbroko
*/
var dict = {
'Aqueous Liquids': ['Barren', 'Gas', 'Ice', 'Oceanic', 'Storm', 'Temperate'],
'Autotrophs': ['Temperate'],
'Base Metals': ['Ice', 'Oceanic', 'Temperate'],
'Reactive Metals': ['Ice', 'Oceanic', 'Temperate'], // FIXME
'Carbon Compounds': ['Barren', 'Oceanic', 'Temperate'],
'Complex Organisms': ['Oceanic', 'Temperate'],