Skip to content

Instantly share code, notes, and snippets.

@adibas03
adibas03 / SuperdaoActionDb
Created April 15, 2016 08:52 — forked from anonymous/SuperdaoActionDb
Created using soleditor: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://chriseth.github.io/browser-solidity/?gist=
import "SuperdaoActions";
contract SuperdaoActionDb is SuperdaoActionManagerEnabled {
// This is where we keep all the actions.
mapping (bytes32 => address) public Superdaoactions;
//ensure call is from action manager
modifier verifyAm(){
if(!isActionManager()){
throw;
@adibas03
adibas03 / .atom\packages\atom-ethereum-interface\lib\ethereum-interface.coffee
Created September 9, 2016 23:22
Integrated testrpc falback if no local geth
AtomSolidityView = require './ethereum-interface-view'
{CompositeDisposable} = require 'atom'
Web3 = require 'web3'
React = require 'react'
ReactDOM = require 'react-dom'
try
TestRPC = require "ethereumjs-testrpc";
catch a
console.log(a);
@adibas03
adibas03 / ubuntu14.04-command-line-install-android-sdk
Last active October 4, 2016 10:56 — forked from wenzhixin/ubuntu14.04-command-line-install-android-sdk
Ubuntu 14.04 command line install android sdk
# install openjdk
sudo apt-get install openjdk-7-jdk
# download android sdk
wget http://dl.google.com/android/android-sdk_r24.2-linux.tgz
tar -xvf android-sdk_r24.2-linux.tgz
cd android-sdk-linux/tools
# install all sdk packages
@adibas03
adibas03 / whisper.js
Last active February 28, 2017 20:58 — forked from achiko/whisper.js
whisper sample
console.log('shh clien ....');
var Web3 = require('Web3');
if(typeof web3 !== 'undefined')
web3 = new Web3(web3.currentProvider);
else
//web3 = new Web3(new Web3.providers.HttpProvider("http://67.205.160.17:3555"));
web3 = new Web3(new Web3.providers.HttpProvider("http://pokereum.cloudapp.net:8545"));
@adibas03
adibas03 / Helloworld.sol
Created March 27, 2017 14:30
Welcome to solidity
pragma solidity ^ 0.4.9;
contract Helloworld{
uint public hey;
function Helloworld(){
}
function getWorld() returns(bytes32 hello){
@adibas03
adibas03 / Hello.sol
Last active August 15, 2017 07:35
Blochain_crytocurrrency_confrerence_2017 Training
pragma solidity^0.4.11;
contract Hello{
event say_hello(string);
function Hello(){}
function world() constant returns(string){
return "world";
}
@adibas03
adibas03 / gh-pages-deploy.md
Last active January 3, 2018 16:24 — forked from cobyism/gh-pages-deploy.md
Deploy to `gh-pages` from a `dist` folder on the master branch. Useful for use with [yeoman](http://yeoman.io).

Deploying a subfolder to GitHub Pages

Sometimes you want to have a subdirectory on the master branch be the root directory of a repository’s gh-pages branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master branch alongside the rest of your code.

For the sake of this example, let’s pretend the subfolder containing your site is named dist.

Step 1

Remove the dist directory from the project’s .gitignore file (it’s ignored by default by Yeoman).

@adibas03
adibas03 / 01_pkcs12-cacerts-workaround.sh
Created June 20, 2018 15:03 — forked from mikaelhg/01_pkcs12-cacerts-workaround.sh
Workaround for java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty
# Ubuntu 18.04 and various Docker images such as openjdk:9-jdk throw exceptions when
# Java applications use SSL and HTTPS, because Java 9 changed a file format, if you
# create that file from scratch, like Debian / Ubuntu do.
#
# Before applying, run your application with the Java command line parameter
# java -Djavax.net.ssl.trustStorePassword=changeit ...
# to verify that this workaround is relevant to your particular issue.
#
# The parameter by itself can be used as a workaround, as well.
@adibas03
adibas03 / gist:fc3aa2ed612e574da7f812344ac7f596
Last active October 14, 2019 12:10
React native setup errors trouble shooting
Ensure gradle version matches Java version
openjdk 11 & above: Gradle 5 & above
update distributionUrl in repo/android/gradle/wrapper/gradle-wrapper.properties to:
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1-all.zip
Unable to successfully start react-native server
https://stackoverflow.com/questions/57313661/stuck-on-info-starting-js-server
Could not determine java version from 'x.x.x'
Compare java versions between react-nativer `start` and `run-android`
@adibas03
adibas03 / instructions.md
Last active February 8, 2022 06:34
Install Ruby on Mac

Ensure xcode and dependencies are installed

xcode-select --install

Install and set up Ruby

brew install chruby ruby-install;