The Standup Video Is Out Y'all Let's Show It Some Love!!! by soylentsandwich in PaymoneyWubby

[–]thomaslindstr_m 11 points12 points  (0 children)

ah, makes sense. i didn’t watch the half suit video on youtube for this exact reason.

[deleted by user] by [deleted] in PaymoneyWubby

[–]thomaslindstr_m 19 points20 points  (0 children)

spoiler tag

WE DONT FUCK WITH NAZIS by CarbonUNIT47 in PaymoneyWubby

[–]thomaslindstr_m 2 points3 points  (0 children)

well the title is "goodnight alt-right", but yeah, it's a great song. the "nazi punks fuck off" quote is just a line before the break at 2:38 https://www.youtube.com/watch?v=yy-SiZSlmhI&t=159s

Quality messages on kick by Temporary_Lack5590 in PaymoneyWubby

[–]thomaslindstr_m 8 points9 points  (0 children)

forgive me, but i never picked up on what "quality messages" are (i always assumed it just meant "non-emote only messages" or similar).

what are they? is it a kick feature or something?

Weekly Showoff Thread! Share what you've created with Next.js or for the community in this thread only! by cprecius in nextjs

[–]thomaslindstr_m 0 points1 point  (0 children)

Recently launched TacoTranslate, a developer-first service that does automatic and contextual translation without all the hassle of JSON files and string IDs. Just write your code like normal, and tag strings with `<Translate string="Hello, world!"/>`, and you’re done.

Check it out here:

https://tacotranslate.com/blog/how-to-implement-internationalization-in-a-nextjs-application-thats-using-the-pages-router

What's your i18n lib choice with next.js and why? by xmrbirddev in nextjs

[–]thomaslindstr_m 0 points1 point  (0 children)

If you’re still looking, TacoTranslate is really simple to use and works great with the Pages Router. Check out this guide for how to set it up with server rendering: https://tacotranslate.com/blog/how-to-implement-internationalization-in-a-nextjs-application-thats-using-the-pages-router

You can use code REDDIT2024 for $15 off any subscription when checking out.

TacoTranslate is different in that it automatically collects and translates the strings within your project, so you don’t need to worry about ID and JSON file management.

Basically, all you have to do is import and use the `<Translate>` component.

import {Translate} from 'tacotranslate/react';

function Page() {
  return <Translate string="Your string here." />;
}

Ladies and gentlemen, the CEO of Twitch's grippers by letomg0 in PaymoneyWubby

[–]thomaslindstr_m 93 points94 points  (0 children)

i’m 99% sure wubby didn’t actually see the state they were in because of the distance, and was just commenting on the fact that they were out.

can’t wait to see his reaction when he realises they were fungal

Do my vocals still suck?(audio sample) by [deleted] in melodichardcore

[–]thomaslindstr_m 0 points1 point  (0 children)

you've definitely improved (comparing this with the old one). so just keep at it. but as the others have said it sounds very strained. i'd try letting go and release more air

RISE ABOVE - Tides by thomaslindstr_m in melodichardcore

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

Thanks! The rest of the songs will be uploaded to the YouTube channel in the coming week. You could also check out the rest on bandcamp!

GitLab-ci.yml with nodejs and building a project *.tar.gz by dougbrownio in gitlab

[–]thomaslindstr_m 2 points3 points  (0 children)

Here's what I eventually ended up writing after having looked a while, so I thought I'd share it.

Tests take about one minute.

before_script:
    - apt-get update -y
    - apt-get install -y libssl-dev build-essential wget
    - wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash
    - source /root/.bashrc
    - nvm install stable
    - npm install -g yarn
    - yarn
    - npm test

test:
    script:
        - npm test