- 3 Posts
- 17 Comments
gravediggersbiscuit@sh.itjust.worksto Programmer Humor@programming.dev•Break Things !== Move Fast2·23 days agoAh yes a quote about beginners rapidly gaining beginner gains by practicing really does apply to a group of professionals trying to do their job in a business /s
It’s shocking the amount of morons people trying to do their job have to deal with nowadays. I’m sorry you have a colleague with the critical thinking ability of a punch drunk.
gravediggersbiscuit@sh.itjust.worksto Ask Lemmy@lemmy.world•What do you hope to achieve in the next 5 years?4·1 month agoI would love to learn to not worry, stress and ruminate about every little thing ever
gravediggersbiscuit@sh.itjust.worksto Golang@programming.dev•What's the best way for testing Gin routes in Go?4·2 months agoIf it was me personally I would just test the handlers separately rather than scaffolding the router entirely.
Either way, I suggest looking into using the standard lib
http/httptest
https://pkg.go.dev/net/http/httptestHere’s an snippet example of testing a handler
req, err := http.NewRequest(http.MethodGet, "/health", bytes.NewBuffer([]byte{})) if err != nil { t.Fatal(err) } rr := httptest.NewRecorder() handler := http.HandlerFunc(srv.HealthCheckHandler) handler.ServeHTTP(rr, req) if rr.Code != http.StatusOK { t.Fatalf("expect HTTP response code %d, got %d", tt.expectHttpCode, rr.Code) }
gravediggersbiscuit@sh.itjust.worksOPto Pizza@lemmy.world•Homemade pepperoni, red onions, jalapeno, mozzarellaEnglish2·6 months agoAs someone said, certain pepperoni are more greasy than others. You can reduce the grease though a bit by par baking the pizza first with just the sauce and veg toppings then take it out, put the pepperoni and cheese on, pop back in the oven to finish off
It’ll reduce the amount of grease being cooked out but also stop the cheese from splitting
gravediggersbiscuit@sh.itjust.worksOPto Pizza@lemmy.world•Homemade pepperoni, red onions, jalapeno, mozzarellaEnglish2·6 months agoI have this electric pizza oven. Really nice and more affordable than those ooni ones https://www.amazon.co.uk/Unold-Luigi-Electric-Pizza-68816-400°C/dp/B0C3DLR27Q
gravediggersbiscuit@sh.itjust.worksto World News@lemmy.world•Global coffee trade grinding to a halt, hit hard by brutal price hikesEnglish11·6 months agoIt’s not quite as simple as that and there are other growing conditions that are required. If we take Arabica, it requires a very small window temperature window, sunlight but not so much it scorches the plant, a particular pH of soil, and consistent rainfall.
Climate change brings unpredictability to growing conditions so even if you had to move where you grow it, it won’t necessarily mean it’ll grow well. Plus different locations can bring on new diseases for the (coffee has its fair share of diseases to combat with) and so new varitals would need to be selected which is no simple task.
As the article points out, coffee is notorious for being fussy when growing it.
gravediggersbiscuit@sh.itjust.worksto F-Droid@lemmy.ml•Syncthing for Android discontinued8·11 months agoCan confirm it definitely works!
gravediggersbiscuit@sh.itjust.worksto F-Droid@lemmy.ml•Syncthing for Android discontinued20·11 months agoI wonder if you can still have syncthing on Android just by using Termux, installing from the package manager (looks like syncthing is available) and installing Termux on boot app add on to keep syncthing running no matter what.
Obviously not as convenient but potentially a workaround
That’s a great loaf!! Nice one
gravediggersbiscuit@sh.itjust.worksto Asklemmy@lemmy.ml•What are your favorite shows and why?3·1 year agoHappy Endings
gravediggersbiscuit@sh.itjust.workstoMicroblog Memes@lemmy.world•Obelisk, the royal murder horseEnglish2·1 year agoI get where you’re coming from. These stories are still funny and entertaining even if not quite true. Apologies for being a buzz kill 🙂
gravediggersbiscuit@sh.itjust.workstoMicroblog Memes@lemmy.world•Obelisk, the royal murder horseEnglish7·1 year ago😆😆😆 yeah pretty much anything can be used for clickbait news with them
gravediggersbiscuit@sh.itjust.workstoMicroblog Memes@lemmy.world•Obelisk, the royal murder horseEnglish84·1 year agoThis like most things on the internet this is bollocks (or more fitting, horse shit). Obelisk didn’t conceal food, the pigeons fed on crumbs from food given to the horses by tourists. Any pigeon was killed by accident.
This lie comes from this article https://www.thefield.co.uk/country-house/queens-horses-black-beauties-knightsbridge-31908 which also lies about a horse called “Boomer” running away from the escort of Prince Charles and Lady Diana wedding in 1981. The horse was called Wildfire and ridden by Shotgun Mills and while it ran away, they didn’t rejoin the escort after having a drink. The escort was also going towards St Paul’s which is the opposite direction to Whitehall
Both those horses were specifically Blues and Royals horses
gravediggersbiscuit@sh.itjust.worksOPto Pizza@sh.itjust.works•Pepperoni, jalapeño, red onion, mozzarella and rocket sourdough pizza1·1 year agoAw thanks. I have this electric pizza oven that can get up 400C
https://unold.de/products/pizzaofen-luigi
Really awesome and way more convenient than a wood fire oven (though I can imagine a wood fire oven will give the best results)
gravediggersbiscuit@sh.itjust.worksOPto Pizza@sh.itjust.works•Pepperoni, jalapeño, red onion, mozzarella and rocket sourdough pizza1·1 year agoThanks. Hahaha I don’t blame ya!
gravediggersbiscuit@sh.itjust.worksto Programmer Humor@programming.dev•I think I'm switching, I like the new UI2·2 years agoExcuse me, do you have a moment to talk about our lord and saviour Vim?
I see this said about the 90s all the time but really this is not true. In the 90s there was (not an exhaustive list)
It’s very common when asking any person what was the best period of time for the world for their response to be a period of time their formative years were.
The reality is history is full of horrid horrid things and nostalgia is a follie that’ll trick your mind.