This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Hello IPFS!</title> | |
<link rel="stylesheet" href="./style.css" /> | |
</head> | |
<body> | |
<h1>Hello IPFS!</h1> | |
</body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
recipes = { | |
"solar_panel": { | |
"type": "craft", | |
"ingredients": { | |
"input": [ | |
"coal_dust", | |
"glass", | |
"coal_dust", | |
"glass", | |
"coal_dust", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
recipes = { | |
"recipe": { | |
"name": "solar_panel", | |
"type": "craft", | |
"ingredients": { | |
"input": [ | |
"coal_dust", | |
"glass", | |
"coal_dust", | |
"glass", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//input sensor reading | |
//make decision based on sensor reading | |
//do one of below actions: | |
//to drive straight both wheels move forward at same speed | |
//to drive reverse both wheels move back at same speed | |
//to turn left the left wheel moves in reverse and the right wheel moves forward |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
""" | |
Program or module info | |
""" | |
__version__ = "0.1" | |
__author__ = "Gio d'Amelio([email protected])" | |
__license__ = "Public Domain" | |
import market as marketsim |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
""" | |
Simple python stock market day trader | |
""" | |
__version__ = "0.1" | |
__author__ = "Gio d'Amelio([email protected])" | |
__license__ = "Public Domain" | |
import pystock |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
""" | |
Program or module info | |
""" | |
__version__ = "0.1" | |
__author__ = "Gio d'Amelio([email protected])" | |
__license__ = "Public Domain" | |
def main(): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
""" | |
Program or module info | |
""" | |
__version__ = "0.1" | |
__author__ = "Gio d'Amelio([email protected])" | |
__license__ = "Public Domain" | |
import sys |
NewerOlder