[ home / rules / faq / search ] [ overboard / sfw / alt ] [ leftypol / edu / labor / siberia / lgbt / latam / hobby / tech / games / anime / music / draw / AKM / ufo / 420 ] [ meta ] [ wiki / shop / tv / tiktok / twitter / patreon ] [ GET / ref / marx / booru ]

/tech/ - Technology

"Technology reveals the active relation of man to nature" - Karl Marx
Name
Options
Subject
Comment
Flag
File
Embed
Password(For file deletion.)
What is 6 - 2?

Check out our new store at shop.leftypol.org!

| Catalog | Home
|

File: 1789143166929-6.jpg (182.88 KB, 765x1205, CR1337-HR6iR4kaIAAvw_-.jpg)

 

post privacy zero trust nihilists keep winning!

vpns are a scam. its a good day to be a paranoid schizo.


body ist too short. was soll ich sonst noch sagen!!? aahooga?
2 posts omitted.

>>34330
translation for the non-nazi population:
"then what, no solution? is it really pointless, that VPNs in android (inclusively grapheneOS) are no more than a placebo?

or are everyone here already dead and im the only one that isn't"

They are still useful to circumvent geolocation/blocked websites in your country. Why would you do anything important on your phone anyways?

>>34339
Okay i checked my translation and apparently the first paragraph is wrong:
"What’s the matter, not a single reply? Doesn’t anyone care that VPNs on Android (including GrapheneOS) are nothing more than a placebo??"
Why do you care so much about android

>>34340
It's the graphene OS schizo that got bored and made a second thread

>>34339
>Why would you do anything important on your phone anyways?

die "privacy comnunity" wird mit jedem jahr immer verlogener und zynischer. sie glauben nicht mal mehr an echte privatspähre, dieses ideal haben sie längst aufgegeben.

und trotzdem halten sie fest an pseudo lösungen wie grapheneos oder mullvad vpn.

scheinlösungen die nichts bringen, außer dass man sich eine tolle identität basteln kann auf die man stolz sein kann.

>>34339
>translation for the non-nazi population

ja so sprechen echte linke. einfach alle die deutsch sprechen als nazis abstempeln. bin ich hier auf 4chan?



 

trolling the CEO of mastodon.

this could be very funny!

https://mastodon.social/@aaarkii/117138844910163569

not too short. not too short. not too short
2 posts and 1 image reply omitted.

>>34186
>>34187
translate to human brother or atleast provide it in a translatable format

They really need to rename Mastodon (software), this shit where there's a Mastodon (software) and Mastodon (non-proprietor company) is confusing and a burden on the growth of the network.

>>34251
oh nein, mein freund. ich werde hier nie wieder mehr auf englisch irgendwas posten. wie leben im zeitalter der maschinellen übersetzung. es gibt absolut keinen grund sich dem anglo diktat zu unterwerfen. vor allem nicht auf einem forum, dessen user größtenteils multipolaristen sind. nein. anglo supremacy is over. jeder hier sollte in der sprache hier schreiben, wie es ihm passt. nirgendwo im internet muss man das machen. nicht auf reddit, nicht auf x, nicht auf fucking bluesky. jeder schreibt in seiner eigenen sprache. es ist vorbei. fucking anglos.

>>34252
das ist alles absicht. das ganze geschäftsmodell der mastodon gmbh (die übrigens nicht gemeinnützig ist) beruht auf maximaler intransparenz. es gibt faktisch nur das offizielle mastodon netzwerk, das um mastodon.social kreist und von eugen rochko und seinen lakaien kontrolliert wird. alles andere sind absolut irrelevante und schrottige sekten, die vom hauptnetzwerk isoliert sind.

das schlimmste an mastodon ist nicht mal, dass es absolut leer an kreativen inhalten und eine radikal links-liberale echokammer ist. man kann mit niemanden diskutieren, ohne sofort gemeledet und gebannt zu werden. ich habe es wirklich versucht und mein power level versteckt. geht nicht. diese leute haben null ambiguitätstoleranz.

MASTODON IS ASS.



File: 1787991049489-4.png (383.11 KB, 526x640, ClipboardImage.png)

 

expectation
>oh i'll learn to code; that means i'll learn the syntax of some language then start building stuff
reality
<oh i'm installing a bunch of libraries and dependencies and package managers and IDEs and other garbage I don't want in order to follow tutorials, and the commands i'm being told to use aren't working and the error messages are really long and impossible to paste into a search engine and full of doxxing details about my file system
4 posts omitted.

File: 1788191865703-7.png (1.02 MB, 580x748, turboad.png)

despite its age and cultural irrelevancy in the modern era, pascal is still a great language for learning programming as well as general use and freepascal is available on every OS and compiles very fast to machine code and doesn't have all the weird idiosyncracies and confusing symbol-heavy teletype-influenced syntax that C has and the unit system is a lot less cumbersome and confusing than header files are, and unlike go/rust it also allows for low-level memory management and doesn't abstract it away behind a garbage collector or a borrow checker or smart pointers or other bullshit.

to give an example of why i think pascal is still a good first compiled language, consider the following code:

program Hello;

const
  N = 100;
var
  Msg: string;
begin
  Msg := 'hello';

  if N = 100 then
    WriteLn(Msg);
  end;
end.


the const keyword creates actual compile-time constants, variables have to be declared at the top of scope and the name of the variable is written first rather than its type, strings are a native type with proper stored length and bounds-checking, the assignment operator is ":=" instead of equals sign, the equals sign actually means "equal to", the standard library doesn't need to be explicitly included to use the WriteLn() print function, WriteLn() can print variables directly.

and here is c:

#include <stdio.h>

#define N 100

int main() {
  const char *msg = "hello";

  if(N == 100) {
    printf("%s\n", msg);
  }
  return 0;
}


the standard library has to be explicitly included with the #include directive to have access to the printf function, true compile-time constants have to be declared as #define preprocessor macros because const doesn't actually make things constant, types have to be written before variables as well as functions to specify their return type which is a lot less readable when you have a lot of variables declared in a row, there is no string type even in the standard library and you have to declare a pointer to an array of characters and make it const to make the characters read-only (but not actually a real compile-time constant) to prevent the program from crashing with a segfault should anything try to modify the string, also c's ad-hoc char array strings do not store their length and use an iPost too long. Click here to view the full text.

>>34245
I started with Pascal, it's pretty cool.

>>34234
>Likbez can be useful but at the end of the day you've got to learn to search.
>Libraries too big or dynamic to read in any other way.
>Pulling examples off the shelf where there are no likbez can be a good first step.
>You could write a script to replace any instance of $HOME with the literal $HOME.
>You could also have a LLM summarize generating a search query.
I've been taking a crack at this a little.
Haven't done the security work or gotten the agent to eat the output correctly yet (in my working tree).
The only thing published so far is the tools and the API thin wrapper.
The idea is to have an agent only for local/remote search, and lock it in a chroot.

https://codeberg.org/jugaad/much-apropos-about-nothing

>>34245
Dawg why didn't you mention Ada at least once? The lack of variable length types makes string handling in Pascal extremely cumbersome, which is why writing games and real-world applications in it is usually way harder than it needs to be. Ada fixes this omission with generics, variable length bounded and unbounded types. Delphi is likely also a significant improvement over Pascal, but i don't know enough about the language to have formed an opinion about it.

>>34307
Published something that seems to work, though the free models are too weak to run it consistently.
Think need subagents to prevent from maxing out the context window too soon.



File: 1785917447931-8.jpg (21.69 KB, 1200x900, grapheneos-1.jpg)

 

One person controls the single global signing key.

Every update pushed to 400000 devices is signed by Daniel Micay. He already proved in 2018 he will destroy signing keys and brick thousands of users devices on purpose when he feels wronged. That same key can push any code, silently, automatically, to any phone, at any time. verified boot guarantees the device will accept it.

You would have no way to know what was added
29 posts and 10 image replies omitted.

The legal separation from Motorola Solutions is a distraction tactic. The core issue remains unaddressed:

GrapheneOS partners with Motorola Mobility – Lenovo’s mobile division. A corporation with documented privacy concerns, potential Chinese state influence, and proprietary closed-source hardware/firmware.

>Chinese state influence
Based

>>34331
>Supporting more phones is bad
OK, buddy.

>>34333
ok corpo cuck.

>>34331
>>34334
Stop spreading FUD. Lenovo and Google are good and trustworthy companies. You are just poor.



File: 1787950068567-5.jpg (130.17 KB, 1038x999, IMG_5488.jpg)

 

https://decode39.com/16319/autistici-inventati-case-sets-a-new-counterterrorism-precedent-irdi-says/

>The U.S. decision targeting Autistici/Inventati should not be read simply as another sanction in Washington’s crackdown on violent extremism. According to Beniamino Irdi, senior fellow at the German Marshall Fund and CEO of Highground, the more significant point lies elsewhere: for the first time, the logic of material support is being applied openly and forcefully to technological infrastructure. The target is no longer only those who carry out an act, but also those who provide the infrastructure that makes it possible. It is a choice that sets a delicate precedent for European allies and for the balance between security, intelligence and legal safeguards.


>Why it matters. The designation marks an unusual use of U.S. counterterrorism sanctions against a European technology collective whose main activity is providing digital infrastructure – from encrypted communications to web hosting.



< It also creates a potential point of discussion between Washington, Rome and Brussels: the U.S. designation carries immediate financial consequences under American jurisdiction, but does not automatically place Autistici/Inventati on Italy’s or the European Union’s terrorist lists.


>What happened. On August 26, the State Department, working with the Treasury Department, designated Autistici/Inventati (A/I Collective) as a Specially Designated Global Terrorist under Executive Order 13224.


< The State Department describes A/I as an Italy-based extremist organisation that builds and operates digital infrastructure used by violent Antifa cells and other far-left groups internationally. Washington says its services include encrypted email and chats, web hosting, secure videoconferencing and streaming, anonymity tools and the infrastructure behind the Noblogs platform.


>Washington specifically cited the Kurdistan Workers’ Party (PKK), which is designated as a terrorist organisation by the United States and is also on the EU terrorist list. Treasury says Autistici/Inventati was
Post too long. Click here to view the full text.

Prediction: Disroot email is next.

>>34226
Really? It went all down?
https://digdeeper.love/articles/email.xhtml#autistici
This guy seems to take everything at face value but atleast in their policies they claim to be against military actions and cryptocurrency (which would go against what they got taken down because of) but as I said it (was) probably there as a front to not get taken down
I remember some MLM org here using it but they switched to an independent? site.

Should online leftist publications get OpenNIC and/or onion domains? Or go back to physical zines and newspapers? Though I don't prefer the latter option since the internet obviously makes stuff infinitely more accessible.

>>34226
das sind bidenistische glowies.



File: 1772718125696.jpg (237.69 KB, 1408x768, unnamed.jpg)

 

The other thread hit bump limit and I'm addicted to talking about the birth of the ̶a̶l̶l̶-̶k̶n̶o̶w̶i̶n̶g̶ ̶c̶o̶m̶p̶u̶t̶e̶r̶ ̶g̶o̶d̶ the biggest financial bubble in history and the coming jobless eschaton, post your AI news here

Previous thread:>>30810
251 posts and 30 image replies omitted.

>>34297
The counterargument is that it still found some nasty real vulnerabilities.
Yes, it was an extremely small number. Countable, even. But that is still better than nothing.

>>34302
If you're the type of person to obsessively check various benchmarking (I know they're mostly bullshit but whatever) websites you'd eventually notice a degradation in some random benchmarks after a new release from a vendor. For example, Qwen3.8 scores noticeably worse than Qwen3.6 on some less-important benchmarks. The recent Astra release by OAI famously revealed small degradations on two benchmarks that prevented it from completely topping the AA index. Fable 5.1 has a slightly higher hallucination rate than Fable 5. Etc.

It's like a mild version of catastrophic forgetting, where if a model doesn't constantly get RLed for something it would slowly start to blink on it.

>>34303 (samefag)
That said, it's still obvious that Project Glasswing was just pure grift from the start.

Appears that OAI has already switched to quantised Astra instead of the actual model since everyone is complaining about it becoming dumber today all of a sudden.

in letzter zeit hat man bei gemini die zensur dermaßen erhöht, dass es absurd ist. tja, dann geh ich wohl zu dola.




 

Who the fuck was it that says Lunduke was a good guy? He's a rightoid now which I already knew due to his petit bourgeois class status and that debate with Stallman on free software.

Now all his videos are about h1b and discrimination against whites and pronouns and shit.

Feels good to be vindicated as opposed to the people on /tech/ who said hes a good guy or whatevr.
23 posts and 3 image replies omitted.

File: 1758354514200.png (788.26 KB, 1365x740, ClipboardImage.png)

Having a normal one

>>31338
he looks like the meme lol

ultra-rare informative lunduke

I was following him on Twitter for a while because of his dumb takes, but I had to stop because it stopped being funny after a while.

any of these people who take it upon themselves to try to become some kind of extremely-online micro-celebrity armchair journalist crusader constantly seeking conflict and controversy are fucking crazy, normal people who value their sense of self don't act that way and don't feel comfortable reinventing themselves as some kind of superhero character that completely eclipses their actual selves and turns them into some kind of one-dimensional entity rather than a human being.



File: 1788959303633-9.png (76.52 KB, 2000x2000, icon.png)

 

die beste, inoffizielle art X zu benutzen. diese app ist ein echter gamechanger, definitiv eines meiner lieblings services. was habt ihr für geheimtipps?

https://github.com/Teskann/QuaX

Tacete barbare stulte! Sagete occulteque filas germanicas.

>>34292
ad hominem.



File: 1779641905878.mp4 (12.57 MB, 480x360, whats-michael.mp4)

 

Take a moment to find a website you didn't know about before, or ones you just think are neat, and share them here.

The thread from last year on /siberia/ didn't get archived, unfortunately, so posting here so it lasts longer.
22 posts and 8 image replies omitted.


Anyone have a good blocklist for AI-authored websites?

Anyways,
https://www.illinoiswildflowers.info/
Definitely one of my favorite knowledge repositories regarding wildlife ecology of plants in my little middle western world.

>>34273
I don't even live in Illinois and I use that site for its excellent recordkeeping wrt to faunal associates of different plants

>>34273
>Anyone have a good blocklist for AI-authored websites?

woher willst du überhaupt wissen, welche seiten mit geschrieben wurden oder nicht? warum sollte man das öffentlich zugeben? das leftypol tech board ist so naiv.

>>34288
* mit KI



 

NEO CHINA COMES FROM THE FUTURE!

I AM A MASTER PROGRAMMER! I AM GOD!

THIS IS MY MASTERPIECE! I MADE THIS WITH 0% CODING KNOWLEDGE. JUST GEMINI. I AM BECOMING INSANE.

https://pst.moe/paste/fxkvpi

na, wie sehen eure vibecoding projekte aus?

https://pst.moe/paste/sdsqni




Delete Post [ ]
[ home / rules / faq / search ] [ overboard / sfw / alt ] [ leftypol / edu / labor / siberia / lgbt / latam / hobby / tech / games / anime / music / draw / AKM / ufo / 420 ] [ meta ] [ wiki / shop / tv / tiktok / twitter / patreon ] [ GET / ref / marx / booru ]
Previous[ 1 /2 /3 /4 /5 /6 /7 /8 /9 /10 /11 /12 /13 /14 /15 /16 /17 /18 /19 /20 /21 /22 /23 /24 /25 /26 /27 /28 /29 /30 /31 /32 /33 /34 /35 /36 ]
| Catalog | Home