I hereby claim:
- I am satwikkansal on github.
- I am satwikkansal (https://keybase.io/satwikkansal) on keybase.
- I have a public key ASA-7f0t0AGsQ_56-_ofDR-c-vsF5qsdwT-_jFENkxM35wo
To claim this, I am signing this object:
pragma solidity ^0.5.12; | |
contract Exam { | |
// The assessable element | |
// The Exam marking system which is responsible for invoking assessment functions. | |
address owner_ems; | |
address payable student; | |
// Main examiners |
pragma solidity ^0.5.12; | |
/* | |
Ddescription: | |
Starting with the bank smart contract, create the notion of a next-of-kin address which gives names who can take control of the account if left inactive for 3 years. | |
▹ Add code to ensure that upon registering, a user must provide a next-of-kin address. | |
Hint: You will need a new table to store this. | |
▹ Add another table which stores when an account was last used (by calling register, deposit or payOut). |
I hereby claim:
To claim this, I am signing this object:
Make sure you have jupyter installed and virtual envrionment set up already. I prefer virtualenv. If you don't have it set up, you can follow these steps,
$ pip install jupyter
$ pip install virtualenv
$ python -m virtualenv venv
$ source venv/bin/activate
Here, we've created virtual environment called venv
and activated it.
import tensorflow as tf | |
from PIL import Image | |
import numpy as np | |
from tensorflow.examples.tutorials.mnist import input_data | |
mnist = input_data.read_data_sets('MNIST_data', one_hot=True) | |
model_dir = './model/' | |
model_name = 'gan_mnist' |
// Snippet for persistent menu | |
var client = new RestClient("https://graph.facebook.com/v2.6/me/thread_settings?access_token=PAGE_ACCESS_TOKEN"); | |
var request = new RestRequest(Method.POST); | |
request.AddHeader("postman-token", "2f9a47e2-2a8a-0a70-c4ce-cb72dbfd8e93"); | |
request.AddHeader("cache-control", "no-cache"); | |
request.AddHeader("content-type", "application/json"); | |
request.AddParameter("application/json", "{\n \"setting_type\" : \"call_to_actions\",\n \"thread_state\" : \"existing_thread\",\n \"call_to_actions\":[\n {\n \"type\":\"postback\",\n \"title\":\"Help\",\n \"payload\":\"DEVELOPER_DEFINED_PAYLOAD_FOR_HELP\"\n },\n {\n \"type\":\"postback\",\n \"title\":\"Start a New Order\",\n \"payload\":\"DEVELOPER_DEFINED_PAYLOAD_FOR_START_ORDER\"\n },\n {\n \"type\":\"web_url\",\n \"title\":\"View Website\",\n \"url\":\"http://petersapparel.parseapp.com/\"\n }\n ]\n }", ParameterType.RequestBody); | |
IRestResponse response = client.Execute(request); |
7th Feb, 2018 https://www.facebook.com/events/181584245945961
Event Slides: https://docs.google.com/presentation/d/1aQIWgrwb-JypECEXMbetUV9PdKnUHqjeeBPnN9SLIwg/edit?usp=sharing
If you don't know what GSoC is, you may find previous session's slides and gists helpful.
I'd recommend to read this post as well (skipped in the session).
Orgainization | [coala] | |
Project name | Enhance coala-quickstart | |
Primary repository | [coala-quickstart] | |
Project Mentors | Adhityaa, Zatreanu Adrian-Gabriel | |
Project Page | [Summer of Code Project Page] | |
Status | Completed |