You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
Instantly share code, notes, and snippets.
Avi Perl
avi-perl
Developer interested in custom full-stack software design and implementation, usually on the web. Frequently in Python, ideally in Kotlin, but sometimes in PHP.
A hand made aluminum pant clip for mid-sized cameras.
DIY Camera Clip For Mirrorless & Film Cameras
Summery: An oversized pen-clip like attachment can be made with simple tools to attach mid-sized cameras to a pant pocket, removing the need for camera straps and other complicated hardware alternatives.
After 6 years of total burnout from a career in commercial photography, an interest in taking photos has started to grow on me, this time in the form of film photography and film development. I've got a long term goal of taking photos of my children, developing the film, printing the photos in a darkroom, and then hanging them in hand built frames. (Full-stack photography?) To that end, I've started to take a camera with me when I take my children out to places.
My goal
I'd like to be able to grab a camera and keep it with me while playing in a park, walking around a musium, and doing all the activities that dads do with their kids. It must not get in the way, must be comfortable, and be quick to access and put away. Modifying the camera is not a
Convert Google Voice Takeout files into a spreadsheet
Google Takeout to CSV
I was asked by someone for help with the
following: They had used Google Takeout to
download voicemails from Google Voice
and they now wanted some metadata about the
voicemails in a CSV.
The following script will accomplish this
task on windows without any need for
Django: Bulk update any field in any model with a generic management script!
Generic Bulk Updating
After writing up a number of CLI scripts to update various model values in a Django app, it occurred to me that a generic script could be written that would work for all of my purposes. What follows is a simple catch-all script that can be used in any django app as is!
The script works by taking in the following values:
Natural integration of business logic with a Django Model
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Django: Scheduled user activation/deactivation without a background task.
Auto Expiring Django Users
When there is a need to give a user temporary access in Django, typically, you will need to enable their user and then expire their user manually.
This creates an issue as it relies on remembering to disable the user. One way to deal with this is to save the expiration time somewhere and have
a script running that will expire users, however this creates another weak point in the app and a critical scheduled job to make sure is always running.
My Solution
In an app where security was critical and where such a scheduled script would have been subject to audits, I found this method to work perfectly:
Rather than use a boolean to indicate active status, use datetimes for active start and end times and let Django figure out if the user is active based on the current time.
Using Python `namedtuple` objects to handle CSV rows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
My attempt to make a HebrewString object, a string representing hebrew text that you can slice and dice despite extra Unicode characters.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Convert a pandas.DataFrame object into a rich.Table object for stylized printing in Python.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters