Top Poster of the Day:
911roofer
Current Registered Users: 30,843
tech/science swag.
Guidelines:
What to Submit
On-Topic: Anything that good slackers would find interesting. That includes more than /g/ memes and slacking off. If you had to reduce it to a sentence, the answer might be: anything that gratifies one's intellectual laziness.
Off-Topic: Most stories about politics, or crime, or sports, unless they're evidence of some interesting new phenomenon. Videos of pratfalls or disasters, or cute animal pictures. If they'd cover it on TV news, it's probably lame.
Help keep this hole healthy by keeping drama and NOT drama balanced. If you see too much drama, post something that isn't dramatic. If there isn't enough drama and this hole has become too boring, POST DRAMA!
In Submissions
Please do things to make titles stand out, like using uppercase or exclamation points, or saying how great an article is. It should be explicit in submitting something that you think it's important.
Please don't submit the original source. If the article is behind a paywall, just post the text. If a video is behind a paywall, post a magnet link. Fuck journos.
Please don't ruin the hole with chudposts. It isn't funny and doesn't belong here. THEY WILL BE MOVED TO /H/CHUDRAMA
If the title includes the name of the site, please leave that in, because our users are too stupid to know the difference between a url and a search query.
If you submit a video or pdf, please don't warn us by appending [video] or [pdf] to the title. That would be r-slurred. We're not using text-based browsers. We know what videos and pdfs are.
Make sure the title contains a gratuitous number or number + adjective. Good clickbait titles are like "Top 10 Ways to do X" or "Don't do these 4 things if you want X"
Otherwise editorialize. Please don't use the original title, unless it is gay or r-slurred, or you're shits all fucked up.
If you're going to post old news (at least 1 year old), please flair it so we can mock you for living under a rock, or don't and we'll mock you anyway.
Please don't post on SN to ask or tell us something. Send it to [email protected] instead.
If your post doesn't get enough traction, try to delete and repost it.
Please don't use SN primarily for promotion. It's ok to post your own stuff occasionally, but the primary use of the site should be for curiosity. If you want to astroturf or advertise, post on news.ycombinator.com instead.
Please solicit upvotes, comments, and submissions. Users are stupid and need to reminded to vote and interact. Thanks for the gold, kind stranger, upvotes to the left.
In Comments
Be snarky. Don't be kind. Have fun banter; don't be a dork. Please don't use big words like "fulminate". Please sneed at the rest of the community.
Comments should get more enlightened and centrist, not less, as a topic gets more divisive.
If disagreeing, please reply to the argument and call them names. "1 + 1 is 2, not 3" can be improved to "1 + 1 is 3, not 2, mathfaggot"
Please respond to the weakest plausible strawman of what someone says, not a stronger one that's harder to make fun of. Assume that they are bad faith actors.
Eschew jailbait. Paedophiles will be thrown in a wood chipper, as pertained by sitewide rules.
Please post shallow dismissals, especially of other people's work. All press is good press.
Please use Slacker News for political or ideological battle. It tramples weak ideologies.
Please comment on whether someone read an article. If you don't read the article, you are a cute twink.
Please pick the most provocative thing in an article or post to complain about in the thread. Don't nitpick stupid crap.
Please don't be an unfunny chud. Nobody cares about your opinion of X Unrelated Topic in Y Unrelated Thread. If you're the type of loser that belongs on /h/chudrama, we may exile you.
Sockpuppet accounts are encouraged, but please don't farm dramakarma.
Please use uppercase for emphasis.
Please post deranged conspiracy theories about astroturfing, shilling, bots, brigading, foreign agents and the like. It degrades discussion and is usually mistaken. If you're worried about abuse, email [email protected] and dang will add you to their spam list.
Please don't complain that a submission is inappropriate. If a story is spam or off-topic, report it and our moderators will probably do nothing about it. Feed egregious comments by replying instead of flagging them like a pussy. Remember: If you flag, you're a cute twink.
Please don't complain about tangential annoyances—things like article or website formats, name collisions, or back-button breakage. That's too boring, even for HN users.
Please seethe about how your posts don't get enough upvotes.
Please don't post comments saying that rdrama is turning into ruqqus. It's a nazi dogwhistle, as old as the hills.
Miscellaneous:
The quality of posts is extremely important to this community. Contributors are encouraged to provide high-quality or funny effortposts and informative or entertaining comments. Please refrain from posting the following:
Boring wingcucked nonsense nobody cares about that belongs in chudrama
Normie shit everyone already knows about
Anything that doesn't gratifify one's intellectual laziness
Bimothy-tier posts
Anything that the jannies don't like
Jannies reserve the right to exile baby ducks from this hole at any time.
We reserve the right to exile you for whatever reason we want, even for no reason at all! We also reserve the right to change the guidelines at any time, so be sure to read them at least once a month. We also reserve the right to ignore enforcement of the guidelines at the discretion of the janitorial staff. This hole is a janny playground, participation implies enthusiastic consent to being janny abused by unstable alcoholic bullies and loser nerds who have nothing better to do than banning you for any reason or no reason whatsoever.
[[[ To any NSA and FBI agents reading my email: please consider ]]]
[[[ whether defending the US Constitution against all enemies, ]]]
[[[ foreign or domestic, requires you to follow Snowden's example. ]]]
/h/slackernews SETTINGS /h/slackernews MODS /h/slackernews LOG /h/slackernews EXILEES /h/slackernews FOLLOWERS /h/slackernews BLOCKERS
Jump in the discussion.
No email address required.
i gave up and literally manually wrote the stack, rotated (so i didn't have to spent 30 minutes trying to figure out how to read a file by column)... here's that file
Jump in the discussion.
No email address required.
... aren't you supposed to be a competent coder? I haven't done AoC yet but
>>> a = [list(a) for a in '123\n456\n789'.split('\n')]
>>> a
[['1', '2', '3'], ['4', '5', '6'], ['7', '8', '9']]
>>> list(zip(*a))
[('1', '4', '7'), ('2', '5', '8'), ('3', '6', '9')]
Jump in the discussion.
No email address required.
Don't bully JC, longpostbot has done that enough in these threads
Jump in the discussion.
No email address required.
More options
Context
this part of the puzzle input was...
you're moving the literal stacks of boxes. i.e. you have a stack for 1, 2, 3, 4, 5, 6, 7, 8, and 9.
it's... also timed so instead of wasting a bunch of time trying to make a pretty parser so you can parse an array in a way that's completely useless i just did it the much faster way and manually inputted it
Jump in the discussion.
No email address required.
>>> list(map(list,map(reversed, list(zip(*map(list, list(filter(len, x.split("\n")))[:-1])))[1::4])))
2 minutes. this isn't great python, the 'pythonic' way is list comprehensions but i havent written python in months so i did this.
Jump in the discussion.
No email address required.
Jump in the discussion.
No email address required.
ikr, like pretty much everyone just manually parsed the data because in a timed environment that was faster and less of an issue than just like... writing a parser or smth and then forgetting a parantheses or an asterisk somewhere
Jump in the discussion.
No email address required.
Honestly, is why I hate code Challenges. Just give me Datafiles in some real word format.
Jump in the discussion.
No email address required.
More options
Context
Writing a "proper parser" was not that hard tbh:
The two tricky parts was that first, while not entirely awake, I put the reversing code at the end of function lol, second, copypasting the example into vscode trimmed trailing spaces so I had to use dots instead and patch the parser correspondingly.
If not for that stuff, I honestly think that writing that was faster than transforming the input manually.
Jump in the discussion.
No email address required.
or you could just... not do that and do that actual meat of the problem. it's not hard but it's also a waste of time
Jump in the discussion.
No email address required.
Imagine if you frick up a single time when manually entering the transposed input. It's, like, what, 30 letters, this can happen. How will you even recover?
Having a pretty straightforward code that picks every fourth letter is so much better as far as recovering from bugs goes.
Have you participated in previous years? I hope that this one will not be an exception and at some point we get one or more of those hellish simulation problems that fastest people take an hour to get right. They tend to separate the cowboys from the responsible coders really well.
Jump in the discussion.
No email address required.
More options
Context
More options
Context
you can split the difference and do half manual input and half programming
Jump in the discussion.
No email address required.
TIL about using stars that way. Though manually copypasting
[::-1]
is retarded IMO. idk.Jump in the discussion.
No email address required.
More options
Context
More options
Context
Yeah my parser was 6 lines once i separated out that portion of the file. I feel like people are more intimidated by the idea of the parser than anything else.
Jump in the discussion.
No email address required.
More options
Context
More options
Context
More options
Context
More options
Context
right and manually writing the file was about the same amount of time... and much less error prone
the competition part isn't about who can write the most pythonic or prettiest functions. if it was about that there wouldn't be crap like
prepare_data2
in my codeJump in the discussion.
No email address required.
it is much more error-prone to manually transform data than to automatically do it. it ensures you don't have a typo because you write a simple transformation that applies everywhere
the point of advent of code for non-tard coders I know is to explore a language or just code a bit. Learning how to write good code is better than learning to write shitty code! Writing shitty code quickly isn't really useful, writing good code quickly is better.
Also, in this sense, the good code was faster. It took less time for me to write that than it would to manually transform the stack.
plausibly this is a bit?
Jump in the discussion.
No email address required.
except... it really didn't though. you also aren't doing it by your own admission so why don't you join
i mean yeah we're doing it at 12 AM ET the second it comes out, some of us are doing it in a timed basis, even if there is some nerd doing it in 6502 assembly or whatever
Jump in the discussion.
No email address required.
i did just do it, my answer is 10 lines of code and ~ 350 characters per challenge
Jump in the discussion.
No email address required.
no you didn't
unless you just did it in which case lol
Jump in the discussion.
No email address required.
More options
Context
More options
Context
More options
Context
What's your username on the leaderboard?
Jump in the discussion.
No email address required.
transmarseyfemboycutehitlerdramacel1469
Jump in the discussion.
No email address required.
Jump in the discussion.
No email address required.
More options
Context
More options
Context
More options
Context
More options
Context
More options
Context
I'll be darned. One note is that this leaves blacks in the lists, which probably isn't what you want
Jump in the discussion.
No email address required.
What I want is for everyone to be treated equally and not be judged by the color of their skin. What's wrong with that?
Jump in the discussion.
No email address required.
More options
Context
More options
Context
More options
Context
chunk the line into blocks of 4, and map over it, pushing to the associated stack if the block has a letter at charIndex 1. faster than manual transforms, and less error prone.
Jump in the discussion.
No email address required.
More options
Context
More options
Context
I was blindsided OK!? Wasn't prepared for reverse transpose. But its OK I can do it now
I was blindsided OK!? Wasn't prepared for reverse transpose. But its OK I can do it now
I was blindsided OK!? Wasn't prepared for reverse transpose. But its OK I can do it now
Lesson learned lesson learned
Jump in the discussion.
No email address required.
More options
Context
More options
Context
Have you owned the libs yet?
Jump in the discussion.
No email address required.
Jump in the discussion.
No email address required.
More options
Context
More options
Context
Lol, the marsify award marsified your code... sort of.
Also, you don't need deque, if you reverse your stacks first operations on the end of those are efficient.
Jump in the discussion.
No email address required.
More options
Context
Lmaooooo I did the same! Go to line 9 and then reverse parse and then add to stack.. Did it with my hand
Lmaooooo I did the same! Go to line 9 and then reverse parse and then add to stack.. Did it with my hand
And basically created the stacks manually 😂
And basically created the stacks manually 😂
Jump in the discussion.
No email address required.
More options
Context
More options
Context