You are misled/misleading. Get informed about the political theory of domestic deployment of troops for the purpose of policing in western democracues. Look how those who speak for the U.S. military personell (former generals, the editorial of that magazine they produce in the U.S. army prior to being pruned) if you need some motivation.
(Won’t fully repeat my other post.) Shame is such a big word. ‘Give people the chance to _teach_’ would be my reply. Which you probably would see as even more vicious, but it’s 100% sincere.
As a junior I made the front page of national news. I answered a question with a very big number on a Friday afternoon. Hit headlines on Saturday. Our prime minister had to defend my mistake in public. (He never admitted any mistake. With just enough spin nothing sticks.)
The head of the organization literally cursed and spat at me. In that same meeting from the no. 2 down they stood up for me. It’s still a great story about how to treat mistakes 20+ yrs on. Admit mistakes. What did __we__ (not: he) do wrong? (Hint: from medior to board everyone had an afternoon off and we had never discussed stakeholder management. I was in no position to say no to a ministerial request.)
Maybe you just were never carefully told about something you did wrong in a way that everyone feels like they learned from it. The top reply to my comment put it better than I could, I think there was an overcorrection. I believe in fixing the process first, but there are situations where shame is the right solution. The current en-vogue thing of pretending all is good but penciling in that person for the next layoffs is I think worse than a bit of shame if that fixes the problem and avoids more drastic actions later on. Silicon Valley is very PC but then lays off without remorse so its funny to see this combo of "we care about never hurting your feelings all the way to the point where we fire you without a care in the world".
Shame is a subjective feeling. There's no "right" and "wrong". Shaming is the action being criticized. No one is arguing everyone should just shut up when a big mistake is made.
Might want to do yourself a favor and figure out the implied question behind 400(?)
It's... not a lot of work. At least for me personally it rubs me the wrong way to name an important metric in Fahrenheit and then to give an estimate with a question mark for the proper SI unit.
Well there have been a lot.. philosopy, polis, democracy, hemlock cup, enlightenment (note the perversion of "the dark enlightenment"), modernity, the resistance (against Nazism), psychoanalysis, postmodernism and critical studies (postmodernism in the genuine sense of the philosophies/theories that you would assign that label to and not in the misguided sense of relativism as arbitrarity; basically continental philosophy, frankfurt school (e.g. adorno horkheimer, habermas) and the french (e.g. foucault, derrida, deleuze (& guattari))
Of course there were also absolutism, colonialism, the jacobines, nazism & facism, to name just a few. Part of western values, from my perspective at least, is an implicit promise, that what happened in the 20th century with facism was the darkest hour, so to speak-> never again
Philosophy and democracy are hardly unique to western culture. But I see how one would be proud of and want to preserve most of these things.
But putting that aside, most of this is modern, i.e. formed after the 17th century. I hardly see how any of this is traditional. Most of the good stuff here was formed in the 20th century—emphatically modern, borderline postmodern.
Yes, I'm being facetious. But I really fucking hate conservatives that don't understand what the words they're saying mean.
Could you supply some ressources that make your framing plausible? That would be a valuable service to the community, as this discussion seems to be highly polarized. (from the ratio of downvoted comments to all comments).
Reading through this discussion and not having heared of this before it's hard to tell what's genuine and what's not.
One could read this persons activism as a narrative of "lesson learned" in this regard. Well you want the law applied to everyone equally? Well, actually.. you're right. In the sense as it seems to be the case that there is a motive in this persons action of make them experience being subjected to the legal/social order they promote.
Speculative hyothesis: It might not be compatible with a capitalist social order, but also I get the impression that it' something that will staylike something that will stay. The involved means of production and their control are the critical point here. (Also - highly speculative - potentially the question if they should be >>owned<< at all even by some abstract commons)
Can someone with a deeper understanding of these sort of processes say something about the intricaies of building such a transformation process? Seems like constucting the architecture and feedback loops that guide the LLM to achieve a specific goal (byte wise bevhaviour replication) seems rather non trivial and as its on field of research? How common is it to achieve what the authors are publishing here as been having achieved? How elaborate are the achieved goals (i assume that what is specified here is rather precise and assume its true - in good faith for the sake of my question and as it is stated for the sake of being potentually reviewed/checked against)? How advanced are the metrics/behavioral constraints that guided the process? Whats the state of the art of this sort of ehm..reversereplication(?)archaeomorphic kyberneering(?), archaehylomorphic programming(?). Seems like an interesting approach and maybe thats also partially because I haven't seen such an approach - regarding the specificity and methology of defining the desired endresult.
[some speculative neologismification based on my (limited) understanding of ancient greek ethymology《to illustrate my aesthesis of that process. For the notion of hylomorphism see gilbert simondon ("machine") philosophy]
Adding: polite request to overlook potential orthographic deficiencies of text
Ive done this sort of thing using deepseek flash swarms for just a few bucks. The key thing is that each project needs its own swarm script. you cant just tell the bot "pls port this to rust". you need to analyze the architecture, build a proper plan of how the translation will go, and then iterate your execution script to launch hundreds of bots to do the various stages of the translation. And you need to iterate these stages to make sure it all works.
So, for example, i ported stb_image from C to Jai (you can think of Jai as similar to Zig, another c-style lang).
To do that, i built my own agent scheduling/swarm system, because there is nothing out there that works, its all slop.
First i used normal claudecode and the likes to build a set of translation rules, documentation about the project, and set up the context for all.
Then the first stage of the swarm was to use claude to split the 7000 line library into chunks of about 500 lines each, a few functions/structs at a time. Then each deepseek bot had a task of translating that snippet of code from C to Jai.
Next, i had a system merge it all back together. This was done with just a single claudecode running over time. It had to be agentic and not a script because the bots often would duplicate definitions and things like that.
Then, i had a system where it would try to compile the project, get an error list, parse the error list, and split that error list across multiple fixer agents.
Doing multiple fixers because Jai can give you a large error list across a bunch of functions, so this speeds it up. If your project rules/setup/etc is better you can improve this step to have less errors to begin with. The more tools you can have to prevent errors instantly on a feedback loop of each sub-task, the better it goes.
After the fixer step, the code was ported, but with some mistakes. I ran a wide pass of having 2 agents look at each struct/function, and validate if the translation was done well. 2 of them because if both agree the function is fine, the function probably is actually fine.
Next, i began iterating the test suite. The library had a decent enough test suite, so splitting the work between testing + fixing tests across the different parts of the library was doable. for example i would run fixes on png format and jpeg format at once couse their code doesnt overlap.
After the tests were 100% green, the next stage was to implement a literal exploit finding swarm to fuzz it all, which actually found a couple errors on the original library and found a bunch of more obscure bugs in the port.
After that, now i have my own version of this image loading library, more hardened than the original, on a pet lenguage i wanted to do it for.
Note that the better the AI you have, the less error the process has, and the larger chunking you can use. Mythos can likely do this same port much easier, but deepseek flash did it in about 3 bucks of tokens including the trial runs and experiments.
I later use this tooling to build a translator agent swarm for my videogame that can do english to anything translation for 7000 strings that can be menu buttons, tooltips, small fluff text, and others.
It's written in bad faith in my opinion and also factually wrong in multiple places.
Nicotine sulfate which the srticle explicitly discusses as one of the "natural" substances, used in organic farming (i assune the context is US specifix here) is
a) not the natural occuring nicotine of e.g. tobacco plants and b) stictly prohibihed for all types of agriculture, organic or notchemically modified nix.
And the use of the LD50 toxicity as sole metric is laughable: caring about not being exposed to carcinogenic substances, would not even make sense, when everythink that is harmful would also be accordingly toxic in the sense of an LD50 dose.
It is good to known many of these toxic organic pesticides are banned in the USA. I do wonder about the large fraction of the produce in US grocer's stores that comes from other countries though.
reply