Skip to content

Instantly share code, notes, and snippets.

View BlizzardBlue's full-sized avatar
"Level UP!"

JiYun Kim BlizzardBlue

"Level UP!"
  • 베이스랩스
  • Seoul, South Korea
View GitHub Profile
@BlizzardBlue
BlizzardBlue / StatusCrowdsale.sol
Created June 29, 2017 18:00
StatusCrowdsale.sol
pragma solidity ^0.4.11;
/// @dev `Owned` is a base level contract that assigns an `owner` that can be
/// later changed
contract Owned {
/// @dev `owner` is the only address that can call a function with this
/// modifier
modifier onlyOwner() {
@BlizzardBlue
BlizzardBlue / WeirdMorning.py
Last active April 26, 2016 07:01
Shouts out "모닝모닝" at the speed of light.
# -*- coding: utf-8 -*-
import requests
import json
import time
from decimal import *
token = 'place your Web API token here' # https://api.slack.com
api_url = 'https://slack.com/api/chat.postMessage'
data = {
'token': token,