The requests library is the most popular python library for sending HTTP requests. As a normal part of RESTful application development you'll often want to see exactly what you're sending to the server including request headers and payload. [Continue reading...] Better Debug Logging for The Python Requests Library The post Better Debug Logging for The Python Requests Library appeared first on BHoey .
|
|
UPDATE: Flat Habits now has its own page at flathabits.com . I've been wanting org to keep track of my daily habits for a little while. The catalyst: reading James Clear's wonderful Atomic Habits (along with plenty of lock-down inspiration). As much as I live in Emacs and org mode, it just wasn't practical enough to rely on my laptop for tracking habits. I wanted less friction, so I've been experimenting with building a toy app fo....
|
|
Cypress is a popular tool for end-to-end testing for web applications. Often you want to be sure you did not forget console messages or did not introduce errors in your final application. This article shows how to test for that in Cypress.
|
|
The Quarantine Sessions returns with "Folsom Prison Blues," and the truth of whether Johnny Cash ever went to prison.
|
|
In March 1970, Dr. John Conway sent the “fatal” (as he later referred to it) letter to Martin Gardner. He was submitting ideas for Gardner’s Mathematical Games column in Scientific American. The New York Times features a good article on the fifty-year parable of The Game of Life. What’s appreciable, they asked some of Life’s most steadfast friends to reflect upon its influence and lessons over half a century. Among them, Brian Eno, who, b..
|
|
Beware of icy conditions on the trail. Last weekend’s snowfall is still present on the trail once you get a couple of miles from the parking lot, and while the snow isn’t deep, it has been compacted into slippery ice in many places. The parking lot and road are free of snow, so the actual drive there is no problem. The gravel road is in a good condition, with just the occasional potholes to watch out for. We arrived just after 10am on a S..
|
|
Beware of icy conditions on the trail. Last weekend’s snowfall is still present on the trail once you get a couple of miles from the parking lot, and while the snow isn’t deep, it has been compacted into slippery ice in many places. The parking lot and road are free of snow, so the actual drive there is no problem. The gravel road is in a good condition, with just the occasional potholes to watch out for. We arrived just after 10am on a S..
|
|
export DEVELOPER_DIR=$(xcode-select --print-path) /Applications/Xcode.app/Contents/SharedFrameworks/DVTFoundation.framework/Versions/A/Resources/symbolicatecrash crashlog.crash MyFoo.app.dSYM
|
|
Stochastic Gradient Descent and Deploying Your Python Scripts on the Web
-
realpython.com
-
5 years ago
-
eng
Do you know the initial steps to get your Python script hosted on the web? You may have built something with Flask, but how would you stand it up so that you can share it with others? This week on the show, we have the previous guest Martin Breuss back on the show. Martin shares his recent article titled, "Python Web Applications: Deploy Your Script as a Flask App". David Amos also returns, and he's brought another batch of PyCoder's Weekl..
|
|
I’m a space junkie. So tonight, like all the other space junkies on the planet, I watched in awe as Perseverance seamlessly and beautifully landed on the surface of Mars. This is a phenomenal achievement. Of course, I will eagerly follow her 1 progress. As I was following the live broadcast, I wondered: What kind of hardware and software runs all this incredible technology? It was launched in 2020, so it must be some cutting-edge stuff..
|
|
Life Hacking: Adding Geographical Filters to Flat Search Websites with Turf.js
-
geo.rocks
-
5 years ago
-
eng
Flat hunting can be a big pain - particularly for European metropoles. Most flat search platforms already offer good filter options but until now, I didn’t see any with custom geographic filters. Apart from drawing your own area of interest on a map, you seldomly find filters such as “How far is the next metro stop?” or “How close are important facilities?”. This article will show a quick and universal workaround for custom geographic fil..
|
|
WFH Day 340 During my lunch break, I took a walk and visited my friends who own a coffee shop in our town. Yesterday, they told me that they would get their vaccination today. I was amazed to hear that since my healthcare provider is sending me weekly updates about the actual vaccination progress and that they vaccinate people over 75. It looks like I still have to wait a bit longer since they don’t have enough vaccines for this age group.
|
|
I came back to reading Shirley Jackson almost by coincidence. I had just finished watching The Haunting of Hill House, and, as I always do with stuff that tickles my curiosity, I was doing a little research on it. That’s how I learned that the TV Series is loosely based on a novel by the same name written by… Shirley Jackson. Still imbued by the TV Series’s atmospheres, now knowing about its connection with Jackson, I was ready for anothe..
|
|
One of the immense difficulties I have faced while running production engineering-type teams is how much-unplanned work can drop into their daily workload. I am still trying to solve the root problem of why we get so much unplanned work but the first item on my list is to find a way to measure it first. Measure, then tackle is my go-to operating mode. Many engineering teams face the challenge of balancing planned development work with unpla..
|
|
Using Google’s Flutter SDK with BLoC’s cubits is a great way to quickly and easily build a reactive application that can run natively on a variety of platforms including Android, iOS, web, and desktop.
|
|
Geocaching is a world-wide game where people search for hidden treasures. MapTiler provides the official website data for the background map that shows where all these boxes are hidden.
|
|
This is my attempt to review everything that I made happen, and that happened to me in 2020. It is crucial to remind yourself of the things you regularly did. Writing this post was very gratifying.
|
|
This is our newest blog series that highlights the different ways the Snyk API is leveraged by our customers. Snyk’s extensibility and API enable developers to tune Snyk’s security automation to their specific workflows, ensuring consistency in both developer experience and platform governance.
|
|
We are excited each time we learn of a new use case, and are committed to improving the experience our customers have with the Snyk API.
|
|
Not sure how to structure a config file? Try answering questions rather than trying to come up with categories
|
|
Not sure how to structure a config file? Try answering questions rather than trying to come up with categories
|
|
Not sure how to structure a config file? Try answering questions rather than trying to come up with categories
|
|
How to change the default tap highlight color for Chrome mobile
-
hartenfeller.dev
-
5 years ago
-
eng
Chrome on mobile has a default accessibility feature that automatically shows a blue overlay when a touchscreen user taps on a clickable element. This post shows how to change the color or disable it completely.
|
|
Postgres regex search over 10,000 GitHub repositories (using only a Macbook)
-
devlog.hexops.org
-
5 years ago
-
eng
In this article, we share empirical measurements from our experiments in using Postgres to index and search over 10,000 top GitHub repositories using pg_trgm on only a Macbook. This is a follow up to “Postgres Trigram search learnings” , in which we shared several learnings and beliefs about trying to use Postgres Trigram indexes as an alterative to Google’s Zoekt (“Fast trigram based code search”). We share our results, as well as ....
|
|
Postgres regex search over 10,000 GitHub repositories (using only a Macbook)
-
devlog.hexops.org
-
5 years ago
-
eng
In this article, we share empirical measurements from our experiments in using Postgres to index and search over 10,000 top GitHub repositories using pg_trgm on only a Macbook. This is a follow up to “Postgres Trigram search learnings” , in which we shared several learnings and beliefs about trying to use Postgres Trigram indexes as an alterative to Google’s Zoekt (“Fast trigram based code search”). We share our results, as well as ....
|