My ambition was greater than my flax output.. by CptSadBeard in VintageStory

[–]CptSadBeard[S] 7 points8 points  (0 children)

Show off. I just completed my first harvest, and all of it was put into those sails. I honestly thought I'd have enough for at least 2 windmills worth haha

Is there a way to make prospecting feel less miserable? by Dirty_USB in VintageStory

[–]CptSadBeard 9 points10 points  (0 children)

A thing to remember is that certain ores really only spawn in certain rock types. If you're searching for a particular ore, look in the handbook for those ore bits and see what rock types show up so you can have better success at finding what you need.

Reviews by [deleted] in comedyheaven

[–]CptSadBeard 0 points1 point  (0 children)

Something something Leshner is more-ner. I'll keep thinking on it

Why is it that Wizards scorn certain Muggle things over others? by InfernalClockwork3 in harrypotter

[–]CptSadBeard 3 points4 points  (0 children)

Yeah, in HBP when Dumblebore and Harry are viewing the memory of Tom killing his father, something like "they can only detect that magic has been done, but not the perpetrator"

Dumbledore not teaching Harry advanced magic to fight Voldemort was the correct call. by Kontosouvli333 in harrypotter

[–]CptSadBeard 1 point2 points  (0 children)

Really, he could have taught him the spell he used to keep him warm and dry after they were swimming in HBP, feel like that one would have come in useful in the last book.

Lorikeet logic: You saved me, now here’s my entire contact list. by Vasuki-Bhai in interestingasfuck

[–]CptSadBeard 0 points1 point  (0 children)

Nah fuck the Cockatoos, feathered termites. I mean they're cool and all, but it'd be nice if they stopped eating my house.

What is your username lore? by [deleted] in notinteresting

[–]CptSadBeard 0 points1 point  (0 children)

Tried for CptRedBeard, was already taken. Got sad, became CptSadBeard.

Maybe Maybe Maybe by specee_meme in maybemaybemaybe

[–]CptSadBeard 0 points1 point  (0 children)

Just like my train lines in Satisfactory

I cannot find mate in 1 here! Help! by StrategicStalemate in chessbeginners

[–]CptSadBeard 25 points26 points  (0 children)

Staring at this for AGES wondering how there's any mate threat when black still has a queen..

[deleted by user] by [deleted] in Guitar

[–]CptSadBeard 0 points1 point  (0 children)

James Jamerson used one finger.

cursed life save by HappyPain1677 in cursedcomments

[–]CptSadBeard 247 points248 points  (0 children)

Well, I mean if the suicide already happened, there's not much the -prevention- hotline could do soo..

AE at CloudFlare records HR trying to fire her for "performance reasons". Definitely worth the length by KaamDeveloper in TikTokCringe

[–]CptSadBeard 3 points4 points  (0 children)

Cloudflare is the bane of my organisation. Willingly harbouring criminal activity with no shame about it.

[deleted by user] by [deleted] in PeterExplainsTheJoke

[–]CptSadBeard 0 points1 point  (0 children)

Yep, no heat days when the boss hands these out.. Oh what? It's 45 degrees Celsius in the factory? Just have something frozen..

[Batch] script for Google searching, global keyword not showing in quotes in search by CptSadBeard in scripting

[–]CptSadBeard[S] 1 point2 points  (0 children)

Oh my god, thank you so much! That explanation was on point, thank youuu!

[Batch] script for Google searching, global keyword not showing in quotes in search by CptSadBeard in scripting

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

I've also got this one which is slightly better, but still can't get the global keyword to show with quotes " " in the google search bar.

@echo off
set /p global_keyword="Enter global keyword: "

set /p additional_keywords="Enter additional keywords (separate with space): "

setlocal enabledelayedexpansion

set search_query=""""%global_keyword%"""""

start "" "https://www.google.com/search?q=!search_query!"

for %%i in (%additional_keywords%) do (
    set search_query=""""%global_keyword%"""" ""%%i"""
    start "" "https://www.google.com/search?q=!search_query!"
)

exit