$ğųt¡h's Avatar

$ğųt¡h

@a3gis.bsky.social

Computer science, software, music, and whatever

23 Followers  |  39 Following  |  34 Posts  |  Joined: 21.10.2024  |  1.7349

Latest posts by a3gis.bsky.social on Bluesky

nothing like a good piece of old java and spring

02.10.2025 15:00 — 👍 0    🔁 0    💬 0    📌 0

Android lets you grant WRITE_SETTINGS permission to a third-party app, but it doesn’t allow you to grant it to adb shell — so another developer ends up having more freedom than I do.

12.09.2025 21:34 — 👍 0    🔁 0    💬 0    📌 0

Instantiation alone does not guarantee that an object is immutable. After the object has been instantiated and initialized by means of construction, none of its methods, whether public or hidden, will from that time forward cause its state to change
#programming

27.05.2025 15:51 — 👍 0    🔁 0    💬 0    📌 0

Refactoring means you never have to say you're sorry—you just fix it.

20.05.2025 15:43 — 👍 0    🔁 0    💬 0    📌 0

nice setup!

08.04.2025 18:15 — 👍 1    🔁 0    💬 0    📌 0

TempleOS built by a single developer is insane

08.04.2025 18:14 — 👍 0    🔁 0    💬 0    📌 0

Safari performance is awful

05.04.2025 22:43 — 👍 0    🔁 0    💬 0    📌 0
Preview
Windows 11 en un SSD externo en una MacBook Pro Te gastaste una buena moneda para tener una Mac para desarrollar software como Zuckerberg (o porque querías y punto) y un día te levantaste…

Empezamos a delirar en Medium, metete y si te gusta apoya con un like/aplauso y comparti, dale que es gratis loco.

medium.com/@gutihs/wind...

#software #dev #developer #tech #engineering #it #tutorial

03.02.2025 15:46 — 👍 0    🔁 0    💬 0    📌 0
Post image

parece que el WindowServer de MacOS no se lleva muy bien con renderizar varias pantallas, y menos si en una tengo el Google Meet con un filtro de astronauta

31.01.2025 15:11 — 👍 0    🔁 0    💬 0    📌 0

xcode IDE is a torture, search for references is a pain, i wanna cry

14.01.2025 19:05 — 👍 0    🔁 0    💬 0    📌 0

FRP on Android is very useful if your device is stolen, but if what happened is that you forgot the unlock password, it is better to burn it

13.01.2025 20:33 — 👍 0    🔁 0    💬 0    📌 0

flutter or react native? 🤔

10.01.2025 01:14 — 👍 0    🔁 0    💬 0    📌 0
Post image

#tmux is awesome. it is a terminal multiplexer so allows you to manage several windows in the same session and within each one to have several terminals in panes.
"this is the way"

#dev #software #bash

08.01.2025 13:51 — 👍 2    🔁 1    💬 0    📌 0

Awesome!

05.01.2025 03:28 — 👍 1    🔁 0    💬 0    📌 0

You need to drink it with Coke, that will change your life

05.01.2025 03:24 — 👍 0    🔁 0    💬 1    📌 0

from martinfowler.com/articles/fea...

02.01.2025 14:23 — 👍 0    🔁 0    💬 0    📌 0
Post image

Toggles
- release: allow incomplete and un-tested codepaths to be shipped to production
- experiment: perform multivariate or A/B testing
- ops: control operational aspects of our system's behavior
- permission: change the features or product experience that certain users receive

#dev #software

02.01.2025 14:23 — 👍 0    🔁 0    💬 1    📌 0
Preview
GitHub - deepseek-ai/DeepSeek-V3 Contribute to deepseek-ai/DeepSeek-V3 development by creating an account on GitHub.

DeepSeek, a LLM trained for a fraction of the cost of GPT-Xx models, in 2 months for 6 million, on limited GPUs due to export restrictions, and competing head to head. This is crazy.

It's not the AI part I'm excited about, it's the level of efficiency. github.com/deepseek-ai/...

31.12.2024 17:07 — 👍 269    🔁 37    💬 10    📌 10

Domain logic can run either in client or server, or in both splitting it. But always separated from other layers (presentation, data source, etc) and not dependent of anything.

#dev #software #programming

29.12.2024 05:33 — 👍 0    🔁 0    💬 0    📌 0

learn nvim shortcuts its like learn all mortal kombat fatalities

27.12.2024 23:37 — 👍 1    🔁 0    💬 0    📌 0
Post image

😂

27.12.2024 15:35 — 👍 445    🔁 76    💬 14    📌 6

reminder:
if you change something in your AWS Cloudfront distribution, dont forget to invalidate cache or you gonna suffer

#dev #software #aws #programming

27.12.2024 15:12 — 👍 0    🔁 0    💬 0    📌 0

Presentation layer is an external interface for a service your system offers to somene else.
Data-source layer is an interface to things that are providing a service to you.

#dev #software #programming

26.12.2024 18:42 — 👍 0    🔁 0    💬 0    📌 0

prune propagation policies de #argocd:
- Foreground: se borran los hijos primero y luego el padre. Sincronico.
- Background: padre se borra enseguida e hijos despues por el garbage collector. Asincronico.
- Orphan: se borra el padre pero los hijos quedan.

padre/hijos recursos, no personas xD

17.12.2024 19:04 — 👍 1    🔁 0    💬 0    📌 0

Buena manera de usar let de Kotlin para mejor legibilidad

val finalPrice = getProduct(123)
.let(::applyDiscount)
.let(::addShipping)
.let(::addTax)

#kotlin #dev #programming

16.12.2024 12:31 — 👍 0    🔁 0    💬 0    📌 0

Reminder:

SomeObject* create() {
SomeObject so;
return &so;
}

Bad: dangling pointer

12.12.2024 22:58 — 👍 0    🔁 0    💬 0    📌 0
Post image

la ruleta rusa del deploy.
quien necesita saber el ambiente por anticipado... mejor descubrirlo despues y divertirse en el intento.
cortesia de Gitlab

#dev #gitlab #software

12.12.2024 19:36 — 👍 1    🔁 0    💬 0    📌 0

Yo tengo líquido, me falta el Tesla

11.12.2024 14:43 — 👍 1    🔁 0    💬 0    📌 0

It will not give you the final result, but it will give you a guide and perhaps inspiration to have ideas that lead you to that. But it is still a complement to the developer and not a developer in itself.

10.12.2024 20:56 — 👍 0    🔁 0    💬 0    📌 0

that's not going to happen, a thinking mind is always going to be needed. The biggest advantage of using ChatGPT is brainstorming.

10.12.2024 20:56 — 👍 0    🔁 0    💬 1    📌 0

@a3gis is following 19 prominent accounts