Click on "LeadWithWords" above to follow us! As you build your network, you will find yourself responsible for not just connecting yourself but also making connections on behalf of others. It all come
Bill Gates and the president of General Motors were having lunch. Gates boasted of the innovations his company had made. “If GM had kept up with technology the way Microsoft has, we’d all be driving $
wrote above that PostgreSQL does not store the row count in the table.
Maintaining such a row count would be an overhead that every data modification has to pay for a benefit that no other query can reap. This would be a bad bargain. Moreover, since different queries can see different row versions,…
pytest import mechanisms and sys.path / PYTHONPATH Import modes pytest as a testing framework needs to import test modules and conftest.py files for execution. Importing files in Python (at least unti
$ bfg --strip-blobs-bigger-than 100M --replace-text banned.txt repo.git an alternative to git-filter-branch The BFG is a simpler, faster alternative to git-filter-branch for cleansing bad data out of
The git filter-branch command and the BFG Repo-Cleaner rewrite your repository's history, which changes the SHAs for existing commits that you alter and any dependent commits. Changed commit SHAs may
We have a new Security Header!! Feature Policy will allow a site to enable or disable certain browser features and APIs in the interest of better security and privacy. Let's take a look! Feature Policy Feature Policy is being created to allow site owners to enable and disable certain web platform…
As you might have read in our introductory article about static code analysis , there are a lot of reasons why you should implement it in your development workflow. When programming in Python, there a
In a recent interview , Joel Spolsky (the co-founder of StackOverflow) declared that the three things he would advise new programmers to learn are economics, writing and C programming. At first glance
Robert Roskam Jun 3, 2016 · 3 min read Lots of packages get a lot of love like django-rest-framework and wagtail , and rightfully so, they’re awesome! But I wanted to give some less well know ones som
Have you ever had the experience of looking back on your week with the sinking feeling that you didn’t get as much done as you’d hoped? When building a successful career or a business of your own, you
I recently took (and passed!) the Amazon Web Services – AWS Certified Solutions Architect certification. It was a great way to get immersed in how Amazon Web Services work from a Technology Architectu
Here are some more Sample Questions* for AWS Certification for AWS Certified Solution Architect. Answers with explanations are at the bottom. If you have not yet attempted part-1 of sample questions,
Nesting resources 5 February 2007 — 2-minute read The RESTful routes feature in Rails makes it really, really simple to nest resources within each other. Just give a block to the “map.resources” call,
Cache is all you need What is cache More than a formal definition, I think that the best way of thinking about cache is an result from an operation ( data ) that gets saved ( cached ) for future use.
Last weekend, the Python Hackathon Düsseldorf took place at trivago’s office. Although we were only five people we had a lot of fun.I took the chance to brush up my Python skills a little bit. Also I
Albert Sheu’s answer to:Are loaded objects or object IDs passed around? Are there multiple roundtrips to memcache (or to the DB) for the same object within the scope of a single request? How are models expressed? How is cache invalidation handled? Are there any particularly notable…