This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-03-02
Channels
- # announcements (25)
- # babashka (76)
- # beginners (74)
- # biff (36)
- # calva (11)
- # cider (5)
- # clerk (43)
- # cljs-dev (4)
- # cljsrn (12)
- # clojure (111)
- # clojure-austin (14)
- # clojure-europe (82)
- # clojure-nl (2)
- # clojure-norway (5)
- # clojure-uk (1)
- # clojurescript (36)
- # core-async (13)
- # cursive (30)
- # datomic (12)
- # fulcro (6)
- # honeysql (9)
- # hyperfiddle (73)
- # instaparse (3)
- # introduce-yourself (1)
- # membrane (40)
- # nbb (2)
- # off-topic (6)
- # other-languages (9)
- # polylith (33)
- # reagent (2)
- # reitit (7)
- # rum (7)
- # shadow-cljs (47)
- # tools-deps (10)
- # vim (11)
- # xtdb (16)
morning
I've posted a similar shot recently but took another few and am finally happy with this one 🙂
we’re closing in on 3 months of work for our IT department to create 1 tiny virtual server and two DNS records. They managed to set up the server a couple of days ago, but those two DNS records I specified sure are difficult for them to implement. Me: I would like the hostname and a subdomain wildcard to both point directly at the server’s IPv4 address. IT Department: slaps hood of server best I can do is set the www subdomain to point at the server and leave the hostname itself pointing at a random location.
back in the day you could sit next to people and help them to get it right, or you could pick up a phone to your mate. Now that we have everything based on tickets for "productivity" it's harder to maintain empathy on all sides.
I get this a lot with a pharmacy I order medicines via my house doctor. They always get some amounts wrong or leave things out
@U04V5V0V4 and the worst part is that the old days was 2020 in this place, but they centralised it right after I started working here
I tried calling them, but you just get a receptionist that says “oh yes, they are very busy, I’ll tell them to get on it”
you need to get a hold of the name of the person within that department that messed up, so you can directly call them instead of new issues being shifted to different people all the time
It’s always the same person, they just hide behind the ticket system 🙂 that’s why I’m suspecting a lack of reading glasses
DNS has been reconfigured, waiting for the changes to propagate, but it seems like the saga is finally over! 😮
but really the main issue isn’t that they are incompetent, it’s that they only skim the information I send them, so they keep getting it wrong.
Looks like a fun outing!
My girlfriend found out via her “moms-who-gave-birth-at-around-the-same-time” group on Facebook that apparently, our son has big feet. He uses size 25. What size does Isak wear? His shoes seem much smaller than Rumle’s.
I mean, we’ve got the fiord here, and also beaches, but it’s all a bit far away
hahaha that’s great
Would be fun :hugging_face: but, considering that I just said no yesterday to a family birthday which is held nearby because it would be too much for us to handle, then comparatively, visiting Copenhagen is still far off in the future for me 😓
Good morning!
I have a .WAR file. I just want to run a web service on some port N. What is the shortest path there? I currently have a misbehaving Tomcat server which insists that my web service should be returning 403 no matter what.
I have googled and googled and read so many XML documents and log files over SSH that my hands have cramps from
Last time I dealt with war files you just dropped them into a specific directory and restarted tomcat. That was almost 20years ago though…
yes, this is still the process, yet Tomcat insists that this webapp is forbidden 403 no matter what…
So it’s not a matter of using Clojure, war files should be standalone and deployed via a servlet container.
sure… but I’m not having any luck with that… maybe I should try with a fresh tomcat install
nothing really… a bunch of warnings due to some cache stuff that isn’t properly configured
Have you ever seen this war file successfully deployed? Does it make sense to upload a hello world war file to rule out application misconfiguration?
just old school sysadmin stuff… a big server running 100 services set up over a decade or two
BTW I did manage to debug it with a local Tomcat server! The issue turned out to be that the Tomcat “web app” depended on an older version of an API than what we have running on our production server. This is all open source code so I really shouldn’t complain, but those devs do love to rewrite everything every single year for no apparent reason… Anyway, the reason the Tomcat web app and its API are out of sync is that the guy who wrote the web app portion has fallen ill (long-term) so it is completely unmaintained. Their devs solved the issue by running multiple versions of the API which is probably what I will be doing too.
it’s being reverse proxied by nginx, but even when I curl the local web service I get 403 and some standard tomcat error message
BTW I did manage to debug it with a local Tomcat server! The issue turned out to be that the Tomcat “web app” depended on an older version of an API than what we have running on our production server. This is all open source code so I really shouldn’t complain, but those devs do love to rewrite everything every single year for no apparent reason… Anyway, the reason the Tomcat web app and its API are out of sync is that the guy who wrote the web app portion has fallen ill (long-term) so it is completely unmaintained. Their devs solved the issue by running multiple versions of the API which is probably what I will be doing too.