I hereby claim:
- I am ukazap on github.
- I am ukazap (https://keybase.io/ukazap) on keybase.
- I have a public key ASDaB0Vp2caiWvh3Ku-tTGSQOIZLZxQAj-s5izDOBy0rpwo
To claim this, I am signing this object:
| @echo off | |
| set texteditor=subl rem Text editor of your choice e.g. Sublime Text (subl) | |
| set hostsfile=C:/Windows/System32/drivers/etc/hosts rem Where Windows' hosts file is located | |
| set vhostsfile=C:/wamp/bin/apache/apache2.4.9/conf/extra/httpd-vhosts.conf rem This one depends on your installation. | |
| set htdocs=C:/wamp/www rem This one depends on your installation. | |
| if ["%1"] == ["edit"] goto:edit | |
| if ["%1"] == ["add"] goto:add | |
| goto:usage |
| require 'prime' | |
| ####### PEMBANGKITAN KUNCI OLEH ALICE | |
| # Pilih sembarang bilangan prima p (p dapat di-share di antara anggota kelompok) | |
| p = Prime.take(1000).last #bilangan prima ke-1000 | |
| # Pilih dua buah bilangan acak, g dan x, dengan syarat g < p dan 1 <= x <= p – 2 | |
| g, x = nil | |
| until g != x |
| #!/usr/bin/env ruby | |
| pwd = Dir.pwd | |
| puts pwd + "\n#{"="*pwd.length}" | |
| entries = Dir.glob(pwd+"/**/*", File::FNM_DOTMATCH) | |
| renamed = 0 | |
| entries.reverse.each do |file| | |
| unless File.basename(file) =~ /^(\.\.|\.)\z/ |
| <OpenSearchDescription> | |
| <ShortName>Google</ShortName> | |
| <Description>Google</Description> | |
| <Tags>google</Tags> | |
| <Image height="16" width="16" type="image/vnd.microsoft.icon">http://www.google.com/favicon.ico</Image> | |
| <Url type="text/html" template="http://www.google.com/search?q={searchTerms}"/> | |
| <Url type="application/x-suggestions+json" method="GET" template="https://www.google.com/complete/search?client=firefox&q={searchTerms}"/> | |
| </OpenSearchDescription> |
I hereby claim:
To claim this, I am signing this object:
| let source = [ | |
| { | |
| name: "Account A" | |
| }, | |
| { | |
| name: "Account B" | |
| }, | |
| { | |
| name: "Account C" | |
| }, |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| .SVGIcon { | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| /* fix webkit/blink poor rendering issues */ | |
| transform: translate3d(0,0,0); | |
| /* it's better defined directly because of the cascade shit | |
| width: inherit; | |
| height: inherit; |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000