eaplmx

twtxt.net

No description provided.

Recent twts from eaplmx

I found a Foosball with a digital scoreboard.

Download

In college I wanted to make one of these with electronics and PICs, but it was a bit expensive as a student, so never I finished that.
Later I made one with a tablet and an online ranking system.

I wanted to build one for table tennis, inspired by one I say online which recognizes a RFID chip in your racket 🏓

⤋ Read More
In-reply-to » I've started playing with Go today, just understood the basics and still a bit confused about the module and goroutine parts.

@justamoment@twtxt.net I haven’t touched the goroutines yet (I played with these like 10 years ago), but I haven’t found a case where I need these.

About the modules, those were very non-intuitive to me, coming from Python, C#, and JS. I think the official documentation from Go is not clear enough and has no simple examples…
After a few searches, I reached Stack Overflow and blogs with tips for Modules and subdirectories. Now, I can replicate an MVC model with templates.

This project helped a lot: https://github.com/J7mbo/go-subdirectories-with-modules

⤋ Read More
In-reply-to » I'm making some training videos, and I'm feeling the pain of taking care of every detail 😅

@justamoment@twtxt.net Well, those are for a private university in México, so won’t be publicly available.

And they told me that the format is gonna be different from what I recorded previously, so next week I’ll have to make new shots. 😅

In fact, I don’t have videos in English, so I guess I’ll have to practice recording a few 🤔

⤋ Read More
In-reply-to » I'm working on this PoC to vote on the best time for an international call, showing the multiple timeslots in your local time, and getting numbers on preferences among people. The UI could be vastly improved, but this is what I have so far... I want to see it in action since it's very different to choose between 1, 2, or even 7 days (24 hours each). If you want to help to test it and give some comments send me a reply!

@darch@neotxt.dk I agree! Doodle.com is a great inspiration. Instead of Emojis, using standard symbols like (✓) or , with the standard traffic light colors, could be a better idea.
Thanks for the feedback!

Screenshot from Doodle.com
Download

Screenshot from Doodle.com

⤋ Read More

I’m making some training videos, and I’m feeling the pain of taking care of every detail 😅

Having the right illumination, sound, background, camera…
I hope the outcome is great 😃

⤋ Read More

I’m working on this PoC to vote on the best time for an international call, showing the multiple timeslots in your local time, and getting numbers on preferences among people.
The UI could be vastly improved, but this is what I have so far… I want to see it in action since it’s very different to choose between 1, 2, or even 7 days (24 hours each). If you want to help to test it and give some comments send me a reply!

At least I’m learning a lot on the topic…😁

Screenshot
Download

Screenshot

⤋ Read More
In-reply-to » Digital Books wear out faster than Physical Books

@marado@tilde.pt Well, I can’t agree on that one. It’s a ‘maybe’ since is hard to measure, but IMO we can’t say Zero evidence. There are some numbers showing that artificial scarcity has some impact on sales, and obviously, DRM devs want to sell their services, although they are biased. (I’m playing devil’s advocate here, making both positions to collide to reach a useful compromise)

My position is that DRM helps to prevent piracy among mainstream users, which would decide on renting Apple Music or Spotify vs using hipster alternatives. We as power users will find the best ratio between convenience and control.
https://www.idealog.com/blog/drm-may-not-prevent-piracy-but-it-might-still-protect-sales/

I assume you’ve read this one: https://www.wikiwand.com/en/Information_Doesn%27t_Want_to_Be_Free
I like it as my reference on the topic. Doctorow as a creator has skin in the game, so he knows about it and is a good influence on me as a creator as well.

⤋ Read More

@marado@twtxt.net yeah, obviously monetary interests shape the products availability and regulations are useful for control those interests. (Although my anarchist friends are not that happy of fighting companies with state power, but that’s another convo)

Recently I watched this video on Apple not replacing Lightning with USB-C, being the main reason licencing fees. And that only changes until EU requires it by law.

I worked for a few industries putting walls on the ecosystem, by design, and I think lack of competence makes it even harder. Mainly for B2C.

⤋ Read More
In-reply-to » Digital Books wear out faster than Physical Books

@mckinley@twtxt.net I don’t disagree… It’s like the difference on owning a house vs renting, and basically renting anything where you can get kicked out almost in any moment. it depends on the contract you are signing.

That said, you can own DRM-free content, being hosted in a marketplace, or saved on your devices.

DRM is a long topic for a twt, but as a creator I don’t want my content to be pirated that much, at least not being extremely easy to pirate making the people prefer one click for a free download vs paying, let’s say, 2 dollars.

I don’t know about the marketplaces you mentioned, only GOG and Humble Bundle for games, and some others for games. I’ll take a look, that’s for sharing!

⤋ Read More

@slashdot@feeds.twtxt.net hmmm… After programmed obsolescence, limiting the lifespan of the products you buy, now with Subscription paywalls you get limits during the lifetime of your product.

So basically you are buying a restricted product, and most people can’t do anything due to a lack of options at reasonable prices… What can be done?

⤋ Read More
In-reply-to » Digital Books wear out faster than Physical Books

@marado@tilde.pt I don’t agree completely with the concept of wearing out (like audio CDs vs LP or audio cassettes) degrading quality over time.

But in terms of accessibility, I fully agree. Now I can’t play either CDs or LPs since I don’t have a player. I’m using digital media like YouTube/Spotify for my old music. But I also have SD with music from 20 years ago…

Basically, I like both media.

⤋ Read More

@abucci@anthony.buc.ci I received and sent tweets by SMS, I guess in 2008 or so…

Today, here, SMS are practically dead, only used for 2FA and marketing (both use cases wrong IMO)

Even when they are free, no one uses them, I think due to the lack of images and attachments in general.

I vaguely recall a project of Internet of Things sending control commands by SMS but I think they moved to AM radio frequency being cheaper and more reliable. Interesting question of how SMS are used nowadays…

⤋ Read More
In-reply-to » @markwylde No, it doesn't have to be this way, but it is (almost) always this way. When a programming language makes it too easy to manage dependencies, you inevitably get microdependencies. It doesn't help that many people learn JavaScript or Python as their first language.

@prologic@twtxt.net I see the opposite here, copying and pasting lazily instead of creating reusable code.

I mean, having a dependency to know if a number is odd or even is excessive https://www.npmjs.com/package/is-odd-or-even

But at the same time if your language or runtime gives you these quick snippets is usually better that your own code, due to those “things you didn’t know you don’t know”. That’s why I have mixed feelings on copying and paste vs using a dependency vs reimplementing it yourself.

⤋ Read More
In-reply-to » @markwylde No, it doesn't have to be this way, but it is (almost) always this way. When a programming language makes it too easy to manage dependencies, you inevitably get microdependencies. It doesn't help that many people learn JavaScript or Python as their first language.

@prologic@twtxt.net hmm… I have mixed feelings… Like reinventing the wheel to learn vs using an already round one…

It’s a hard conversation, and as with education it depends on your context and ideology but you can and should ‘force’ it in your organization

⤋ Read More

I remember that around 20 years ago, browsers had an option to manually select which cookies are you receiving, but now I can’t find that option anymore…

Does anyone here know which browsers still allow this, or if there is some extension to do it?

⤋ Read More
In-reply-to » The Arc browser is the Chrome replacement I’ve been waiting for Good overview of the new Chrome based browser project that's been in development over the last year. I haven't tried it yet and in fact this is the first I've heard about it, but I'm always interested in browser projects that have a new approach to the web so I signed up to try the service.

@axodys@octobloc.xyz is it any good?

I’m very happy with Edge’s vertical tabs, although there are a few concerns with privacy. I haven’t found a good replacement on Win and Xubuntu

⤋ Read More
In-reply-to » Crap! 🤦‍♂️ I accidentally nuked the Android keys / keystore for Goryon on my dev machine. @eaplmx Did I ever give you a copy of 'em? 😅

as we discussed in the Gitea issues, perhaps is a good moment to look for new keys and a new organization in Play Store.

⤋ Read More
In-reply-to » Today I was discussing in class about Tetris, and I remembered a game we made in 2020, a frustrating Tetris

@marado@tilde.pt hey, thank you for playing! 😁

It was a nice experiment on finding the sweet spot between not that frustrating, being an interesting puzzle, and making you rage quit after a few tries.

⤋ Read More
In-reply-to » Golang so far: Routing, templates, modules...

@prologic@twtxt.net yeah, there are still a lot of tricks to learn. I tried to read the code for yarn but it was overwhelming 😅, I’ll try again soon

So far Go is looking to me like a really interesting and mature language/platfoe. , related to the last time it tried (2012 perhaps?) It has been a pleasant experience 😃

⤋ Read More
In-reply-to » This seem to mostly apply to yarnSocial as well: How Mastodon is different (than twitter)

@prologic@twtxt.net I’ve been thinking, and discussing in class as well, how much an information tool can improve the lifestyle of a population? Basically, what problems are we solving with technology?

It’s about transmitting bytes in form of words, images and basically multimedia. I had the same thought for my hobby and profession of creating games. How much a game improves someone’s life?

But anyway, we, as a society, need the entertainment the social media and technology in general, offers.

⤋ Read More
In-reply-to » I have a bot where you can register your exercise routines. So now I have a few months of data, and I'd like to do something with it.

@lyse@lyse.isobeef.org well, it’s extremely simple, it asks how many calories you burned and the timestamp is recorded automatically. That’s all

I get the calories from the elyptic and from some apps with routines, so perhaps the value is not very accurate but it allows to compare if you are exercising more than before.

If anyone here wants to take a look:
https://t.me/gemu fitbot (For Telegram)

⤋ Read More
In-reply-to » I have a bot where you can register your exercise routines. So now I have a few months of data, and I'd like to do something with it.

@justamoment@twtxt.net currently the bot gamifies the amount of calories to burn every week, if you do enough you climb to the next level (harder) otherwise you go down to a simpler league (greatly inspired by Duolingo)

But it’s only at a weekly level, I’d like to have something like “you made it greatly this year”

⤋ Read More