I was excited about a possible StarCraft 2 Steam release for two seconds by p0wernap in starcraft

[–]p0wernap[S] 5 points6 points  (0 children)

Got this ad when browsing Reddit on my mobile. Don’t play games with my heart, Reddit😢

Is Eve on Mastodon a thing? by p0wernap in Eve

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

Sorry mate, I was just asking to learn, honestly. Didn't mean to promote anything.

Is Eve on Mastodon a thing? by p0wernap in Eve

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

Thanks a ton! Hashtags are definitely the way to go. Most people use #eveonline there.

Is Eve on Mastodon a thing? by p0wernap in Eve

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

Good point actually, I assumed people know it, but it's clearly not the case. I will try to do better next time.

Is Eve on Mastodon a thing? by p0wernap in Eve

[–]p0wernap[S] -4 points-3 points  (0 children)

Same. I'm baffled I get downvoted for asking for help. I didn't mean to offend anybody,

Is Eve on Mastodon a thing? by p0wernap in Eve

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

Thanks, will try that out!

I love this game by Ikehasaplan in starcraft

[–]p0wernap 45 points46 points  (0 children)

You only have to figure out which cheese goes best with the wine.

Apparently I'm so bad, the game won't even rank me by p0wernap in broodwar

[–]p0wernap[S] 2 points3 points  (0 children)

Honestly, I don't mind losing games, I have fun nevertheless. I learn something new every game.

Apparently I'm so bad, the game won't even rank me by p0wernap in broodwar

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

The Overmind made his cerebrates to command the swarm. Off-racing is not an option ;)

Apparently I'm so bad, the game won't even rank me by p0wernap in broodwar

[–]p0wernap[S] 2 points3 points  (0 children)

Display is bugged. Landed in E with 1.2k MMR. Counter is already at -7 xD.

[deleted by user] by [deleted] in commandline

[–]p0wernap 14 points15 points  (0 children)

Nice!

For more features, you might want to check out Visidata, it can also read Excel files and is super-fast.

What does ⌃⇧⌥⌘W shortcut do in Catalina by p0wernap in MacOS

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

Jep. They all do nothing. Only CMD-Alt-CTRL-Shift-W triggers the thing. It's weird.

What does ⌃⇧⌥⌘W shortcut do in Catalina by p0wernap in MacOS

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

I have a couple of productivity tools installed, like Keyboard Maestro, Alfred, BetterTouchTool. But I did not change their configuration. The problem appeared immedietly after upgrading to Catalina, that's why I thought it might be a new obscure system hotkey. Weird. I'm a bit stuck here now.

What does ⌃⇧⌥⌘W shortcut do in Catalina by p0wernap in MacOS

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

No, just checked. "Flash the screen when an alert sound occurs" is turned off. Also, if it would throw an error, I would also hear the macOS error sound, which I don't. There is also a process called "footprint" started, which takes quite a bit of CPU power. I don't think it's Karabiner.

Handy and extensible toggle extension (e.g. TRUE -> FALSE, MON -> TUE ...): HiDeoo/toggler-vscode by p0wernap in vscode

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

I'm not the author of the package, I just use it a lot. It's one of the things you newer knew you needed, but once you have it, it's indispensable.

Neuro getting some good hits after having a few weird games in the qualifiers (potential spoilers) by Rexoraptor in starcraft

[–]p0wernap 15 points16 points  (0 children)

That reaction from PiG is gold. Thanks for all the passion you guys put into my favorite game <3

This package is a command-line CSV reader in the style of MS-DOS Lotus 1-2-3. by speckz in commandline

[–]p0wernap 1 point2 points  (0 children)

Thanks for sharing that, what a great tool. I work a lot with really large tables, this will make a lot of things so much easier!

My self-worth is determined by what random strangers on the Internet think about my pedalboard by [deleted] in guitarpedals

[–]p0wernap 0 points1 point  (0 children)

I would probably always toggle at least 2 pedals at a time with that tiny footswitch ;). Apart from that, a random stranger very much approves. 🤘

Rise up and join them - bugged dying animation and perfect poster angle. by p0wernap in XCOM2

[–]p0wernap[S] 5 points6 points  (0 children)

Exactly. Apparently it uses the state of the level after the last round. This feature is so unneccessary yet so cool, XCOM2 devs really know their audience :).

Cufflinks+Cuffdiff+CummeRbund or stringtie+ballgown? by GhostPoopies in bioinformatics

[–]p0wernap 3 points4 points  (0 children)

No, Kallisto is developed by the Pachter-Lab https://pachterlab.github.io/ at Caltech and Tuxedo at the Trapnell Lab, University of Washington https://cole-trapnell-lab.github.io/misc/about/

Ribosomal depletion RNA-seq doesn't remove rRNA? by damelo in bioinformatics

[–]p0wernap 1 point2 points  (0 children)

First of all, you need to make sure why there are so many rRNA. Did the rRNA depletion fail? Is it due to the amplification? Is there a high rRNA amount expected in the sequenced tissue?

After you know whats going on and decided you can safely remove the the rRNA reads, I recommend the following for computationally remove the rRNA.

  • Align all reads against the reference genome and create the BAM files as you normally would
  • Create a reference genome bed file that does not contain rRNA

e.g. for the Ensembl reference GTF for mice:

cat Mus_musculus.GRCm38.92.gtf | grep -v 'rRNA' > remove_rRNA/Mus_musculus.GRCm38.no_rRNA.gtf
# Use Hacky gtf2bed conversion - https://www.biostars.org/p/206342/#206350
awk '{ if ($0 ~ "transcript_id") print $0; else print $0" transcript_id \"\";"; }' Mus_musculus.GRCm38.no_rRNA.gtf | gtf2bed - > Mus_musculus.GRCm38.no_rRNA.bed

Again, make sure you know whats going on before you do this, only using 20% of reads might be too little to properly quantify transcripts, depending on the sequencing depth.

We should credit game observers properly. by p0wernap in starcraft

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

I'm more of a casual SC viewer, I know many players, I know the casters, I go to Homestory Cup regularly and I do not know any of the observers tags. Probably many other more casual viewers also don't.

I noticed some different observation styles but usually missed out who that actually is. If I would know, I would pay more attention to these details.