Yep - although he definitely should get in trouble for flirting with students.
I was not aware of this before and this is probably one of the most pedantic things I’ve heard for a while - great answer.
Considering how conflicts between other neighbouring countries around the world are going, loudspeakers and trash balloons seem like pretty great choices.
I don’t know if there are agencies focussing on this, but in general it probably comes down to the company more than the agency. Probably worth filtering for companies offering flexible hours in the description
I would say at the moment the IT job market is incredibly competitive for candidates, so it might be even more difficult to find truly flex roles when they can so easily find 100s of people who just work regular hours.
On your last question: I’ve been a hiring manager in 2 companies (although in the UK) for software engineers and adjacent roles (like devops, platform, QA) and I would not care whether someone needs equipment. In the big scheme of things spending $800 for a monitor, keyboard and mouse is not even a drop in the bucket for the cost of an employee. What I would want to know is how do you work in a team in your situation and what arrangement can we do where you have a good experience, but other people in the company can still count on you. E.g. if you are working on a project and an issue pops up that’s blocking others from progressing and we need you to discuss, but you’re having a bad day and not working, what are the options you can offer? Or what if you get blocked when everyone else is asleep so you can’t progress?
I think being prepared and upfront about this in an early stage of interviewing would be ideal, it signals that you have thought about others around you and also weed out any companies who aren’t willing to make this arrangement work. That being said, as above it’s a very competitive market right now so chances are pretty slim (at least in the UK).
Also keep in mind once you look at companies who hire from abroad, you’re now also competing with (comparably) cheap labour from developing countries, who will likely agree to much worse terms.
Edit: one thing I forgot, you may have the option to be your own boss (depending on your skill level) and freelance on a project basis rather than on a per-day basis.
Use the buddy system. Years ago I had a work-friend, we’d just book meetings with each other a couple of times a week, go to a meeting room and just hang out, I taught him to juggle, or we’d watch an episode from a series etc.
It was fun feeling like we got away with something, but realistically nobody questioned it because we both got our work done and it was a good company where that mattered more than time spent at a desk.
I wonder if this will also have a reverse tail end effect.
Company uses AI (with devs) to produce a large amount of code -> code is in prod for a few years with incremental changes -> dev roles rotate or get further reduced over time -> company now needs to modernize and change very large legacy codebase that nobody really understands well enough to even feed it Into the AI -> now hiring more devs than before to figure out how to manage a legacy codebase 5-10x the size of what the team could realistically handle.
Writing greenfield code is relatively easy, maintaining it over years and keeping it up to date and well understood while twisting it for all new requirements - now that’s hard.
Good point, thank you for pointing it out.
Maybe a better way to phrase it is that a report from the investigator could qualify what they considered/found when they said the claims were false, baseless etc, and any evidence they found/data they had access to. (E.g. if they could look at all internal communication but their data retention policy is 6 months and this happened 7 months ago, its not the same as not finding anything)
For example, “allegations of sexual harassment were ignored or not addressed” is a wide range. It could be there were no allegations recorded from the employee (as in, they weren’t reported), or they were addressed by a slap on the wrist or a “just don’t do that again” to introducing workplace behaviour training, forcing the perpetrator to go through it, suspending them without pay and so on.
You are right it’s not proof of no wrongdoing, but it would serve as proof that they handled things in a generally suitable manner, rather than that they managed to twist things around to check a box for the investigator.
Release an actual report of the investigation by the third party rather than a statement.
What claim was investigated, what proof did they find if any, what evidence did they have access to etc.
Finding no proof of wrongdoing or proof of no wrongdoing is a big difference.
Yea idk.
After having dealt with some audits (although not this exact topic), in general they followed the same format. “Assert that we do the thing we claim to be doing”. So if the thing they claim to be doing is a low bar, the audit means nothing. If they dont release any evidence, or a report of what they were ascertaining it means very little IMO.
I can’t remember if the employee released any evidence with her claims either though, but in general I’d prefer my odds with assuming her story is closer to the truth against a company which has had other mishaps recently, underpinned by evidence. All of which they tried to brush under the carpet.
So yeah. I’m pressing X for doubt.
Oh cmon they don’t hoard the money. They use it to pay each other/politicians to make sure the status quo remains.
I wish you were the one writing the laws, this would be awesome.
It’s okay - just as long as it’s not a slightly larger pack of toothpaste, or god forbid some water. Luckily those get caught, so we’re still safe.
So they filled reddit with bot generated content, and now they’re selling back the same stuff likely to the company who generated most of it.
At what point can we call an AI inbred?
I have never seen contributors get anything for open source contributions.
In larger, more established projects, they explicitly make you sign an agreement that your contributions are theirs for free (in the form of a github bot that tells you this when you open a PR). Sometimes you get as much as being mentioned in a readme or changelog, but that’s pretty much it.
I’m sure there may be some examples of the opposite, I just… Wouldn’t hold my breath for it in general.
X4? Its on steam but for the rest, maybe? (Or previous iterations)
I think I misunderstood your problem, I assumed the issue was the volume mounts and after testing it I was indeed wrong - the docker cli now accepts relative paths so your original command does the same as what I suggested. After re-reading your issue I have a different idea of what’s wrong, but would have to see your dockerfile (or for you to confirm) to be sure.
Do you add 10f.py to the docker image when you build it and do you specify the command/entrypoint in the Dockerfile? There are possibly to issues I can think of with how you do that (although considering the docker compose works it’s probably the 2nd):
/data
in the image - when you mount a volume over it would make the script no longer exist in the container.docker run -v ./:/data -w /workdir tenfigers_10f:v1 10f.py
is the last bit - you override the command which makes it try to look for it at /data/10f.py
, if you omit it the last part (10f.py
) it should run whatever the original command was and assuming you set the cmd/entrypoint correctly in the Dockerfile it should see /data
as ./
in python.(Also when you run it with the CLI you might want to add -it --rm
as well to the docker command otherwise it won’t really behave similarly to a regular command)
It works in docker compose because compose handles relative paths for the volumes, the docker CLI doesn’t.
You can achieve this by doing something like
docker run -v $(pwd):/data ...
pwd
is a command that returns the current path as an absolute path, you can just run it by itself to see this. $() syntax is to execute the inner command separately before the shell runs the rest of it. (Same as backticks, just better practice)
I imagine that wouldn’t work on windows, but it would on either osx, Linux or wsl.
Generally speaking, if you need the file system access and your CLI requires some setup, I’d recommend either writing it in a statically compiled language (e.g. golang, rust) or researching how to compile a python script into an executable.
If you’re just mounting your script in the container - you’re better off adding it directly at build time.
Pretty confident the planet will be fine, maybe it’ll take 10 million years but it’ll thrive again, in some form.
What we are dooming is humanity, and honestly at this point it seems like we deserve what’s coming.
I wonder if real zebras would look at meatless robot zebra exoskeleton walk away from being eaten and just be like “wtf we can do that? Why did I bother running away all this time?”
Not a lawyer but in the scenario where proton closed the source but kept offering the build, even if gpl3 still applies since they’re the only copyright holder (no contributions) it’d only give them grounds to sue themselves?
From gnu.org: