fixmycode

joined 1 year ago
[–] fixmycode@feddit.cl 16 points 1 month ago

open it in a non-destructive manner, switch every read/write lock slider, put it back together.

[–] fixmycode@feddit.cl 1 points 1 month ago

Wikiwand, a much better UI for Wikipedia

[–] fixmycode@feddit.cl 2 points 1 month ago (1 children)

Apotris is an excellent famous-block-stacking-game clone for the GBA (and other platforms), it has a version for Portmaster that will run on many if not all Linux handhelds like the RG35XX and similar, but will also run in any GBA emulator.

[–] fixmycode@feddit.cl 3 points 2 months ago

I've got tickets for Inside Out 2

[–] fixmycode@feddit.cl 2 points 2 months ago

hot take about the hot take: it's about marriage, not about having babies.

[–] fixmycode@feddit.cl 8 points 3 months ago

I stopped watching after the Head & Shoulders commercial

[–] fixmycode@feddit.cl 1 points 3 months ago

those are 20th century

[–] fixmycode@feddit.cl 4 points 3 months ago (1 children)

I read through the docs of pygit2, how is it too low level compared to using direct console output?

if you need complex workflows, couldn't they be built over the convenience of the library?

[–] fixmycode@feddit.cl 1 points 3 months ago

all good! :pixelated-hug-emoji:

[–] fixmycode@feddit.cl 1 points 3 months ago (2 children)

I was taking about icon packs. I didn't know about the Memphis designers, thanks for the nice write-up

[–] fixmycode@feddit.cl 2 points 3 months ago (4 children)

Windows/BeOS/MacOS 6 to 9

[–] fixmycode@feddit.cl 28 points 3 months ago (8 children)

Every era is defined by the tools we had at hand during that process. While Memphis is basically pixel art, Y2K was defined by the gradient and mask tools on Photoshop, and Aero was a victim of skewmorphic design trends pushed by the commodity of 3D tooling. Flat design took prevalence because raster-based products felt weird when seen on retina displays.

I wonder how design will be affected when AI tools become the norm.

 

ES: Una comunidad para conversar de entretenimiento de cartón en Español

Juegos de Mesa

!juegosdemesa@feddit.cl

 

I gifted the Pokemon Battle Academy set this year to my nephews (both 9yo). BA is boxed like a board game, it has three decks, two basic decks which are pre-sorted to play a tutorial game, and one advanced unsorted deck, along with guides for playing both decks, a full game guide, coin, damage counters, and a board which guides you on how to play. I also bought them sleeves and a couple of boosters that I told them they could use later.

I was there when they opened the box, told them about how I convinced their grandpa when I was their age to get me my first deck, and how I didn't play with anyone for a long time because no one in school had cards, and how lucky they were to have each other to play with. In the spirit of letting them do their Christmas thing, I told them "do you need me to teach you how to play?" they said they were ok, and I went to do other things around the house.

15 minutes later I come back and all cards are basically scattered around the room. One of my nephews is negotiating to trade 20 cards of their pre-constructed deck for the holo that comes on the other's deck. The advance deck is nowhere to be found, it's probably now part of their mega deck. The board, counters, coin and guides are still in the box.

They never battled, but all in all, they stayed trading cards all morning until they had to leave. One of them showed the other how to open their boosters the way youtubers open them (by putting the rare ones at the end for maximum content) and the importance of sleeving their holos.

I guess collecting is more fun these days. I'm happy they found joy in that.

Maybe we battle next year.

 

Cash grabs aside, I really enjoy a good biopic. I'm between David Bowie and Michael Jackson

 

Let's say I have the following structure:

my_module/
  __init__.py
  utilities.py

and __init__.py contains

from .utilities import SomeUtilityFunction

Is there a way to prevent or alert developers when they do

from my_module.utilities import SomeUtilityFunction

instead of

from my_module import SomeUtilityFunction

The problem arose when a few modules started using a function that was imported inside a module in which it wasn't used, while also being available on the module's __init__.py, so after linting the file and removing the unused import my tests started failing.

any other advice for situations like this?

 

I know that canonically, Jankom is a Tellarite and not a Talaxian, but I feel that his story's justification has a Tom Paris/Nick Locarno vibe, but I haven't been able to find any relationship on Google. There's a lot on Jankom that reminds me of Neelix:

  • Delta quadrant
  • Split nose
  • Hair, sideburns and eyebrows
  • Ears somewhat
  • Spots

Also, I thought that Tellarites would look closer to what the doctor on Janeway's crew looked like.

Is some writer not being paid for the creation of Talaxian on Prodigy?

20
submitted 11 months ago* (last edited 10 months ago) by fixmycode@feddit.cl to c/boostforlemmy@lemmy.world
 

Insert Link dialog is inserting a ! symbol before the URL? which makes Boost not render it as a link, I don't know if that's the behavior on web Lemmy.

Repro:

  • Start a new post or comment
  • Press the link button on the toolbar
  • Fill the form and insert the link
  • The resulting markdown looks like this:

![Some URL](https://example.com)

If you press the preview (magnifier) button, it doesn't show as a link, and this continues after you post the new message

The other thing is that both fields of the Insert Link dialog have the placeholder "URL". I know the icons are different but at first glance I found it confusing

2
submitted 1 year ago* (last edited 1 year ago) by fixmycode@feddit.cl to c/lemmydev@lemm.ee
 

I'm in the process of developing a bot. My intention is to scan all comments regardless of depth in a given community up to a certain date, so it receives only the comments made since the last request. I want to play nice so I'm also trying to do it on the less amount of queries possible.

The community I'm testing this is fairly small, it has 40 comments total, but the problem is that when I request comments without specifying max_depth, and sort ordered by New, I receive only 10 comments, if I try to specify page, or limit, I get an error {"error":"couldnt_get_comments"}.

If I don't specify page or limit, and set an arbitrary number for max_depth, like 4, I get the 40 comments I'm expecting.

My question is: what's the correct way to request comments? My intention is doing something similar to an user pressing "Comments" on front of a community, like calling the community URL with params ?dataType=Comment&page=1&sort=New

view more: next ›