

Yes, literally says
please (будь ласка) stack (складіть) chairs (стільці) at the end (наприкінці) of the day (дня)
Ukrainian, like many slavic languages, has no articles and uses grammatical cases


Yes, literally says
please (будь ласка) stack (складіть) chairs (стільці) at the end (наприкінці) of the day (дня)
Ukrainian, like many slavic languages, has no articles and uses grammatical cases


If Cyrillic is fine you can say in Ukrainian “Будь ласка складіть стільці наприкінці дня”. I’ll transliterate with polish spelling as it’s closest sounding language I know, not perfect but best I can do: “bud laska skladit stilci naprykici dnia”


As a teenager I was the only person in the house who understands computers. Naturally I was the admin. All this computer “jailing” is so insane to me.


Is he dumb? It’s been almost 12 months since A. D. started. What was he waiting for


My networking knowledge is not good, so maybe it’s nonsense indeed. I just thought if everyone in the network knows what is blocked then DDoS protection could be distributed because every “reputable” switch/router in the network can block connection as early as possible without hopping close to destination creating unnecessary traffic


I’m wondering can DNS be extended to handle blacklisting. It already has some level of security resolving “C should have no control over A and B communication”.
Yaml is dogshit format. If you need tree-like structure use json if you need list of props use toml or simple key value pairs. I fucking hate app properties in yaml.
It should’ve never left the basement of crackhead who thought “let’s make schema-less format depend on number of invisible characters”.
I’ll rather save my data in Copybook and record it on tape then use this Python-bastardized abomination


I’m curious now. Can you describe “corrupted”? One char off? Non-ascii gibberish?
We just gonna have other bully. That’s how power vacuums works


Slaves do not have right to protest


Okay but how is this ego boost if everyone knows it’s just greasing.
I mean, imagine you lost competition and started crying about it like a baby. Now someone comes in and gives you a medal from plastic for “doing great job” just to make you behave. Wouldn’t you look pathetic and not offensive to you?


I’m having a hard time identifying which one of them is more dumb. The first dumbass which thinks somebody cares what football CEO has to say in peace prize nomination, the second dumbass which thinks football CEO’s peace prize is legit or fist the dumbass which thinks that second dumbass is dumb enough to believe that it’s legit.
I’ll should ask my pals to inaugurate me as humanity’s most seductive eyebrows holder of the history. They should establish international community of holy drunks of the John Paul the 2nd street, though.


And I say no.


If it’s blocked then why there are so many wankers. Sorry, couldn’t resist.
On the serious note, isn’t age of consent is 16 in UK?
Polish also distinguishes “oni” (they he) and “one” (they it/she). Probably most sexist language I know


That’s if their API implementation itself is just bad and underlying DBs aren’t . If they or someone else with bad practices manages the DB you may be in worse situation than before. In general, to me, shared DB is bad because it is hard to not cut corners in such design and ensure that DB owner does not break contract for all consumers. This is basically why APIs created - to guarantee contracts and encapsulate change. But I digress. My point is that it will be your responsibility to ensure schema changes adopted to expected contract. If data is not normalized/structured, like say, it’s JSON then I would stay away.


Does API actually doing anything or it’s pass-through to data source? You could request data feed and build adequate API on your side


Infrastructure is there to be used by apps/services. It doesn’t matter how it’s created if infrastructure across providers does not provide same API. You can’t use GCP storage SDK to call AWS s3. Even if API would be same, nothing guarantees consistent behavior. Just like JPA provides API but implementations and DBs behavior are inconsistent
How large is very large? Would it be something that
jqcan’t do? Is it purely string search or JSON-tree search?Generally you would want to get file size, split it into ranges which can be read as valid UTF-8. Feed each range into reader thread. Can be inefficient for HDDs because each thread will try to access random location on disk forcing needle to jump back and forth. Also you’ll need reread ranges at split point with some positive and negative offset in case desired content got split. Things are getting much more complicated if you want JSON-tree grep. Branches may get split from parent nodes across multiple ranges.