I hereby claim:
- I am tonekk on github.
- I am tonekk (https://keybase.io/tonekk) on keybase.
- I have a public key ASDq9OnvfGWJe7s_Q0w7AXH1eNbvfS-i6lkiN-mGDzstaAo
To claim this, I am signing this object:
{ | |
"_type": "export", | |
"__export_format": 4, | |
"__export_date": "2022-07-11T14:30:45.103Z", | |
"__export_source": "insomnia.desktop.app:v2022.4.2", | |
"resources": [ | |
{ | |
"_id": "req_7526b5b47503457999fdfd5e1d07f72c", | |
"parentId": "fld_f135b897caf147d5b7baa7d86de80bb0", | |
"modified": 1657378470902, |
#!/bin/sh | |
curl -s https://raw.githubusercontent.com/thisredone/rb/master/rb > rb | |
chmod +x rb | |
sudo mv rb /usr/local/bin |
I hereby claim:
To claim this, I am signing this object:
My personal reading list
lifes = 9 | |
puts "Try to kill me, I got #{lifes} lifes!\n" | |
loop do | |
begin | |
sleep 1 | |
rescue Exception => e | |
lifes = lifes - 1 |
cd && git clone [email protected]:tonekk/dotfiles.git etc && cd etc && git submodule update --init --recursive && ~/etc/bin/init && nvim -c PlugInstall |
class UrlValidator < ActiveModel::EachValidator | |
def validate_each(record, attribute, value) | |
valid = begin | |
URI.parse(value).kind_of?(URI::HTTP) | |
rescue URI::InvalidURIError | |
false | |
end | |
unless valid | |
record.errors[attribute] << (options[:message] || "is an invalid URL") |
#!/bin/sh | |
export GIT_MERGE_AUTOEDIT=no | |
ruby 'bin/hotfix.rb' | |
unset GIT_MERGE_AUTOEDIT |
#ifndef FIX_POINT_H | |
#define FIX_POINT_H | |
#include <cmath> | |
/* | |
* fix_point.h | |
* | |
* Finn-Lennart Heemeyer, 791440.Beuth | |
*/ |