Skip to content

Instantly share code, notes, and snippets.

@Kishanjvaghela
Kishanjvaghela / First.sol
Created September 3, 2018 17:55
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.4.24+commit.e67f0147.js&optimize=false&gist=
pragma solidity ^0.4.24;
contract First {
function add(uint256 a ,uint256 b) view returns(uint256) {
return a + b;
}
}
@Kishanjvaghela
Kishanjvaghela / gradle.md
Last active September 29, 2018 15:18 — forked from suwhs/gradle.md
5 steps for bintray-upload build.gradle (for jcenter)

add bintray and maven plugin to buildscript dependencies (project's build.gradle)

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.1.2'
 classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2' // ADD THIS LINE

Keybase proof

I hereby claim:

  • I am kishanjvaghela on github.
  • I am kishanjv (https://keybase.io/kishanjv) on keybase.
  • I have a public key ASB3nyeRTfEhgvPClo87yNP0zm9UbEJJ2b3_SKWJxKrplwo

To claim this, I am signing this object:

@Kishanjvaghela
Kishanjvaghela / TLSSocketFactory.java
Last active November 20, 2018 12:14 — forked from fkrauthan/TLSSocketFactory.java
Custom SSLSocketFactory Implementation to enable tls 1.1 and tls 1.2 for android 4.1 (16+)
package net.cogindo.ssl;
import java.io.IOException;
import java.net.InetAddress;
import java.net.Socket;
import java.net.UnknownHostException;
import java.security.KeyManagementException;
import java.security.NoSuchAlgorithmException;
import javax.net.ssl.SSLContext;
function *foo(x) {
console.log('x is ' + x);
const y = yield (x + 1);
console.log('y is ' + y);
var z = yield (y + 2);
console.log('z is '+ z);
return (x + y + z);
}
var it = foo( 5 );
function convertToRoman(input) {
var roman = {
M: 1000,
D: 500,
C: 100,
L: 50,
X: 10,
V: 5,
I: 1
};
@Kishanjvaghela
Kishanjvaghela / rn-cli.config.js
Created June 20, 2019 09:55
transformer for node modules
module.exports = {
/**
* Add search paths to the packager. Equivalent to the
* `--projectRoots` command line argument.
*
* Your app project directory is the default, but you can easily add
* additional directories.
*
* This is very handy when you maintain all your software in one big
@Kishanjvaghela
Kishanjvaghela / start_emulator.sh
Created August 21, 2019 06:26 — forked from itmammoth/start_emulator.sh
Start an android emulator with changing DNS server to Google public DNS
#!/bin/bash
EMULATOR=~/Library/Android/sdk/tools/emulator
if [ $# -ne 1 ]; then
echo "ERROR: Please specify the target AVD from the list below" 1>&2
$EMULATOR -list-avds 1>&2
exit 1
fi
$EMULATOR -avd $1 -dns-server "8.8.8.8,8.8.4.4"
Official Website:
upanishadganga.com
Episode list:
http://upanishadganga.com/episode-guide.php
https://clix.chinmayamission.com/product/upanishad-ganga-serial/
[
{
"p": "com.nemo.vidmate",
"a": "Test"
},
{
"p": "app.buzz.share",
"a": "Helo"
},
{