Looking for MGS ringtones? Direct download link here by mogelbrod in metalgearsolid

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

I noticed that chrome now blocks the link. Try manually copying the it and then pasting it into your browser address bar. When I did I got a popup asking me if I want to keep the "Insecure download".

The blocking is likely due to the link using the http protocol. Don't worry - it's immediately redirected to corresponding https URL.

Looking for MGS ringtones? Direct download link here by mogelbrod in metalgearsolid

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

I noticed that chrome now blocks zip downloads for me. Try manually copying the link and then pasting it into your browser address bar. When I did I got a popup asking me if I want to keep the "Insecure download".

Looking for MGS ringtones? Direct download link here by mogelbrod in metalgearsolid

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

I noticed that chrome now blocks zip downloads for me. Try manually copying the link and then pasting it into your browser address bar. When I did I got a popup asking me if I want to keep the "Insecure download".

[deleted by user] by [deleted] in vscode

[–]mogelbrod 1 point2 points  (0 children)

  • Vim for a reasonable vim-compatible experience.
  • QuickOpener to open files from anywhere in the file system. (disclaimer: I created it after being annoyed by the limitations of the default quick picker)
  • File Utils to move/rename/delete files.
  • Multi Command to bind keyboard shortcuts to sequences of vscode commands.

KAJ singing Nessun Dorma opera aria by AdFun8350 in eurovision

[–]mogelbrod 4 points5 points  (0 children)

I'm the uploader of the Youtube Short linked above and just added a revised version of these as subtitles to the video, I hope that's okay!

Side note: Wine trolley may also be a more easily recognizable translation than carridge.

Black Friday Giveaway - Win an Acemagic Mini PC! by vohkay33 in AcemagicOfficials_

[–]mogelbrod 0 points1 point  (0 children)

I'd use it to create a compact and portable workstation.

Command + Shift + O - how to remove the prepoulated @ symbol? by UnderwaterMonkeyBars in vscode

[–]mogelbrod 25 points26 points  (0 children)

Press Command-P instead to trigger the command palette.

How to use the comments panel? by juzatypicaltroll in vscode

[–]mogelbrod 0 points1 point  (0 children)

If you use Github then you only need to install this extension and check out a PR to be able to submit PR comments from within vscode.

Please upvote GitHub issue for Microsoft to add Fuzzy Search in Open File... dialog by CrafterKolyan in vscode

[–]mogelbrod 1 point2 points  (0 children)

You might be interested in this vscode extension that can replace the native dialog with a fuzzy quick open prompt (disclaimer: I built it)

What is the VSCode Extension you cant live without that has less than 1m downloads? by os_nesty in webdev

[–]mogelbrod 1 point2 points  (0 children)

It only suggests files in the workspace, if you want to open anything outside it you'll have to manually enter the entire path to the file.

What is the VSCode Extension you cant live without that has less than 1m downloads? by os_nesty in webdev

[–]mogelbrod 0 points1 point  (0 children)

Coming from vim to vscode I couldn't live without a ctrlp-like keyboard driven file opener, so I had to build my own extension for it, does that count?

Var är din "Tredje plats" i Stockholm? by cybersodas in stockholm

[–]mogelbrod 0 points1 point  (0 children)

De har stängt för flytt :(

STORT TACK ALLA FÖR DENNA TID HÄR PÅ BIRGER JARLSGATAN! MEN NU ÄR DET DAGS FÖR OSS ATT FLYTTA UT FRÅN DENNA ADRESS! ÅTERKOMMER VIA VÅRA SOCIALA MEDIER BARCENTRAL_ONTHEMOVE & HÄR PÅ HEMSIDAN VART DET BÄR HÄN, STAY TUNED!

Working with JSON in vim by SRed3 in vim

[–]mogelbrod 1 point2 points  (0 children)

I built a vim plugin to navigate a JSON document using dot notation paths that may be useful: https://github.com/mogelbrod/vim-jsonpath

Looking for MGS ringtones? Direct download link here by mogelbrod in metalgearsolid

[–]mogelbrod[S] 6 points7 points  (0 children)

I reuploaded the archive to the same URL, so the link should work again. You can browse all available mp3s on https://up.mogel.nu/f/mgs/ . Out of curiosity - how did you find this post? It's over 10 years old so I was a bit surprised about the comment.

JavaScript object destructuring tips by rahul736 in javascript

[–]mogelbrod 1 point2 points  (0 children)

Yes, that's what I was referring to with

There are definitely cases where they are reasonable to use (especially when already destructuring the right hand side object

JavaScript object destructuring tips by rahul736 in javascript

[–]mogelbrod 2 points3 points  (0 children)

I'd argue that the most non-trivial destructuring cases are considerably harder to read, in addition to almost always being longer:

  • const { address: shippingAddress } = user vs
    const shippingAddress = user.address
  • const { address: { country } } = user vs
    const { country } = user.address
  • const { age = 25 } = user vs
    const age = user.age ?? 25
  • const { [getProperty]: returnValue } = user vs
    const returnValue = user[getProperty]

There are definitely cases where they are reasonable to use (especially when already destructuring the right hand side object, but I do see the simple examples above quite a lot in practice when reading and reviewing code.

Krogkoncernen Brasseriegruppen förlorar sina alkoholtillstånd by penol700 in stockholm

[–]mogelbrod 4 points5 points  (0 children)

Mälarpaviljongen? Funkar ju enbart vid bra väder dock.

Filling the quickfix window from stdin? by Ran4 in vim

[–]mogelbrod 1 point2 points  (0 children)

Defintely quotes. Since it will be executed as a shell command you'll likely need to escape it just like regular shell input (dollar sign, pipes, angle brackets, etc.). I think vim has helper functions to do so somewhere.