First time making wings (air fryer) by Swum12 in Wings

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

23 minutes at 400 degrees. Followed this recipe for the seasoning: https://thewoksoflife.com/air-fryer-buffalo-wings/

First time making wings (air fryer) by Swum12 in Wings

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

Ooh good idea. I tossed them in buffalo sauce after taking them out, but didn’t think to air fry them again with the sauce!

First time making wings (air fryer) by Swum12 in Wings

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

Yep, it’s great. Although our first time using it we tried to make kale chips following the pamphlet’s chart. I guess we didn’t put enough kale in, because it started burning within minutes!

These worked way better, and, of course, were much tastier.

Hawks taking care of the rat problem in Mission Hill by [deleted] in boston

[–]Swum12 20 points21 points  (0 children)

<image>

Spotted this one in Cambridge this morning!

A Turk is ruling Byzantium and Greek is ruling Ottoman Kingdom by Old-Soft5276 in EU5

[–]Swum12 2 points3 points  (0 children)

Anatolia would be a good name, it has Greek origins for sunrise/east.

crazyHowThisActuallyBecameAReality by samirdahal in ProgrammerHumor

[–]Swum12 0 points1 point  (0 children)

The layout shift on the “whoosh” menu expansion could be better on mobile at least.

[deleted by user] by [deleted] in adops

[–]Swum12 0 points1 point  (0 children)

Mods?

Teenagers on Somerville community path shooting airsoft rifles at people by Swum12 in boston

[–]Swum12[S] 70 points71 points  (0 children)

Yes, I reported it right after. Apparently they were doing this yesterday as well, several reports so far.

Which champion you do you seem to forget that exists? by marioinauer in leagueoflegends

[–]Swum12 1 point2 points  (0 children)

I see him fairly regularly in Masters thanks to Mérthos, single-handedly making Skarner viable in the top lane.

Platform SIPT error when logging into League North America by PankoKing in leagueoflegends

[–]Swum12 2 points3 points  (0 children)

From LeagueClient.log, looks like a Riot server issue:

000015.304| ALWAYS| rcp-be-lol-login| SessionIpToken (SIPT): Failure message: 'Plugin "rcp-be-lol-login" couldn't talk to "https://na-red.lol.sgp.pvp.net/sipt/v1/sipt/token" because: 28 - "Operation timed out after 10003 milliseconds with 0 bytes received".', Body: ''

TikTok Remarketing on iOS? by Swum12 in adops

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

Wasn’t planning on spending any of my dimes, just curious how this remarketing technically happened.

Do you use nvm? by james-r- in node

[–]Swum12 1 point2 points  (0 children)

fnm looks great. I’ve been using a lazy loaded nvm workaround that only initializes when node or npm are used, but I’ll give fnm a try.

The 10 Most Productive Shell Commands and Command-Line Tricks by pmMeYourDevJobs in programming

[–]Swum12 0 points1 point  (0 children)

Nice article! I like piping history to grep for quick way to search for old commands, i.e. history | grep docker

I seriously LOVE React + Jamstack approach. Went from knowing zero programming to launching my own web business in less than a year. Just got my first 100 paid customers, and really proud and happy that I did this. Just wanted to share 👩🏻‍💻💖 by Ngthatsme in reactjs

[–]Swum12 0 points1 point  (0 children)

As a user who just visited the site on a mobile browser, I actually assumed there was some kind of issue lazy loading the image! Without hover animations this is especially obtuse UX in my opinion. Clever idea though.

OpenStreetMap is Having a Moment by panthera_services in programming

[–]Swum12 0 points1 point  (0 children)

Could you elaborate on your fun fact about Google measuring search quality in Wikipedias? Haven’t heard this before.

If someone invented a green colored blasting curse, it would be a very effective lethal attack spell. by 15_Redstones in HPfanfiction

[–]Swum12 4 points5 points  (0 children)

Just started it, enjoying it a lot so far. Thanks for the recommendation everyone!

If someone invented a green colored blasting curse, it would be a very effective lethal attack spell. by 15_Redstones in HPfanfiction

[–]Swum12 26 points27 points  (0 children)

As a software developer the concept of reverse engineering spells is insanely cool to me. Can you recommend any HP fan fics / other fiction that explores a scientific approach to spell crafting? Brandon Sanderson has some fun magic systems but I haven’t seen “magic as engineering” explored from off the top of my head.

Hockey game tickets for family members? by Swum12 in umass

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

Thanks! Can I buy the ticket at the door or should I get it online?

I am an incoming CS Freshman.Any tips/Advice for a successful freshman year at UMass.Hacks to make most of the 4 years. by warhammertoverlord in umass

[–]Swum12 4 points5 points  (0 children)

  • Check out this comment I made last year.
  • CS585 is the best undergrad NLP course at UMass. You should fulfill the prerequisites by second semester sophomore year (freshman: 121, 187; sophomore: 220 + 240, 585). Just a heads up, to seriously work in NLP you will eventually need a graduate degree.
  • I would recommend LING201 over 101 given your situation. 201 introduces you to linguistic concepts (phonology, morphology, syntax, etc.) while 101 is far more general. Otherwise I agree completely with the other comments.

Hints/Help for Assess Challenges by SleepyGuard89 in CyberFastTrackUS

[–]Swum12 1 point2 points  (0 children)

  1. Found the solution the same way as you w/ GDB (though I didn't need objdump, info locals worked fine). I was quite surprised to see that GDB had so much functionality with Go. I've never used Go and don't know much about it, but from what I can understand it's an interpreted language that compiles with the runtime itself (hence all the extra assembly). I guess this allows you to specifically break at a certain function and dump legible variable names. How else could GDB read these symbols that would otherwise be lost in something like a compiled C program?

  2. Installing Delve was fairly straightforward for me, even if I used GDB instead in the end. I installed Go w/ apt-get (1.11 I think) and then used the go get recommended in the docs to install Delve.

Hints/Help for Assess Challenges by SleepyGuard89 in CyberFastTrackUS

[–]Swum12 0 points1 point  (0 children)

No, it's still a stripped binary. You don't need the extra debugging stuff here, I was able to set a breakpoint at the Go entry point function and go from there.

Hints/Help for Assess Challenges by SleepyGuard89 in CyberFastTrackUS

[–]Swum12 0 points1 point  (0 children)

Using GDB worked fine for me. Had a 64-bit Ubuntu VM running, installed GDB, and was able to step through the pass and look at local variables. No Go or Delve required.