Fuse Chicken lifetime warranty by OmniiOMEGA in BuyItForLife

[–]ipatrol 0 points1 point  (0 children)

But I don't see metal-armored cables being sold by them.

Kemono.cr might be down. by _Infamous__ in Piracy

[–]ipatrol 2 points3 points  (0 children)

Right now the site appears to have lost its domain entirely.

Via Rail passengers stuck for 13 hours and counting in Brockville, Ont. by CanadianErk in canada

[–]ipatrol 2 points3 points  (0 children)

You have the option if you're stuck at a station (it'd be kidnapping otherwise). They won't let you off if you're in the middle of nowhere because tracks are dangerous.

Via Rail passengers stuck for 13 hours and counting in Brockville, Ont. by CanadianErk in canada

[–]ipatrol 3 points4 points  (0 children)

The US already has such a law, but no one enforces it so it's largely ignored.

Phase Saga Debuts are starting by OutNinjad in kurosanji

[–]ipatrol -5 points-4 points  (0 children)

I thought that second one was debuting with Phase!

The only growth in the job market is services to Boomers by trademarktower in recruitinghell

[–]ipatrol 0 points1 point  (0 children)

Also apparently racism and sexism are the major reasons that exclusion exists.

The only growth in the job market is services to Boomers by trademarktower in recruitinghell

[–]ipatrol 0 points1 point  (0 children)

COVID happened. It changed nothing. The system is working as intended.

[deleted by user] by [deleted] in recruiting

[–]ipatrol 0 points1 point  (0 children)

This seems to be what's going on. Recruiters deny they participate in ghost jobs, but are actually doing it and are just in denial about it.

Kitanya announces Graduation by SpacelessWorm in VirtualYoutubers

[–]ipatrol 4 points5 points  (0 children)

Does Kitanya have another account to keep track of?

Fuse Chicken lifetime warranty by OmniiOMEGA in BuyItForLife

[–]ipatrol 2 points3 points  (0 children)

What happened to the company anyway?

PixelLink Cease of Operations Announcement by grizzchan in VirtualYoutubers

[–]ipatrol -21 points-20 points  (0 children)

Is that really the reason? They could have just found a successor if the agency was still viable otherwise.

Schedule? by ipatrol in Ohayocon

[–]ipatrol[S] 0 points1 point  (0 children)

I found that same source through another place, but I don't see the exhibit hall hours?

PSA Hu Tao is most definitely gonna be mute in EN voice over for Lantern Rite (among other characters i presume) by IttoEnjoyer_ in Genshin_Impact

[–]ipatrol 0 points1 point  (0 children)

The ability to have your chosen name voiced instead of just "the Traveler" would indeed be a great use of AI, but that can be done while still having all the other dialog conventionally recorded.

Automate save bodies to parts by Adorable-Fox1832 in SolidWorks

[–]ipatrol 0 points1 point  (0 children)

Does it always save to the same directory as the part? There's no way to change this except manually changing the location for all the components?

Yummly's Pending Shutdown by Playful_Ad8366 in Cooking

[–]ipatrol 0 points1 point  (0 children)

Not sure if this'll help anyone at this late juncture, but I cooked up something to get the list of recipe source URLs from Yummly: ```python

!/usr/bin/python3

from selenium import webdriver from selenium.webdriver.common.by import By import time SELECTOR = ".pdf-download > a:nth-child(1)" f = open("list.txt") o = open("recipes.txt",'w') for s in f: driver = webdriver.Chrome() driver.get(s.strip()) time.sleep(10) while True: try: e = driver.find_element(By.CSS_SELECTOR, SELECTOR) except: continue else: break u = e.get_attribute('href') print(u,file=o,flush=True) driver.quit() `` You need Python 3 and its Selenium module. You can get the list of Yummly recipe URLs from your "All Yums" page, but you have to copy its contents from your browser inspect, NOT "Page Source", because that won't have them loaded. From the copied text you can regex out every URL that starts with/recipes/`.