- By Edmond Lau
- Highly Recommended 👍
- http://www.theeffectiveengineer.com/
- They are the people who get things done. Effective Engineers produce results.
I hereby claim:
To claim this, I am signing this object:
Basic Nondisclosure Agreement | |
This Nondisclosure Agreement (the "Agreement") is entered into by and between Phoebe Ventures Ltd with its principal offices at London, England ("Disclosing Party") and Marcin Szychowski ("Receiving Party") for the purpose of preventing the unauthorized disclosure of Confidential Information as defined below. The parties agree to enter into a confidential relationship with respect to the disclosure of certain proprietary and confidential information ("Confidential Information"). | |
1. Definition of Confidential Information. For purposes of this Agreement, "Confidential Information" shall include all information or material that has or could have commercial value or other utility in the business in which Disclosing Party is engaged. If Confidential Information is in written form, the Disclosing Party shall label or stamp the materials with the word "Confidential" or some similar warning. If Confidential Information is transmitted orally, the Disclosing Party shall promptly provide a |
contract SimpleStorage { | |
uint storedData; | |
function set(uint x) { | |
storedData = x; | |
} | |
function get() constant returns (uint retVal) { | |
return storedData; | |
} |
Revised date: 07/11/2012
Between us [company name] and you [customer name]
We’ll always do our best to fulfil your needs and meet your expectations, but it’s important to have things written down so that we both know what’s what, who should do what and when, and what will happen if something goes wrong. In this contract you won’t find any complicated legal terms or long passages of unreadable text. We’ve no desire to trick you into signing something that you might later regret. What we do want is what’s best for both parties, now and in the future.
Write a program that does what it’s supposed to do | |
Write idiomatic code | |
Debug a program that you wrote | |
Debug a program someone else wrote | |
Debug the interaction between a system you wrote and one you didn’t | |
File a good bug report | |
Modify a program you didn’t write | |
Test a program you wrote | |
Test a program you didn’t write | |
Learn a new programming language |
Verifying that +incroyables is my Bitcoin username. You can send me #bitcoin here: https://onename.io/incroyables |
import json | |
import requests | |
import os | |
import sqlite3 | |
from datetime import datetime | |
from PyQt4.QtGui import * | |
from PyQt4.QtCore import * | |
import os | |
class Show(QMainWindow): | |
pass |
from bottle import get, post, request, run | |
from test2 import lovechart | |
@get('/login') # or @route('/login') | |
def login(): | |
return ''' | |
<form action="/login" method="post"> | |
Username: <input name="username" type="text" /> | |
Password: <input name="password" type="password" /> | |
<input value="Login" type="submit" /> | |
</form> |