europa | 11 years ago | on: Python idioms I wish I'd learned earlier
europa's comments
europa | 11 years ago | on: Python idioms I wish I'd learned earlier
whereas dic.get with default value keep returning you the default value without touching your dict.
europa | 11 years ago | on: Ask HN: Anyone making a living from Desktop apps?what had been changed?
europa | 11 years ago | on: Show HN: Free, anonymous coding interview practice
europa | 12 years ago | on: Finding Your First Clients As A Freelancer
europa | 12 years ago | on: After working +1200 hours in oDesk
If anybody looking to get into Odesk, this is my advice on how to get over the chicken and egg problem(You are trying to build your work history while clients looking for your work history).
Find projects that can be partially or even fully prototyped and send the live link in the bidding. If the project is genuine most clients will bite. If they don't , write off your effort as marketing expense!
Also never bid for a project if you think you cannot get a 5 star rating after the delivery.
You can see my odesk profile below , all my ratings are 5 star. No surprise!
europa | 12 years ago | on: Magnus Carlsen is World Chess Champion
europa | 12 years ago | on: Ask HN: How much recurring income do you generate, and from what?
europa | 12 years ago | on: Ask HN: How much recurring income do you generate, and from what?
pass-through : Consultants not employed by my company but work for my clients.
europa | 12 years ago | on: NASA to test laser communications link with new lunar mission
europa | 13 years ago | on: Sh.py
europa | 14 years ago | on: Show HN: My first iPhone app - Family Matters (using Parse)
europa | 14 years ago | on: Is it better to learn JavaScript or Python as a first language?
europa | 14 years ago | on: The SendHub API: Heroku for Twilio
europa | 14 years ago | on: Ask HN: What backup strategy do you use for your websites and databases?
europa | 15 years ago | on: What are the missing features in App Engine?
europa | 15 years ago | on: What are the missing features in App Engine?
For example I want to deploy an app on appengine for a user without asking him his userid and a password.
Use case: User comes to a site. Search for available applications to install. Click install; give permission, application installed to his appengine account.
europa | 15 years ago | on: What are the missing features in App Engine?
europa | 15 years ago | on: Ask HN: Freelancer? Seeking freelancers? (April 2011)
europa | 15 years ago | on: For Indian SaaS startups, alternative to Paypal for recurring payments?
from collections import defaultdict s = 'mississippi' d = defaultdict(int) for k in s: d[k] += 1 d.items()
[('i', 4), ('p', 2), ('s', 4), ('m', 1)]