This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BEGIN MESSAGE. | |
egMOu0utVv8q5c5 MeTcOZPUPABmd7x 5GPcGNtZ02VnAle pBAoxEWvsefNiY2 | |
rIvYlwd8FCpL0Rd 3EPe0GiiRXvTCKq 6Xr2MZHgg4WqbhQ VMRQFPvEsqYg0Hw | |
JhqxdKlqpCQblEI AHopIFYE49eAsEH DN2YyGkpx05XaQV 6m7moiKT2gYEHdV | |
1ZYplFqt9evpiLx HmVBllqSjaZxjqK YL4en0aLMzWSiL. | |
END MESSAGE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func isHappy(n int) bool { | |
if n <=0 { | |
return false | |
} | |
used := make(map[int]bool) | |
used[n] = true | |
for n!=1 { | |
fmt.Println(n) | |
k:= n | |
sum := 0 |
I hereby claim:
- I am gumeniukcom on github.
- I am gumeniukcom (https://keybase.io/gumeniukcom) on keybase.
- I have a public key whose fingerprint is 5BE8 0A02 55D4 0756 1961 025E C82D 0927 467D E438
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rabbitmqctl list_connections pid port state user vhost recv_cnt send_cnt send_pend name | awk '{print "rabbitmqctl close_connection \"" $1 "\" \"manually closing idle connection\"" | "/bin/bash" }' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- name: ensure github.com is a known host | |
lineinfile: | |
dest: /root/.ssh/known_hosts | |
create: yes | |
state: present | |
line: "{{ lookup('pipe', 'ssh-keyscan -t rsa github.com') }}" | |
regexp: "^github\\.com" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[color] | |
status=auto | |
branch=auto | |
interactive=auto | |
diff=auto | |
[alias] | |
s = status | |
st = status | |
b = branch |
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @author Stan Gumeniuk [email protected] | |
*/ | |
function getPrimeNumbers($n = 100) | |
{ | |
$resheto = []; | |
$current = 2; |
NewerOlder