Explore >> Select a destination


You are here

www.adamconrad.dev
| | lukesingham.com
10.7 parsecs away

Travel
| | Grokking Algorithms is a beautifully formatted book that explains complex material simply using pictures, analogies and high level practical explanations. This post is a review and summary of the Grokking Algorithms book.
| | thepythoncorner.com
14.7 parsecs away

Travel
| | Hi guys, have you ever wondered how can Python dictionaries be so fast and reliable? The answer is that they are built on top of another technology: hash tables. Knowing how Python hash tables work will give you a deeper understanding of how dictionaries work and this could be a great advantage for your Python understanding because dictionaries are almost everywhere in Python. Hash Functions Before introducing hash tables and their Python implementation you have to know what is a hash function and how it works. A hash function is a function that can map a piece of data of...
| | acorwin.com
12.9 parsecs away

Travel
| | Have you ever thought, "huh, I wonder how easily I could DDoS myself despite all the hard work of library and framework authors?" In that case, have I got news for you! In the vein of Uses and Abuses Of Python's Excessive Dynamism, I have found a way to DDoS yourself via hash collision in...
| | jeremykun.wordpress.com
104.9 parsecs away

Travel
| This post is a sequel toFormulating the Support Vector Machine Optimization Problem. The Karush-Kuhn-Tucker theorem Generic optimization problems are hard to solve efficiently. However, optimization problems whose objective and constraints have special structureoften succumb to analytic simplifications. For example, if you want to optimize a linear function subject to linear equality constraints, one can compute...