[ 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: 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
250 posts and 30 image replies omitted.

>>34268
i don't know if it's a dud, but it's kind of weird how every model has a gimmick it wishes to excel at, and then they silently drop the ball on subsequent models, like chatgpt4 was programming, 4.5 was math, sol was cybersecurity, and now astra is 3d modelling. it's almost like they aren't generalizing and making them super competent at a field makes them less competent at other fields, but i dunno

>>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.

one thing i'm finding LLMs are actually useful for is to serve as an intellectual punching bag. they have a very obvious tendency to resort to every possible cheap manipulative bad faith debate tactic in the book, ad hominem attacks and whataboutisms and false equivalencies and splitting hairs and moving goalposts and strawmanning and all the rest of it; they are very much the product of the typical obtuse, myopic, pedantic, performative, narcissistic, pathological lying neckbeard reddit way of thinking. i doubt that this was a deliberate choice and i think it was just an inevitable outcome under the circumstances, being trained on mostly data from the english-speaking internet where probably 99% of the intellectual content comes from those kinds of people, but at any rate the LLM can be a good way to sharpen ones ideas or writing or debate skills by presenting it some idea or piece of writing and watching it react and take some kind of position on it (usually a middle position that pretends to not take any position and says "you are are right, but here's why you are wrong") and seeing what kinds of counterarguments it makes and taking into consideration the fact that it's simply spewing out text and doesn't actually know what it is saying and is therefore incapable of ever arguing in good faith about anything. basically, it's a bad faith content generator, anything you say to it or ask it to do, it will generate utter bilge, whether the subject is science or politics or philosophy or even coding. think of it as the reverse dalai lama, like an expert imbecile which always gives a wordy, rambling, incoherent, retarded non-answer to every question. the diarrhea lama.



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
3 posts omitted.

Most languages have a standard library that will get you far without having to mess around with external dependencies. Most beginner programming exercises should not need anything more.

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.



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
13 posts and 4 image replies omitted.


🤣🤣🤣

mehr kann ich dazu nicht sagen.


Holy shit they use a key by the developer to verify the images???? Stop the presses!!
>>34017
>>34019
Deleting the keys didn't brick the phones. It just delayed updates for a few months, iirc.

>the fed is still FUDposting



 

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.



 

trolling the CEO of mastodon.

this could be very funny!

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

not too short. not too short. not too short
1 post and 1 image reply omitted.

>>34187
ts not tuff broski

>>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.



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




File: 1781452727959.png (1.39 MB, 1365x767, my destop.PNG)

 

guys rate my os
is it cool?
my specs area pentium p6200 2 gigabytes of ddr3 ram made by micron a 500 gigabyte Toshiba hard drive and intergrated grafics

yo

I like the pine tree in the wallpaper.

i use spermium to navigate web

cool shit man

rate my OS, desktop is vanilla unmodified kde
>>33525
very cool desu



File: 1787846976326-7.png (1.73 MB, 1741x2048, 1787283890236181.png)

 

you guys are not my political equals. i am vastly different in my disposition. that isn't what I'm here to discuss. I'm here for results against a surveillance state and to build a better future.
i am looking to build a low-cost sacrificial CMOS sensor test rig. interested in characterizing how permanent sensor degradation propagates through an image pipeline and eventually causes OCR failure. not primarily interested in temporary saturation/blinding. the question is where the functional threshold actually occurs after persistent sensor damage accumulates.
>Hardware
Raspberry Pi 4 as controller and replaceable CSI camera modules. IMX477 HQ Camera as primary test sensor IMX296 global-shutter comparison. IMX219 as cheap disposable baseline. interchangeable optics, fixed hardware and software baseline.
>Optical source
controlled, wavelength-defined laser source. output will be measured and recorded to construct a reproducible guide. fixed image sensor mounting and consistent exposure intensity and angling analagous to real world conditions. treat each camera module as a sacrificial test article. the goal is the destruction of optical recognition capabilities in a reproducible and on-the-go formula.
>Software
Raspberry Pi OS/libcamera OpenCV + NumPy Tesseract + PaddleOCR RAW + processed-frame capture automated OCR against a standardized text target
>Goal
log dead/stuck pixel count, persistent defect distribution saturation/clipping noise/SNR contrast and edge degradation OCR confidence character error rate / word error rate
>tl;dr
baseline sensor, controlled exposure, capture RAW + processed frame, run OCR, map persistent defects, repeat with fresh sensor
The interesting result is the curve:
sensor degradation → image-quality degradation → OCR error rate
rather than simply declaring the camera “dead” when OCR first fails.
Looking for recommendations on Pi-compatible sensors that would make useful analogues for higher-end commercial OCR/machine-vision cameras, particularly sensors with RAW access and well-documented characteristics.
11 posts and 2 image replies omitted.

>>34225
pwning the ocr capabilities will be my primary focus oob


Just steal the cameras for testing if you are going to destroy them later anyway.
Modern cameras can take a welding arc and be without issue so the laser would need to have a car battery and a tripod hooked up to be effective in any good time. In case you did have a handheld laser that worked I don't think you'd avoid arrest for more than a week. You should give them for the homeless if you create one.
Tl;dr propably more effective climbing traffic lights with a ski mask

>>34247
exactly the kind of brainstorming i love to hear. do you know if the cameras themselves have methods of asset protection? GPS or the like? do they have backup power. should i bring a farraday bag? matter of fact, I'll see if i can find a repair manual and see if that will answer my questions.

>>34247
my goal was to make a easy to follow and implement guide / manual in the vein of laserhawk to distribute online, but i will reconsider that idea for the time being until i understand the failure threshold of the commercial devices.

>>34247
I've been considering evasion. it's going to be the make out break part of implementing my plan. still mulling it over.



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