Blog Posts

Generating Brute Force Word Lists From Personal Info

If you have a specific target in mind for your brute force attack, you can greatly increase your odds of success with personal information.

Read more

Use Machine Learning To Increase Sales From Your Predictable Customers

Using machine learning and Python, we can find customers with predictable month to month patterns and target our sales team based on those patterns.

Read more

Simple Web Design Tips and Tricks For Programmers

Your site can no longer afford to have “programmer design”. Here are some of the fundamentals I’ve learned over the years to keep my designs looking professional.

Read more

Talk: Intro to Flask

I had the opportunity two weeks ago to give a lightning talk at PyOhio. I had five minutes to give a talk on literally anything I wanted, so I talked about Flask.

Read more

D's Auto Decoding and You

One feature of D that is confusing to a lot of new comers is the behavior of strings in relation to range based features like the foreach statement and range algorithms. In this post, I will detail the practice of auto decoding and some of its pitfalls.

Read more

My Experience Porting Python Dateutil's Date Parser to D

Over the past two weeks, I have been working to port the excellent date string capability of the date util library to D. I did this for a couple of reasons:

Read more

Using D and std.ndslice as a Numpy Replacement

Today, the new addition to D's standard library, std.ndslice, was merged into master. std.ndslice is multidimensional array implementation, not unlike Numpy, with very low overhead, as it's based on D's concept of ranges which avoids a lot of copying and allows for lazy generation of data. In this article, I will show some of the advantages std.ndslice has over Numpy and why you should consider D for your next numerical project.

Read more