Skip to content

Instantly share code, notes, and snippets.

View furusiyya's full-sized avatar

Bilal furusiyya

View GitHub Profile
- "consumer.Http":
Enable: true
ID: ""
Fuse: ""
Stream:
- "foo"
- "bar"
Address: ":9000"
ReadTimeoutSec: 3
WithHeaders: true
@furusiyya
furusiyya / dockerClean.sh
Last active May 30, 2017 05:42
Remove stopped containers and untagged images created due to unsuccessful builds (Images with Repository: <none> && Tag: <None>)
#!/bin/bash
docker rmi $(docker images | grep "^<none>" | awk "{print $3}");
docker rm $(docker ps -a -q)

Keybase proof

I hereby claim:

  • I am furusiyya on github.
  • I am furusiyya (https://keybase.io/furusiyya) on keybase.
  • I have a public key whose fingerprint is 2D55 B75B D686 3D23 55A7 F44F 4C5A 29F8 C638 4CB0

To claim this, I am signing this object:

@furusiyya
furusiyya / configure_docker0.sh
Created April 12, 2017 11:23 — forked from kamermans/configure_docker0.sh
Change the IP subnet of Docker's docker0 interface
#!/bin/sh -e
#
# You can run this script directly from github as root like this:
# curl -sS https://gist.githubusercontent.com/kamermans/94b1c41086de0204750b/raw/configure_docker0.sh | sudo bash -s - 192.168.254.1/24
#
# * Make sure you replace "192.168.254.0/24" with the network that you want to use
#
# NOTE: This script is intended for Debian / Ubuntu only!
if [ $# -lt 1 ]; then
Dear Hiring Manager,
I’m interested in the position of developer for an IOT platform. I am writing code with in Golang from 10 months. During these 10 months I have written code for an open source honeypot project named Glutton. I am working as a collaborator on this project. I have also contributed in some other golang open source project. You can view my contributions in those projects with the help of links shared below.
Before golang I was using JAVA, I have designed couple of commercial application based upon SWING and JAVAFX. Java was my primary tool before golang.
Well moving towards your requirements, You had mentioned that you were looking for developer with proven problem solving skills, good in mathematics and fluent English, Well I have good problem solving skills, you can evaluate from my github contributions. I am good in mathematics, In these days I am studying a Book 'Mathematics for Computer Science' in free time. Honestly English is not my native language but you I have good enough to co
@furusiyya
furusiyya / id_rsa.pub
Created April 18, 2017 14:25
SSH public key
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDg79655A0KOegZ1ohn7IcvkIYFJj4TbWPAHhZivBDbZdVTfI7fSzO32uP0XsibrxNv5054XVEUPYcm8TXIlH9clqippnyjdWM9vAXCfrB7xE7poQ9rz4e7rdIPcU/lMtI4N0iOL3lyawkzHsSHPLAozIr+fHua5Vg+dud1JeUers2EG+kxAnPPK6iPV1vqgIWKoL5nTogLu7iCDoCqY6MIWdz7CSzv9uoyYqqqrVN8sj0wfwJEIsmkR1ep0wlNtMajx2CoA4PvfDsa5ReVTop2vELcoHrrGu0EkbK+4UmcUmvMdCPLAs3SvF5r8k201eTxPw5NIAc5pi5mHAkQBX+H fsociety@fsociety
@furusiyya
furusiyya / BlockchainResources.md
Last active August 17, 2018 17:26
Collection of blockchain learning resources I used for getting started. Feel free to add yours :)
@furusiyya
furusiyya / gist:43275a21e7075cd8200293a1b4cc92d5
Created April 28, 2017 09:54 — forked from atcuno/gist:3425484ac5cce5298932
HowTo: Privacy & Security Conscious Browsing

The purpose of this document is to make recommendations on how to browse in a privacy and security conscious manner. This information is compiled from a number of sources, which are referenced throughout the document, as well as my own experiences with the described technologies.

I welcome contributions and comments on the information contained. Please see the How to Contribute section for information on contributing your own knowledge.

Table of Contents

@furusiyya
furusiyya / Custom token contract
Created May 7, 2017 21:27
Created a custom token then transfer to other accounts
contractAddress = '0x18ed614ab06285ca9d294e96e5144eefe1160e6d'
Methods available in contract:
1 - balanceOf(account address)
2 - transfer(account address, amount)
In order to use json rpc we need to find the hash of the invoked method signature and encoded parameters
- Hash of method 1:
> gold.balanceOf.getData(eth.coinbase) //Return balance of contract base account
'0x70a08231000000000000000000000000e8a67c0b7e1bc9929dc5bc7aee4ff245745908c8'