Advertisement ยท 728 ร— 90

Posts by Gwenn Le Bihan

screenshot of lyrics on spotify of Boards of Canada - Telepath:

turn it up while I'm counting
One, four, five six,seven eight [six, seven is circled in red in the screenshot]
It's too loud
Well, this is quite close to me
Let's play it back and see what it sounds like
(Could I get the one voice?)
(Nervous? Don't be nervous)

screenshot of lyrics on spotify of Boards of Canada - Telepath: turn it up while I'm counting One, four, five six,seven eight [six, seven is circled in red in the screenshot] It's too loud Well, this is quite close to me Let's play it back and see what it sounds like (Could I get the one voice?) (Nervous? Don't be nervous)

boards of canada six seven reference

3 days ago 2 0 0 0

the title has Instagram gif potential

1 week ago 1 0 0 0

ai sucks at generating images that aren't repulsive and make one not read a post, too, btw.

1 week ago 15 1 0 0
Pleye (playwright test reporter interface) showing an ongoing test suite run, with most tests green and not a single failure yet. It's almost entirely finished

Pleye (playwright test reporter interface) showing an ongoing test suite run, with most tests green and not a single failure yet. It's almost entirely finished

HELL YEAH COMEON PLAYWRIGHT DONT FAIL ME NOWWW

1 week ago 0 0 0 0
screenshot of the newTime plugin that allows snapping peaks in a audio sample to project's bpm grid. Mouse is hovering over the "Quantize times" option

screenshot of the newTime plugin that allows snapping peaks in a audio sample to project's bpm grid. Mouse is hovering over the "Quantize times" option

i love cheating with software cuz i cant be assed to play on time

1 week ago 1 0 0 0

it worked really well, the docs are easy to understand and i got it working on the first try (!!) on both vitest & playwright

1 week ago 1 0 1 0
โ™ป๏ธ Factor out kobotoolbox api mocking with MSW ยท cigaleapp/cigale@3df5649

i ended up using msw and @msw/playwright cuz the api mocking was getting kinda large :) github.com/cigaleapp/ci...

much cleaner that way!

1 week ago 1 0 1 0
timeline of posts by @vscode.dev, every post is a Post Hidden by Muted Word

timeline of posts by @vscode.dev, every post is a Post Hidden by Muted Word

i muted the word "agent", this is what the vscode profile page looks like ๐Ÿ˜ญ

1 week ago 7 0 1 0
Advertisement

type shit = true ahh language

2 weeks ago 0 0 0 0

also, can it work with playwright for e2e testing ?

2 weeks ago 0 0 1 0

the whole thread was very informative, thank you !

for now im just mocking http via global.fetch = vi.mock(...) (vitest) cuz im dont need http mocking for unit tests that often, but im glad i learned there are libraires to do this in a cleaner way ^^

2 weeks ago 1 0 2 0

that's all our mama....

2 weeks ago 40 1 0 0

what about a .sh custom renderer, so you have both directions

2 weeks ago 1 0 0 0

bun.lock spotted! <3

2 weeks ago 0 0 0 0
the npmx landing page with a Transgender Pride Flag based kawaii logo built on March 31, 2026

the npmx landing page with a Transgender Pride Flag based kawaii logo built on March 31, 2026

today and always ./๐Ÿณ๏ธโ€โšง๏ธ

2 weeks ago 376 55 8 3
Advertisement
a graphical bug in github ui for log lines of a ci job: lines are duplicated, with line numbers going 1 thru 15 then 0 thru 14

a graphical bug in github ui for log lines of a ci job: lines are duplicated, with line numbers going 1 thru 15 then 0 thru 14

another day, another github ui bug

2 weeks ago 0 0 0 0
npmx logo, "kawaii" version, with the trans flag's colors in the letters, blue background.

npmx logo, "kawaii" version, with the trans flag's colors in the letters, blue background.

npmx logo, "kawaii" version, with the trans flag's colors in the letters, dark grey background.

npmx logo, "kawaii" version, with the trans flag's colors in the letters, dark grey background.

hold my E

3 weeks ago 9 1 0 0
Typescript code block:


	let abortion = $state(new AbortController());

	let loading = $state(true);
	let loaded: T[] = $state([]);
	let error: unknown = $state();

	// When component is removed, cancel all
	onDestroy(() => {
		// pro-choice ftw
		abortion.abort(true);
	});

Typescript code block: let abortion = $state(new AbortController()); let loading = $state(true); let loaded: T[] = $state([]); let error: unknown = $state(); // When component is removed, cancel all onDestroy(() => { // pro-choice ftw abortion.abort(true); });

woke codebase,,...

3 weeks ago 10 1 1 0
tweet from vercel ceo, guillermo rauch, with a selfie with netanyahu

tweet from vercel ceo, guillermo rauch, with a selfie with netanyahu

this guy took a selfie w a genocidal war criminal btw nitter.net/rauchg/statu...

1 month ago 2 1 0 0
Video

freelance gives you the ability to have a completely fucked up sleep and work schedule and I think that's beautiful (i should stop doing this)

1 month ago 1 0 1 0

vscode release notes since one year or two be like:
ai ai ai ai ai ai ai ai ai and ai

1 month ago 3 0 0 0
YAML code snippet:

      - name: Get paths to check changes for
        id: paths
        env:
          workflow_ref: ${{ github.workflow_ref }}
        run: |
          # We sadly don't have yq, so a JS script will have to do

          cat <<EOF | bun - >> $GITHUB_OUTPUT
            const path = process.env.workflow_ref
              .split('@').at(0)
              .split('/').slice(2).join('/')

            const workflow = await import(`./${path}`)

            console.log('files<<EOF')
            console.log(workflow.on.pull_request.paths.join('\n'))
            console.log('EOF')
          EOF 
      - name: Compute changes with last push
        id: changes
        uses: tj-actions/changed-files@v47.0.5
        with:
          since_last_remote_commit: true
          files: ${{ steps.paths.outputs.files }}

YAML code snippet: - name: Get paths to check changes for id: paths env: workflow_ref: ${{ github.workflow_ref }} run: | # We sadly don't have yq, so a JS script will have to do cat <<EOF | bun - >> $GITHUB_OUTPUT const path = process.env.workflow_ref .split('@').at(0) .split('/').slice(2).join('/') const workflow = await import(`./${path}`) console.log('files<<EOF') console.log(workflow.on.pull_request.paths.join('\n')) console.log('EOF') EOF - name: Compute changes with last push id: changes uses: tj-actions/changed-files@v47.0.5 with: since_last_remote_commit: true files: ${{ steps.paths.outputs.files }}

The yaml module import feature from @bun.sh is very useful if you need to, at runtime, get values from somewhere else within a github actions workflow

for example, if you wanna check changes to the most recent push in a PR, but you already list the files in `on.pull_request.paths`

(untested code)

1 month ago 0 0 0 0

crazy how long it took me to realize there was an outage (again, in the same day!!!) just because the random "error: contex canceled"s are so common that it just became a fact of life

1 month ago 0 0 0 0
what if you... just wanted to see if these goddman E2E tests pass...

(with "github actions" text atop the person) but god said... error: context canceled

what if you... just wanted to see if these goddman E2E tests pass... (with "github actions" text atop the person) but god said... error: context canceled

1 month ago 0 0 0 0
Advertisement

holy shiet i knew about frizk from the all my fellas song but all the tracks are really good!!

1 month ago 0 0 0 0

say the name of Astral's python formatter twice

gotchu

1 month ago 0 0 0 0
gwen.works

Hiya !
The awesome @gwen.works just made some project of custom oestrodose box here : fr.gwen.works/oestrodose/
Y'all should check it out !

1 month ago 2 1 0 0
screenshot of a FL Studio Patcher graph, showing around twelve variously interconnected nodes

screenshot of a FL Studio Patcher graph, showing around twelve variously interconnected nodes

patcher should have an addiction warning on first use

1 month ago 4 0 0 0
YouTube

forgot abt the link >_< supitszaire.com/what-now/

1 month ago 4 1 0 0

whole album was a bangerrrr

also imma need your drums cuz holyshit they sound good

the last track was giving underscores - duhhhhhh, gotta love switchups like that

1 month ago 4 1 1 0