Internet was dropping packets like crazy (up to 50% packet loss). My ISP's tier-1 tech support didn't even know what the ping tool was.
I've worked tech support for a telco before, I know what the quality of the training is like because of the ridiculous turnover, so I get it, but geez...
Fortunately, it's all been resolved now.
like this
reshared this
Jon's Minetest Server Notices reshared this.
reshared this
reshared this
S3 E22 Soka Gakkai International: Born and Raised
In this episode of the Cult Vault podcast, host Kacey speaks with Jay, a former member of Soka Gakkai International (SGI), who shares her personal experiences gSpreaker
Dear @Benny,
We have provided you with many cat toys that you may play with any time you like.
My razor is not one of them.
Benny doesn't like this.
Shannon Prickett reshared this.
Woo hoo!
I jusy fixed a seam that was going in one of the pairs of sweatpants I wear for bumming around the apartment.
Was it a neatly done fix? No.
Will anyone ever see it though? Also no.
Hoping to keep working on stupid little stuff like this with the sewing machine to build up my confidence/skill to be able to tackle stuff that actually matters if it's done well.
Shannon Prickett reshared this.
Been looking for an alternative to Google Maps. Organic Maps (OpenStreetMap) is great, but it doesn't know the bus routes in my city.
I remembered that the GRT (local transit) website had a trip planner that I used to use in the pre-Google days. Decided to give that a go again.
Turns out they're just using Google Maps now. Understandable, but disappointing.
The Transit app is good, and while closed source is Canadian.
Transit - the best app for buses and trains
The world's most accurate transit app. Never miss a bus or train again on our 600+ supported cities, including New York, Paris, London, Montreal and moretransitapp.com
Jonathan Lamothe likes this.
like this
reshared this
I have acquired what I believe to be a high-quality hand-me-down sewing machine from my mother-in-law. Now, apart from thread and fabric I only need to have one more thing...
...any idea whatsoever how to use it.
S3 E21 Inside the Minds of Two Detectives
In this episode of the Cult Vault podcast, host Kacey speaks with former detectives Scott Rogan and Peter Hogan, who share their experiences in the police forceSpreaker
like this
Also, do lists in #Python seriously not have a .map
function?
Edit: Ohhh... I expected it to be a method on the list object itself.
Tech Cyborg reshared this.
Python map() function
The map() function is used to apply a given function to every item of an iterable, such as a list or tuple, and returns a map object (which is an iterator). Let's start with a simple example of using map() to convert a list of strings into a list ofGeeksforGeeks
Jonathan Lamothe likes this.
@flyingsquirrel Yup. And there's a multiprocessing version which can be useful if you're doing a very large csv but you probably want imap() for that one.
docs.python.org/3/library/mult…
multiprocessing — Process-based parallelism
Source code: Lib/multiprocessing/ Availability: not Android, not iOS, not WASI. This module is not supported on mobile platforms or WebAssembly platforms. Introduction: multiprocessing is a package...Python documentation
If you're looking for a function that applies another function to each element of a list and aggregates the results, it'd typically be done with a list comprehension:
[your_function(item) for item in your_list]
But you can also use list(map(your_function, your_list)) if you want. Basically, it's a built-in function rather than a method of the list class.
There's also a whole discussion to be had about lists vs generators and why you often wouldn't even need to make a list in the first place, but I won't get into that unless you want to know more.
Jonathan Lamothe likes this.
reshared this
Penfount • Pen Community reshared this.
Fun fact: VPNs stop working when you forget to pay the bill.
#ADHD is fun.
like this
Shannon Prickett reshared this.
S3 E20 Extreme Evangelicalism in the Modern Age
In this episode of the Cult Vault podcast, host Kacey speaks with Cynane Shay, who shares her journey growing up in a fundamentalist evangelical Christian houseSpreaker
#FountainPens
reshared this
TIL that tuning a glass pen with sandpaper (even the one included with the pen) should only be attempted by an experienced user.
Also, #today I gained a lot of experience in this area out of necessity after the fact. Still, I shan't be doing that again for a while.
Penfount • Pen Community reshared this.
More dead tree spam from the Conservative party addressed to my father (who has never lived here). This one was labelled "compliance request" with a red military stencil looking font that said "URGENT: CODE RED". This speaks to the way they percieve the intelligence of their supporters. I weep for the state of politics in this country.
It got a big fat "return to sender".
Is there a way to tell #Emacs #org-mode to omit yhe TOC and headline numbers when exporting to a text or markdown file? I'm trying to implement a #JohnnyDecimal system, so I'm supplying my own numbers and the 00.00-index.org
file essentially is the table of contents.
Edit: Because not all replies federate, here's the solution I ended up with:
#+STARTUP: overview indent nonum
#+OPTIONS: toc:nil
like this
Jonathan Lamothe likes this.
Since the manual doesn't include examples, it can be confusing as to how to actually use those settings. For this case, add the following line:
#+OPTIONS: toc:nil num:nil
Jonathan Lamothe likes this.
Jonathan Lamothe
in reply to Jonathan Lamothe • •This begs an ettiquette question: what is the correct response to the following conversation that doesn't involve being an asshole?
Tech: Your connection seems fine on my end.
Me: It can't be. I'm getting about 25-50% packet loss.
Tech: How do you know that?
Me: The ping tool.
Tech: What's that?
After a long pause, my response was "a very basic network diagnostic tool." That came across more condescendingly than I had intended, but I couldn't come up with a better way of saying it.
like this
Adam Hunt likes this.
kat
in reply to Jonathan Lamothe • • •Jonathan Lamothe likes this.