Skip to content

Instantly share code, notes, and snippets.

View giovapanasiti's full-sized avatar
🎯
Focusing

Giovanni Panasiti giovapanasiti

🎯
Focusing
View GitHub Profile
@giovapanasiti
giovapanasiti / .hyper.js
Created April 7, 2020 10:37
$HOME/.hyper.js
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',
{
// A File Icon Preferences – User
// ================================================================
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
// ! PLEASE RESTART SUBLIME TEXT FOR THESE CHANGES TO TAKE EFFECT !
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
//"color": "#26a2c1",
//"color_on_select": "#FFF",
@giovapanasiti
giovapanasiti / example-contract.solidity
Last active January 11, 2018 14:55
First Smart Contract Example with comments
pragma solidity ^0.4.17;
// specify the version of Solidity that our code is written with
contract Inbox {
// define a new contract (almost identical to a class) that will
// have some number of methods and variables
string public message;
// - storage variables:
// declares all of the instance variables (and their types)