There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

programmer_humor

This magazine is from a federated server and may be incomplete. Browse more on the original instance.

HiddenLayer5 , (edited ) in Golang be like

Sometimes I think Go was specifically made for Google to dictate its own preferences on the rest of us like some kind of power play. It enforces one single style of programming too much.

philm ,

Is this a hard error? Like it doesn’t compile at all?

Isn’t there something like #[allow(unused)] in Rust you can put over the declaration?

flame3244 ,

Yes it is a hard error and Go does not compile then. You can do _ = foobar to fake variable usage. I think this is okay for testing purposes.

nomadjoanne ,

Ew, that’s awful. Go is not one of my programming languages but I had always held it in high esteem because Ken Thompson and Rob Pike were involved in it.

flame3244 ,

Honestly, it does not happen often that I have a ln unused variable that I want to keep. In my mind it is the same thing when wanting to call a function that does not exists. Also my editor is highlighting error Long before I try to compile, so this is fine too for me.

merc ,

That’s the main reason it has had any success. It’s not that it’s a good language, it’s just that it has good references.

MonkCanatella ,

I think that’s even worse because it increases the likelihood you’ll forget you faked that variable just for testing

flame3244 ,

Worse than not having a unused variable check at all? Dunno, the underscore assignment are very visible for me and stand out on every code read and review.

AeonFelis ,

Yes, worse, because now if you want to use the underscore assignment to indicate that you really want to discard that variable - it gets confused with underscore assignments that were put there “temporarily” for experimentation purpose.

merc ,

Exactly.

Say I’m having some issue with a function. I comment out half the function to see if that’s where the weirdness is. Golang says “unused variable, I refuse to compile this dogshit!” I completely fool Golang by just using _ = foo. Yes, I was correct, that’s where the problem was. I rewrite that section of the code, and test it out, things work perfectly. Only now, it turns out I’m not using foo anymore, and Golang has no idea because I so cleverly fooled it with _ = foo.

Now, something that could be caught by a linter and expressed as a warning is missed by the language police entirely, and may make it into production code.

Police the code that people put into a repository / share with others. Don’t police the code that people just want to test on their own.

AstridWipenaugh ,

The underscore is used in production code too. It’s a legitimate way to tell the compiler to discard the object because you don’t intend to use the pointer/value.

HiddenLayer5 , (edited )

Never really coded in Go outside of trying it out, but as far as I know it’s a hard error.

space_comrade ,

From what I’ve heard from Google employees Google is really stringent with their coding standards and they usually limit what you can do with the language. Like for C++ they don’t even use half the fancy features C++ offers you because it’s hard to reason about them.

I guess that policy makes sense but I feel like it takes out all the fun out of the job.

frezik ,

As far as C++ goes, that’s probably the only sane way to use the language.

Sloogs ,

Just about any place I know that uses C++ also does that with C++ so that’s nothing unusual for C++ specifically. It’s too big of a language to reason about very well if you don’t, so you’ve gotta find a subset that works.

skeletorsass ,

Too many patterns. If you do not do this every author will have a different use of the language and you will have to read a book of documentation each time you change files.

flame3244 ,

I think this is a good thing. The styles are just opinions anyway and forcing everyone to just follow a single style takes a lot of bikeshedding away, which I really like.

holgersson , in Flight instinct intensifies

It’s simple: Either the project management team keeps the customer away from my time tracking or I’ll keep my time away from that customer

bangupjobasusual , in Sleep() at home

I think some compilers will just drop that in the optimization step.

wreckedcarzz ,
@wreckedcarzz@lemmy.world avatar

Homer: “oh yeah speed holes sleep

jaybone ,

Sleep holes

ryannathans ,

Real pain in the ass when you’re in embedded and your carefully placed NOPs get stripped

vrighter ,

asm(“nop”);

fosforus , in I'll just be a quick 3h

Dump all your data in a data lake, throw a thousand GPUs in there too, and you’ll have your answer in 2 hours max.

CowsLookLikeMaps OP ,

Thanks, I’ll tell the client it’ll be ready in 2h.

cypherix93 ,

Mr. Manager calling from a group

Hi everyone, I know we’re all busy, but I just wanted to align on this 2 hr estimate. Can we put our heads together and do this faster somehow?

fosforus ,

Two thousand GPUs

Anticorp ,

No, but since we wasted an hour talking about it, the estimate is now 3 hours. Do you want to have more meetings about it?

yiliu , in Always commit

“No, wait, it’s not what you think! There’s a continuous integration system, a commit would’ve triggered a new build! It might have paged the oncall! Babe! The test suite has been flaky lately!

Okami_No_Rei , in Someone escaped the Matrix
@Okami_No_Rei@lemmy.world avatar

Farming? Really? Man of your talents?

Tetsuo ,

Seriously, some people are that good that you know they could do almost anything very well in a matter of days.

So why not ? I always have a lot of respect for someone that is willing to drastically change their lives in order to improve.

snooggums ,
@snooggums@midwest.social avatar

Huh, my first thought was that they went to the farm upstate where everyone’s pets end up.

ggppjj , (edited )

It’s a quote from a Star Wars show movie.

ech ,

*movie

ggppjj ,

Ah gee dang, you’re right. Thanks!

ech ,

Np!

MetaCubed ,

Its a quote from Rogue One if I’m not mistaken

9point6 ,

You don’t need to be skilled in something to get enjoyment out of it

Likewise you don’t necessarily get enjoyment out of something just because you’re skilled in it.

dustyData ,

It’s a peaceful life.

fibojoly ,

My entire career is based on “yeah but you’re good with computers and programming!” I just wanted to do fine arts and paint for fuck sake. And I could have made a career out of it, as history as since shown! Ah well. Maybe my kids will fare better, we’ll see.

kshade ,
@kshade@lemmy.world avatar

It’s never too late, especially if you can combine the two!

WhiskyTangoFoxtrot ,

Dirt cleans off a lot easier than blood.

testfactor , in Probably the wrong meme format

Do you really think the reason people hate Java is because it uses an intermediate bytecode? There’s plenty of reasons to hate Java, but that’s not one of them.

.NET languages use intermediate bytecode and everyone’s fine with it.

Any complaints about Java being an intermediate language are due to the fact that the JVM is a poorly implemented dumpster fire. It’s had more major vulnerabilities than effing Adobe Flash, and runs like molasses while chewing up more memory than effing Chrome. It’s not what they did, it’s that they did it badly.

And WASM will absolutely never replace normal JS in the browser. It’s a completely different use case. It’s awesome and has a great niche, but it’s not really intended for normal web page management use cases.

onlinepersona OP ,

Do you really think the reason people hate Java is because it uses an intermediate bytecode? There’s plenty of reasons to hate Java, but that’s not one of them.

No, I do not. It’s a meme.

Anti Commercial AI thingyCC BY-NC-SA 4.0

PoliticalAgitator ,

Which is functionally identical to the last one you posted. Are you just doing the same joke in every format you can? Fuck the internet sucks now.

fruitycoder ,

but its not really intended for normal webpages

But I really want to make full stack web apps with rust!

www.arewewebyet.org/topics/frameworks/#pkg-actix-

masterspace ,

And WASM will absolutely never replace normal JS in the browser. It’s a completely different use case. It’s awesome and has a great niche, but it’s not really intended for normal web page management use cases.

While I overall agree that JS / TS isn’t likely to be replaced, Microsoft’s Blazor project is interesting conceptually … Write C# webpages and have it compile down to WASM for more performance than JS could offer.

lambda ,
@lambda@programming.dev avatar

What, you can write a website in C# and have It output as a website using wasm? I have never touched wasm. That might be an interesting way to try it though.

Heavybell ,
@Heavybell@lemmy.world avatar

The problem with blazor as I understand it, is that no, it does not compile your C# into WASM. Instead, it compiles into a standard .net module – with as much excising of unused code as possible – and distributes it with a CLR that is compiled to WASM. So effectively you’re running the .net VM inside the WASM VM. If you do client-side blazor, which is not even MS’s push anymore because they stand to make more money if you write server-side blazor and deploy it to Azure.

Do look it up yourself tho. I could have a totally wrong understanding. I haven’t looked into it in some time because I’ve not been in a position to start a new frontend project from scratch. I would love to do my frontend stuff in C# though, don’t get me wrong.

Cratermaker ,

Interesting, yeah. I inherited a Blazor project though and have nothing positive to say about it really. Some of it is probably implementation, but it’s a shining example of how much better it is to choose the right tool for the job, rather than reinventing the wheel. For a while I was joking about setting the whole project “ablazor” until we finally decided to go back to a React/C# ASP.NET stack. If you’re thinking of using Blazor still, though, I think two fun things to look into are “linting issues with Blazor” and “Blazor slow”. I’ve heard people praise it, but they tend to be those who consider themselves backend devs that occasionally get stuck making frontends.

Valmond , in If Architects had to work like Programmers

But before I hire you, can you please build a small house or a shed or a trampoline to show me that you have the skills of an architect. The exact details of what to build will be given to you when the test assignment starts.

This is for free of course.

vithigar ,

Given the number of people in our last round of hiring who completely failed at producing said shed this step was 100% necessary.

Valmond ,

That smells of managerial incompetence, or an architect not doing his job.

orca ,
@orca@orcas.enjoying.yachts avatar

Or the technical challenge being ridiculous like a lot of them are. If you have that many people failing it, that tells me some or all of these things are true:

  1. Management, or whoever they hire for handling candidates, is not screening them well
  2. The challenge is needlessly complex
  3. The challenge requirements are not clear
  4. The company expects absolute prod-ready perfection but told the candidates “don’t spend more than 2-3 hours on this,” despite it taking one of their own engineers 6-8 hours
  5. The salary is way too low and they’re not getting candidates that fit their demands (e.g. wanting “senior” while offering “junior” salaries)

Seriously, some tech companies think they shit gold and give ridiculous challenges that reflect that delusion.

Source: been in tech since 2005 and in a terminal since I was 12.

Albbi ,

and in a terminal since I was 12.

That’s a long time to wait at an airport terminal! Is that Tom Hanks movie based off your life?

orca ,
@orca@orcas.enjoying.yachts avatar

Lmao, great film. Pictured myself hacking away on some shitty laptop, while bathing with paper towels in an airport bathroom.

vithigar ,

My own take as someone internal to that process is that it was a combination of 1 and 5.

I have no idea how candidates were screened. I do know that even before the “technical challenge” we had a large number of candidates completely faceplant on lowball questions asking what single line snippets of code did.

I can also say that I absolutely did not expect prod-ready results from the challenge. But I did expect things like not vomiting raw uuids on the screen instead of user readable values when displaying results. Or not having commits from overseas dev contractors which did all the actual work in your git log.

orca ,
@orca@orcas.enjoying.yachts avatar

Oof those are some stinkers. I’ve seen bad but never anything like hiring a contractor to do your code challenge work for you.

ques0 , in What's stopping you from coding like this ?
FlyingSquid , in What if we added a social component like "Stories" to this calculator app?
@FlyingSquid@lemmy.world avatar

You don’t understand! If you don’t keep adding new features, people will stop using your app!

Who wants simple apps that just work as intended, am I right?

xthexder ,
@xthexder@l.sw0.com avatar

The UNIX Tools Philosophy is that tools should do one thing, and they should do it well.
I wish more things followed this philosophy.

FlyingSquid ,
@FlyingSquid@lemmy.world avatar

Along with the even older philosophy of “if it ain’t broke, don’t fix it.”

RubberElectrons ,
@RubberElectrons@lemmy.world avatar

Hear hear. That’s how the tools I write work as well.

UFODivebomb ,

We’ve created an economy where that is not sustainable.

This fact is bad imo, but it’s where we are.

NotMyOldRedditName ,

The actual problem is if you don’t add new features, there’s nothing for people to do beyond maintenance and you aren’t going to keep good developers to only stick around for that.

So your option is new features or a new app entirely, but coming up with other good apps isn’t easy and is a huge risk.

So if you actually did good market research and spoke to users, you could find new features to add.

Beyond a tiny company or sole developer, it doesn’t really work.

some_guy ,

Get out of here with these facts and work on that UI redesign we’re due to ship next year.

NotMyOldRedditName ,

You mean the one that no one asked for, makes it harder to do the primary thing the app is designed to do, and all the involved developers have told management it’s a bad idea with a detailed list of why?

konst ,

Uaers need a $39.99p/m subscription to Calcly Pro.

crony , in I don't believe Auto Save feature in any software
@crony@lemmy.cronyakatsuki.xyz avatar

:w

:w

:w

:w

:w

i

esc

:w

:w

:w

:w

Average day in (neo)vim

fylkenny ,

You can use :wq only once

victorz ,

So choose wisely. All other editor instances must remain open forever.

Vash63 ,

*per open file

dukatos ,

:x

noeontheend ,

My biggest (mostly) irrational internet pet peeve is the proliferation of people suggesting “:wq” when “:x” is strictly better.

calzone_gigante ,

I use quake style terminals, and often start writing a file and completely forget about it and turn off the computer, and only remember what i left behind when i find the random recovery files around, so :w a lot is quite useful for me.

kender242 ,
@kender242@lemmy.world avatar

Quake? The FPS? I’m confused, though I knew a little about Linux

calzone_gigante ,

Yes, on classic fps you could spaw a console that will drop down from the top os the screen, some terminal emulators allow you to do that.

I like it because then i have the terminal always open that i just draw from the top of the screen with a keypress

On KDE i do that with Yakuake, and on gnome with tilix

Dehydrated ,

You can also use Guake on GNOME or basically on any desktop. I’ve also use it on Cinnamon and it’s really nice.

pkill ,

not mapping semicolon to colon

lel

Commiunism ,

:w before ZZ just to make sure

Anticorp ,

Make all changes

:wq!

Force that bitch!

SorryQuick ,

Is there any reason to use :w other than it being the default? I have mine mapped to CTRL-S and it makes sure to keep me in insert mode if I was in insert mode. Feels way faster and easier to spam than the 4 key presses it takes to execute “:w”.

crony ,
@crony@lemmy.cronyakatsuki.xyz avatar

I’m just used to it and I’m keeping ny time in instert mode at minimum.

marswarrior ,
@marswarrior@lemmy.world avatar

https://lemmy.world/pictrs/image/1c57b14b-6e5c-4f78-ba91-cddfaaaf55a1.png
This will allow you to ctrl+s to save. I tried to add this in a backtick code line/block but it removes part of the syntax.

crony ,
@crony@lemmy.cronyakatsuki.xyz avatar

Sorry but I’m already used to :w stoo much and a lot faster with it than ctrl+s

GBU_28 , in It's that time of the year again!

No closing semicolon, anyone got any extras to throw on this thing?

epyon22 ,

; found this in the back for you should still work though

db2 ,

Can confirm.

Moops , (edited )

At the very least I’d try to clean up that fuzzy condition on behavior to anticipate any bad or inconsistent data entry.

WHERE UPPER(TRIM(behavior)) = ‘NICE’

Depending on the possible values in behavior, adding a wildcard or two might be useful but would need to know more about that field to be certain. Personally I’d rather see if there was a methodology using code values or existing indicators instead of a string, but that’s often just wishful thinking.

Edit: Also, why dafuq we doing a select all? What is this, intro to compsci? List out the values you need, ya heathen ;)

(This is my favorite Xmas meme lol)

mp04610 ,

behavior is an ENUM.

moroni ,
@moroni@lemmy.ca avatar

That’s a table scan, right there. Naughty.

krotti ,

Honest question, which ones wouldn’t it work with? Most add a semicolon to the end automatically or have libraries and interfaces saved me a million times?

jaybone ,

Usually with libraries like jdbc or whatever and prepared statements you don’t need the semicolon.

GBU_28 ,

Other reply s accurate but it’s always a good practice to include the semicolon else you can get

“Bobby tables’ed” look that xkcd comic up

krotti ,

Wouldn’t that still apply, if you can inject straight SQL, such as “query’ OR 1=1?”

docAvid ,

I’m not sure how including a final semicolon can protect against an injection attack. In fact, the “Bobby Tables” attack specifically adds in a semicolon, to be able to start a new command. If inputs are sanitized, or much better, passed as parameters rather than string concatenated, you should be fine - nothing can be injected, regardless of the semicolon. If you concatenate untrusted strings straight into your query, an injection can be crafted to take advantage, with or without a semicolon.

GBU_28 ,

Yep it would only work if you didn’t sanitize a user input string in this case ‘nice’

They could write ‘’; drop table blah;

pruwybn , (edited )
@pruwybn@discuss.tchncs.de avatar

Need to normalize the database. I would add a join to a BehaviorTypes table.

Edit: or, if the only options are naughty or nice, make it a boolean.

takeda ,

You need semicolons if it is a script with multiple commands to separate them. It is not needed for a single statement, like you would use in most language libraries.

mellejwz ,

If you don’t use a semicolon directly in MySQL it won’t do anything until you add it.

takeda ,

In the MySQL client console where you can run multiple commands.

If you add semicolon in language library commands such as fetch() you will get an error.

fmstrat ,

Can we get a SIMILARITY?

angelsomething , in Works on my machine

Literally why docker was invented

takeda ,

Yeah, it “solved” the “it works on my machine” by bundling the machine with the code.

youtu.be/0uixRE8xlbY

Opafi ,

Man, I really was interested in that topic, but that guy really can’t do talks.

takeda , (edited )

What about this? youtu.be/5XY3K8DH55M

Also I created this repo to create a reproducible sec environment for myself. I added other languages, but personally work mostly with python. It is basically resonating for handling all the boiler plate:

github.com/takeda/nix-cde

For packaging in docker I started to use nix2container project as it gives me a greater control over layers. So for example when I package my phyton app I typically use 3 layers:

  • python and it’s dependencies
  • my application dependencies
  • my application, which is very tiny compared to other two, so there is great reuse of the layers

The algorithm mentioned in the video also helps a lot with reuse, but the above is more optimized by frequency of how things typically change.

BTW: today I discovered this github.com/astro/microvm.nix I haven’t play with it yet, but in theory it would let me generate a microvm image (in similar fashion to generate a docker container) which would let me to run my app natively as a tiny VM on EC2 for example, and use only minimum necessary of a typical OS to run it.

SpeakinTelnet ,
@SpeakinTelnet@sh.itjust.works avatar

I have a love/hate relationship with docker. On one side it’s convenient to have a single line start for your services. On the other side as a self-hoster it made some developers rely only on docker meaning that deploying the stack from source is just an undocumented mess.

Also following the log4j vulnerability I tend to prioritize building from source as some docker package were updated far later than the source code was.

Zikeji ,
@Zikeji@programming.dev avatar

The Dockerfile is essentially the instructions for deploying from scratch. Sure, they most likely only exist for one distro but adapting isn’t a huge chore.

You can also clone the repo and build the container yourself. If you want to update say, log4j, and then attempt to build it, that’s still entirely possible and easier than from scratch considering the build environment is consistent.

SpeakinTelnet ,
@SpeakinTelnet@sh.itjust.works avatar

If I’m updating the source code already I might as well build my service from it, I really don’t see how building a docker container afterward makes it easier considering the update can also break compatibility with the docker environment.

Also adapting can be a pita when the package is built around a really specific environment. Like if I see that the dockerfile installs a MySQL database can I instead connect it to my PostgreSQL database or is it completely not compatible? That’s not really something the dockerfile would tell me.

evranch ,

I really don’t see how building a docker container afterward makes it easier

What it’s supposed to make easier is both sandboxing and reuse / deployment. For example, Docker + Traefik makes some tasks so incredibly easy and secure compared to running them on bare metal. Or if you need to spin up multiple instances, they can be created and destroyed in seconds. Without the container, this just isn’t feasible.

The dockerfile uses MySQL because it works. If you want to know if the core service works with PostgreSQL, that’s not really on the guy who wrote the dockerfile, that’s on the application maintainer. Read the docs, do some testing, create your own container using its own PostgreSQL or connecting to an external database if that suits your needs better.

Once again the flexibility of bind mounts means you could often drop that external database right on top of the one in the container. That’s the real beauty of Docker IMO, being able to slot the containers into your system seamlessly due to the mount system.

adapting can be a pita when the package is built around a really specific environment

That’s the great thing about Docker, it lets you bring that really specific environment anywhere and in an incredibly lightweight manner compared to the old days of heavyweight VMs. I’ve even got Docker containers running on a Raspberry Pi B+ that otherwise is so old that it would be nearly impossible to install the libraries required to run modern software.

kratoz29 ,

I love Docker because it is the only sane method to selfhost shit with my Synology NAS, and I love my Synology NAS because it is the only Linux interaction that I have (from my old MacBook Pro).

ohlaph ,

Docker has been a savior.

kurwa ,

Now we just need to run docker inside the browser

eatyourglory ,

Ah-ah! Now that’s progress!

some_guy , in Instructions were unclear:gotta be precise with that anotating tool

Had someone verify that wifi was working because he could see his neighbors’ networks. Airplane Mode was enabled. Dunno what he thought he saw.

Same thing with a colleague. The guy told him that he was definitely connected to wifi. It took a lot of probing to confirm that wasn’t true.

Some people just can’t provide valid feedback nor follow simple instructions. I kinda feel like those individuals shouldn’t be allowed to use computers to do their jobs. If you can’t master just pass the basics, sorry. Here’s a pencil and a pad of paper. You can either work the longer way or you can consciously put in the effort to learn this stuff enough for us to help you when you need it.

My own father, who had a doctorate in mechanical engineering: “Now click the Apple menu.” “What’s that?” “It’s the menu that’s an Apple logo in the top left corner of the screen.” “I don’t have that.” “Yes, you definitely have that.” “No, I don’… oh there it is.”

I’m not calling anyone stupid. More that I’m saying people convince themselves that they can’t learn and then shut down.

WeirdAlex03 ,
@WeirdAlex03@lemmy.zip avatar

I mean in fairness to the first one, on most systems it is possible to turn wifi back on without turning off airplane mode (there is in-flight wifi after all)

CanadaPlus ,

I think that’s the trick, right? 1% of a perfectly normal person’s attention looks a lot like a really dumb person. This certainly goes for tech, but also for any number of other fields.

some_guy ,

Insightful. I was commenting about a VIP wrt a power dialog on a mobile device and posited that the reason they didn’t understand a thing must be that they don’t read before dismissing it. I would even say that’s half of 1% of their attention and that makes complete sense. The other 99.5% is focused on the things they consider more important.

01189998819991197253 ,
@01189998819991197253@infosec.pub avatar

Had they read the message, it would have saved them a lot of time waiting for the solution that would have been near instantaneous otherwise. But their 0.5% is more important to them than your 99.5%. Hopefully they’re really good at bringing money into the company, because their ability to save labor money for the company is abysmal.

some_guy ,

Hopefully they’re really good at bringing money into the company, because their ability to save labor money for the company is abysmal.

I was asked to drive 80m to reboot a device when I’d said the previous day that rebooting would fix it (it was a phone; there’s almost no real troubleshooting on the platform). I kept quiet about how financially irresponsible the request was. When I got there, the phone was already turned off for other reasons. At least I got to listen to podcasts while I drove there and back.

01189998819991197253 ,
@01189998819991197253@infosec.pub avatar

And hopefully you got paid for mileage…

nyan ,

Except that 80 metres is only a few carlengths . . .

01189998819991197253 ,
@01189998819991197253@infosec.pub avatar

I read it as miles. If some_guy meant meters, then that would add such a new level of comedy to it hahaha

nyan ,

I’m aware that he probably meant miles, but he still used the wrong abbreviation (should have been mi). Gotta be careful about that kind of thing, although I’m not sure what the tech anecdote equivalent of the Mars Climate Orbiter would be. Someone taking it too seriously, like I’m doing here, probably. 😅

sukhmel ,

To be fair, sometimes the message appears unexpectedly right where you were going to click, and you dismiss it without being able to read.

Maybe some messages should really appear with a dismissal button disabled for several seconds

gamermanh ,
@gamermanh@lemmy.dbzer0.com avatar

kinda feel like those individuals shouldn’t be allowed to use computers to do their jobs. If you can’t master just pass the basics, sorry. Here’s a pencil and a pad of paper.

My wife had her HR rep get pissed at her just yesterday for sending an email to her boss and other higher-ups asking why assistant managers at her company can’t use the computers theyre on all day properly. She had asked for a screenshot of something so she could see what the other person was seeing and they replied with “I can’t do that idk how” and thought that was acceptable?

Luckily the other higher ups told HR to shut up and that she was only mad because it’s her job to ensure basic computer literacy and she clearly didn’t.

People 100% get into the mindset that “well, I already know the basics, so anything I don’t know is advanced user shit so I can’t learn it” and it’s infuriating

some_guy ,

Wow. It’s so easy to get that info from a web search that I’d argue that the response is evidence of the person not doing their job. Good on your wife for calling bullshit and the same for the higher ups who defended her position.

Blackmist ,

Pretty much most of the screenshots I get these days are a photo of somebody’s screen taken on a phone.

Makes me long for retirement or at least a giant solar flare.

graphito OP , (edited ) in Instructions were unclear:gotta be precise with that anotating tool
@graphito@beehaw.org avatar

a tech illiterate old friend of mine in his 60s got tasked with changing his simcard for new one. But the network just didn’t appear. Long story short after 3 hrs of headbashing I asked him to send me the photo of simcard itself

that was a valuable afternoon for my humility

nano-simcard rotated 90 degrees forcefully inserted into standard size simcard frame which is missing micro size simcard frame

alt text: nano-simcard rotated 90 degrees forcefully inserted into standard size simcard frame which is missing micro size simcard frame

note the right side of simcard frame bulging out

for confused in terminologyhttps://ae04.alicdn.com/kf/HTB1z8.sLFXXXXbpXFXXq6xXFXXXQ.jpg

PlexSheep ,

What am I seeing?

graphito OP ,
@graphito@beehaw.org avatar

alt text is added, cheers

JCreazy ,

I used to work at a phone repair shop. The amount of people that put Sim cards in their brand new phone without the tray. We would have to take the phones apart to get their Sim cards out.

graphito OP ,
@graphito@beehaw.org avatar

And when it doesn’t work, they ram it HARDER

and then people wonder how porn stereotypes can be harmful

vox ,
@vox@sopuli.xyz avatar

I’m literally scared of disassembling stuff over like plastic clips while people just feel ok with ramming stuff in like that wha

vaionko ,

Isn’t the “standard” sim card in you pic actually mini-sim? While the standard one is credit card-sized? I think I have a phone somewhere that takes a credit card sized sim actually.

hch12907 ,

To be fair, most people here probably have a mini SIM as their first SIM card.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • [email protected]
  • random
  • lifeLocal
  • goranko
  • All magazines