Skip to content

Instantly share code, notes, and snippets.

View furusiyya's full-sized avatar

Bilal furusiyya

View GitHub Profile
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 / 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

/**
* NTRY Cointract contract, ERC20 compliant (see https://github.com/ethereum/EIPs/issues/20)
*
* Code is based on multiple sources:
* https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts/token/ERC20.sol
* https://github.com/ConsenSys/Tokens/blob/master/Token_Contracts/contracts/Token.sol
*/
pragma solidity ^0.4.8;
@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)
@furusiyya
furusiyya / client.go
Created June 1, 2017 12:48
Client I used stress testing of my server
package main
import (
"bufio"
"fmt"
"net"
"os"
"strconv"
"time"
)
/**
* Beth token contract, ERC20 compliant (see https://github.com/ethereum/EIPs/issues/20)
*
* Code is based on multiple sources:
* https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts/token/ERC20.sol
* https://github.com/ConsenSys/Tokens/blob/master/Token_Contracts/contracts/Token.sol
*/
pragma solidity ^0.4.8;
investors[0x8ceda3f1bd005a5e30b5cb269ce8bf86b5b96c20] = 1131588360000000000
investors[0x39346183c258d1ba55eb4cd7ed2822dfeffe38f5] = 4000000000000000000
investors[0x6fd623ab0dff084df49975986ad8af7c306bf8b8] = 600000000000000000
investors[0xab4bf37461f081c369175b4bee5ae22ea9f7e980] = 12000000000000000
investors[0xaff4ac0f844d2efba41745ed6c76907200be88f2] = 2000000000000000000
investors[0x4a2dccbc65ba28796af0a15dd11424c14153d2d1] = 100000000000000000
investors[0xccc8d4410a825f3644d3a5bbc0e9df4ac6b491b3] = 472856928000000000
investors[0x03e7d38a76d478c6a9edc2386fcd7e2983309b6c] = 100000000000000000
investors[0x98175430c3a4bd4d577e18b487b3ed7303e2c52d] = 10000000000000000000
investors[0x742eacb804428d576d4926fe71af712b430eb644] = 22000000000000000
@furusiyya
furusiyya / AuditReview.md
Last active July 17, 2017 12:39
ForecasterReward audit review

Note: No critical issue found that can cause loss of funds or locking of funds.

Section 5 - Audit findings

5.1 Note Issues

5.1.1 Event parameters not indexed

Type: Enhancement
Status: fixed
Comment: Indexed parameters are used for searching logs. Contract was no relying on logs but store records explicitly in

/**
* Asset Token contract, ERC20 compliant (see https://github.com/ethereum/EIPs/issues/20)
*
* Code is based on multiple sources:
* https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts
* https://github.com/TokenMarketNet/ico/blob/master/contracts
* https://github.com/ConsenSys/Tokens/blob/master/Token_Contracts/contracts
*/
pragma solidity ^0.4.13;