One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| import Tkinter as tk | |
| class SampleApp(tk.Tk): | |
| def __init__(self, *args, **kwargs): | |
| tk.Tk.__init__(self, *args, **kwargs) | |
| lb = tk.Listbox(self) | |
| lb.insert("end", "one") | |
| lb.insert("end", "two") | |
| lb.insert("end", "three") | |
| lb.bind("<Double-Button-1>", self.OnDouble) |
A Pen by Chaitanya Mukka on CodePen.
We subscribe to the Git Featrue Branch workflow, briefly described in that link.
In practice, it works as follows:
git checkout developmentgit pull origin development| LOAD DATA LOCAL INFILE 'uniq.csv' | |
| INTO TABLE tblUniq | |
| FIELDS TERMINATED BY ',' | |
| ENCLOSED BY '"' | |
| LINES TERMINATED BY '\n' | |
| IGNORE 1 LINES | |
| (uniqName, uniqCity, uniqComments) |
| it("no db exists", function(done){ | |
| testConfig = { | |
| db: "eval", | |
| user: "root" | |
| }; | |
| expect(input.sqlContents(testConfig, table)).to.exventually.throw("No contents in table"); | |
| }); | |
| var assignTeamMarks = function(idNo, cb) { | |
| var fetchTeamID = | |
| "SELECT teamId FROM " + | |
| tables.team + | |
| " WHERE memberID = '" + | |
| idNo + | |
| "'"; | |
| connection.query(fetchTeamID, function(err, rows, fields) { | |
| //if(rows.length!=0) |
| /* | |
| * linux/net/sunrpc/timer.c | |
| * | |
| * Estimate RPC request round trip time. | |
| * | |
| * Based on packet round-trip and variance estimator algorithms described | |
| * in appendix A of "Congestion Avoidance and Control" by Van Jacobson | |
| * and Michael J. Karels (ACM Computer Communication Review; Proceedings | |
| * of the Sigcomm '88 Symposium in Stanford, CA, August, 1988). | |
| * |