Skip to content

Instantly share code, notes, and snippets.

View avadhootkulkarni's full-sized avatar

Avadhoot avadhootkulkarni

View GitHub Profile
@avadhootkulkarni
avadhootkulkarni / PY0101EN-1-1-Types.ipynb
Created September 6, 2019 15:05
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Keybase proof

I hereby claim:

  • I am avadhootkulkarni on github.
  • I am avad (https://keybase.io/avad) on keybase.
  • I have a public key ASD7YcfdLziA9TAmvI1Ukxm-iXa1RzJThVOrFJhmrVMyAAo

To claim this, I am signing this object:

@avadhootkulkarni
avadhootkulkarni / yourToken
Last active May 2, 2018 08:38
Smart Contract for minting your own token on Ethereum blockchain - yourToken.sol
pragma solidity ^0.4.21; //tells that the source code is written for Solidity version 0.4.21 or anything newer that does not break functionality
contract yourToken {
// The keyword "public" makes those variables readable from outside.
address public minter;
// Events allow light clients to react on changes efficiently.
mapping (address => uint) public balances;
@avadhootkulkarni
avadhootkulkarni / index.html
Last active October 4, 2020 16:37
MailChimp Signup Form - Horizontal
<div id="mc_embed_signup"><form id="mc-embedded-subscribe-form" class="validate" action="///indorse.us15.list-manage.com/subscribe/post?u=93f666ec18288ad384d11f649&amp;id=7f298cf380" method="post" name="mc-embedded-subscribe-form" novalidate="" target="_blank">
<div id="mc_embed_signup_scroll">
<!-- Text Input Field -->
<div class="mc-field-group">
<input id="mce-EMAIL" class="required email" name="EMAIL" type="email" placeholder="Your Email" /> <input id="mc-embedded-subscribe" class="button" style="font-family: roboto; " name="subscribe" type="submit" value="Subscribe" />
</div>
<!-- /Submit Button -->
@avadhootkulkarni
avadhootkulkarni / bowling.py
Last active August 29, 2015 14:21
simple 200 score bowling script in python
print "Welcome to Bowling single player game."
print """
\nRules
\nYou're given 10 chances.
\nRecord the score once you bowl.
\nIf you hit a 10 i.e. have a strike, you get one more chance to bowl.
\nExcited? Let's get started.
"""
prev_score = 0