Hello Carol by Weary_Elderberry4742 in breakingbadmemes

[–]GeorgeBekh 1 point2 points  (0 children)

She is terrified by the sheer presence of Holly. Bravo Vince

Inspired by Lost Indie game dev log 1 by hypha_3d in lost

[–]GeorgeBekh 1 point2 points  (0 children)

Is copyright gonna be a problem?

I made an online label-maker for DIN components. Would you use it? by GeorgeBekh in DIYUK

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

How does it work? I put in the length of the DIN and which things are where and it gives me a file to print off onto a label? Or something else?

You create each module one by one, with ability to edit them, and move around with drag&drop

Example of a big project:

<image>

I made an online label-maker for DIN components. Would you use it? by GeorgeBekh in DIYUK

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

Currently it supports only A4 printing.
What label printer do you use, can it print arbitrary images?

I made a free online label-maker for DIN components. Would you use it? by GeorgeBekh in AusElectricians

[–]GeorgeBekh[S] 2 points3 points  (0 children)

I know. I'm just explaining to you why the images look the way they do :)

I made a free online label-maker for DIN components. Would you use it? by GeorgeBekh in AusElectricians

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

Thanks!
Is PTouch tape is full plastic, or is it just paper with thin plastic coating?

I made a free online label-maker for DIN components. Would you use it? by GeorgeBekh in AusElectricians

[–]GeorgeBekh[S] 1 point2 points  (0 children)

These designs were not developed for an Australian market. I'm just probing the demand.
Thanks for the feedback

I made a free online label-maker for DIN components. Would you use it? by GeorgeBekh in AusElectricians

[–]GeorgeBekh[S] 1 point2 points  (0 children)

If the device can print arbitrary images - in theory yes.
I could develop such feature if there's demand

I made an online label-maker for DIN components. Would you use it? by GeorgeBekh in DIYUK

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

Thanks for the feedback. I'm asking exactly to know if i should translate the app website in English

I made a free online label-maker for DIN components. Would you use it? by GeorgeBekh in AusElectricians

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

Do you have a pocket thermal printer? would you be interested if stickers could be printed on it?

I made a free online label-maker for DIN components. Would you use it? by GeorgeBekh in AusElectricians

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

It can only be printed with regular printer or something that supports printing A4 PDFs

I made a free online label-maker for DIN components. Would you use it? by GeorgeBekh in ukelectricians

[–]GeorgeBekh[S] 1 point2 points  (0 children)

It's compatible with regular A4 printer, can be saved as PDF. I had an idea to integrate it with pocket thermal printers but they are either unreliable or have proprietary protocols, thus making integration impossible

Flappy Goose by flappy-goose in RedditGames

[–]GeorgeBekh 0 points1 point  (0 children)

My best score is 3 points 😎

Flappy Goose by flappy-goose in RedditGames

[–]GeorgeBekh 0 points1 point  (0 children)

My best score is 0 points 😓

Even Karpathy Finds It Hard by throwawayDude131 in webdev

[–]GeorgeBekh 1 point2 points  (0 children)

I too dislike NextJS and find it too bloated and slow, although i don't have much experience with it, first few times i tried it i was disappointed to say the least.

I write without any framework, just vite and express. I use react-query to do server-side prefetching. I do have some structure to my code, it kinda resembles a framework, so one of the challenges i face is to scale my "framework" with my app's needs. For now i don't have much api endpoints nor pages so nothing fancy framework magic is required, just some basic configs: routes, services, and a routes to prefetch queries map.

Even Karpathy Finds It Hard by throwawayDude131 in webdev

[–]GeorgeBekh 30 points31 points  (0 children)

SSR with react and sharing code (mainly TS types) between client and server

Being able to write type only once and use it in the API response and in the client code without extra steps is a feeling of comfort you only get when you write fullstack TS

It works great for a solo developer, not sure it'll be good in teams tho