- By Edmond Lau
- Highly Recommended 👍
- http://www.theeffectiveengineer.com/
- They are the people who get things done. Effective Engineers produce results.
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 |
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> |
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Hello FB</title> | |
</head> | |
<body> | |
<div id="fb-root"></div> | |
<div id="fb-content"></div> | |
<div> |