Skip to content

Instantly share code, notes, and snippets.

View kwikiel's full-sized avatar

Kacper Wikieł kwikiel

View GitHub Profile

Effective Engineer - Notes

What's an Effective Engineer?

  • They are the people who get things done. Effective Engineers produce results.

Adopt the Right Mindsets

Effective Engineer - Notes

What's an Effective Engineer?

  • They are the people who get things done. Effective Engineers produce results.

Adopt the Right Mindsets

Keybase proof

I hereby claim:

  • I am kwikiel on github.
  • I am kwikiel (https://keybase.io/kwikiel) on keybase.
  • I have a public key ASC1BAzJ-JJa55GqJthuTDeEXnUq80gFZVyP7ro7uDC_mQo

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
@kwikiel
kwikiel / simple.sol
Created August 17, 2016 15:30
simple.sol
contract SimpleStorage {
uint storedData;
function set(uint x) {
storedData = x;
}
function get() constant returns (uint retVal) {
return storedData;
}

Contract Killer 3

Revised date: 07/11/2012

Between us [company name] and you [customer name]

Summary:

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.

@kwikiel
kwikiel / criteria.txt
Created October 31, 2015 16:07 — forked from mjhea0/criteria.txt
Hiring criteria: looking for the ability to …
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
@kwikiel
kwikiel / forex.py
Last active August 29, 2015 14:06 — forked from JerzySpendel/forex.py
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
@kwikiel
kwikiel / charter.py
Created September 5, 2014 11:42 — forked from anonymous/charter.py
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>