RSSAmplifier

Blog

Jack Stouffer's Blog

jackstouffer.comRSS feed ↗7 posts

Latest 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.

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.

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.

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.

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.

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 dateutil library to D. I did this for a couple of reasons:

Using D and std.ndslice as a Numpy Replacement

Today, the new addition to D's standard library, std.ndslice, was merged into master, and will be included in the next D release (v2.070, which is due this month). 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…