/tech/ - Technology

Technology & Computing


New Thread[×]
Name
Subject
Message*
Files* Max 5 files32MB total
Tegaki
Password
Captcha*Select the solid/filled icons
[New Thread]


mpv-shot0009.jpg
[Hide] (222.8KB, 1920x1080)
> Made using 100% free software
> 3D Animated movie
> One guy rigged models, wrote story, voiced half of the characters, composed music
> Took 3 years
> Out since October
> In total has less than 300 views
> Sends an email to Free Software Foundation. They don't promote it.
https://odysee.com/@blenderdumbass:f/why_morias_race_is_shit:1

Why isn't Moria's race more popular?

Movie:
TOR: http://ttauyzmy4kbm5yxpujpnahy7uxwnb32hh3dja7uda64vefpkomf3s4yd.onion/films/Moria's_Race.md?
Odysee (LBRY): https://odysee.com/@blenderdumbass:f/moria-s-race:5
Peertube: https://peer.madiator.cloud/w/vmPmME5XPWNc8uXSMe1xCk
Message too long. View the full text
42 replies and 5 files omitted. View the full thread
>>12479
>The render engine that they are using is good enough to convince me that this is a real photographic image. 
Are you brain damaged?
That was so dumb but I'm surprised that I got more and more into it the longer it went on. I hope this guy can make something better and he's not the kind of autist that just shits out the same level of quality his entire life.
Replies: >>16001
>>15930

He's actually making a GTA clone based of the movie.

https://video.hardlimit.com/w/oNhei3W9ER6se1G7vZXmTx
>>12353
>I think he made everything on his own, including every single model. Animation of any kind is hard work. There is no way to make it quick and easy...
This is the shitter's excuse, along with whining about being "indie" (or, in this case, FLOSS). You don't get an A for effort here. You get an A for quality. The character models are bad, the animation and voice acting are fucking bad, the plot and writing are bad, and the sound doesn't have any adjustments made for 3D, making it all sound worse (also bad microphone).

There is waaay too much polish lacking. It's no surprise no one is going to advertise this shit.
>>16913
Welcome back

1f7c379bd6ab88a7a30134a428ea996a71d38610202098131719562ad22e9f73.jpg
[Hide] (13.7KB, 300x200)
One of the cornerstones of the unix filosophy is extensibility, and is great piping all of these programs one onto the other, like a assembly line folding aluminum onto cans. But the world isn't the command line, nor some lisp machine, because programmers define the specifications and estrucure of data as the want.

How should all this different programs even live along? Because not even all programs even consider this method. Vast mayority of GUI Apps are designed to be its own data ecosystem, cause i would be neat if i could reuse their subroutines for my purposes (like plugging GIMP's filters onto Kdenlive pipeline, or inspecting CAD software path finding wiring algorithms)

Here i am talking of modular design, maybe even replaceable parts; but i am skiping a lot of implmentation. 

Although ou got monolytic black-boxes programs like ffmpeg, yt-dlp, imagemagik. They work so well, and their interface is very accesible, even if their internals are whole opaque.

You go too programs like Unreal Engine, Blender, Davinci Resolve, LaTex; they are walled gardens, but ther internal ecosystem is rich in scripting, and as factories, they spit a finalized can render product.

Dont even talk about interface. Is the low caliber pipe of plain text enought? By the way, Wich one? ini, cvs, xml, json?; Should we consider creating specifications, binary formats? Isn't that really propertary? But midi just works so well; Are you ready to enter the world of local net protocols?; Let's imagine more: Not delivering data, but access to data, and sending the subroutine-as-a-primitive that parses a shared memory location of opaque data structures.

Sometimes i feel unghinged. The world is spinning all without me, and people are working really well on those conditions; i am. The "People will use whatever we produce" has a positive side too, so look at the plethora of scripts that do extend walled gardens. Look at the other side of the fence, at linux ricers and their adventures at config land, where they see the vast lands between mouments of programs, Did you know that deep into the etc folder, Xorg created a programming language for their config files? Its so funny

I got stuck sorry. If you promise me staying another paragraph. Some lispers at Palo Alto did this, and created this graphical enviroments where all the data was passed as pure messages, though a byte code custom cpu, and all its partes could be changed, inspected, debugged and customized; GUI its not for the weak, its for productivity on the less keystrokes
Message too long. View the full text
2 replies and 1 file omitted. View the full thread
emacsconf.png
[Hide] (107.1KB, 1280x960)
How familiar are you with Emacs?  When it comes to extensibility, I think it is one of the best examples out there.  It's really a Lisp application platform that masquerades as a text editor.
https://emacsconf.org/
https://www.masteringemacs.org/
Replies: >>16901
>>16900
Emacs is more like a LISP machine emulator that for some dogforsaken reason is called a text editor. I don't have a problem with it per se, but the editor wars are quite stupid in hindsight if we accept that it is not an editor, and the conflict was really about keybindings all along.
Replies: >>16903
iq-meme-joke-i-am-not-saying-visual-studio-users-are-dumb.png
[Hide] (260.5KB, 1240x864)
>>16901
Bindings that you can just change if you're at all competent. Though that is easier in Emacs, because Emacs just makes customization in general easier, because of what it is. Plus vi bindings are flawed anyway (though hjkl itself is fine, everything else is no more ergonomic than Emacs other than in that it's modal, which Emacs can also be). But yes, Emacs is just a Lisp environment with a mostly text-based UI (though it has graphics as well, which is a considerable advantage) that can be used for anything. 

It helps that pretty much everything you do in a computer involves interacting with text anyway. Like, a file manager is ultimately a list of strings, so is writing commands in a shell (M-x shell allows you to use your Emacs bindings and functionality in a shell that just runs in a text buffer, without a terminal emulator), and so is a playlist in a media player, and so is an RSS client, and so is an email client (plus writing messages is text editing), and so is a chat client. And deleting a line is somewhat equivalent to deleting a file or message or whatever it is. Plus writing messages of any kind is text editing, so you might as well do that in your editor. And a lot of functionality that is useful in an editor is useful in other things as well, like searching (I use consult-line for that, and I have it in everything I do in Emacs, and can also use embark to export it to a buffer). Within Ema
Message too long. View the full text
Replies: >>16904
>>16903
>Bindings that you can just change if you're at all competent. Though that is easier in Emacs, because Emacs just makes customization in general easier, because of what it is. Plus vi bindings are flawed anyway (though hjkl itself is fine, everything else is no more ergonomic than Emacs other than in that it's modal, which Emacs can also be). 
All I can say is that it seems like using evil mode is reasonably popular amongst Emacs users, meanwhile most people never heard of Vimacs:
https://www.vim.org/scripts/script.php?script_id=300
Replies: >>16912
>>16904
People that insist on using default Emacs bindings won't be moving to Vim in the first place. Especially if they do not want modal editing.

dc01c489e663d2eeed520512f1379b72bc4147a32e8736c462960f9da80abb05.gif
[Hide] (1.6MB, 320x240)
Are you employed in a technical capacity? What job is it? How did you get it? What does your daily wokload look like? Are you looking for a different line of work?
379 replies and 77 files omitted. View the full thread
>>16316
>language
I knew a bit before I got there. What role were you applying for?
terry_evolution.jpg
[Hide] (494KB, 2255x900)
>>16315
That's nice to hear anon.

My own update after posting in this thread 3 years ago (>>5885) is that I'm still a NEET, and I haven't actually tried to get a job again in 3-4 years or so, but I'm a much better programmer than I was 3 years ago, learned many programming languages, made a few open soros contributions, wrote more projects of my own, and read many programming books. In fact I started a new programming book just yesterday.
>>15593
>>16299
I assume neither of you know anything about international merchant navy careers?
>>16299
>This is about emotional strength, not a big resume. If you don't give a fuck about their bullshit and put these retards in their place from time to time they won't needle you like little bitches. By your own admission, they already know you're better than them and are afraid of you. Their whole goal is to attack your emotional weaknesses so they can stay on top and drive you out. A better degree will not save you. They'll just call you a useless fucking theorist with no practical skills and ridicule wherever you got your degree from or whatever.
The issue with these types is that no matter what you do you can never win with them as they will sway the retarded masses to their side.
The only option is to get out as you can't legally make them dissapear from there.
Please tell me if I am wrong.
Cuts are coming. Management is eliminating second shift and plans on having floor supervisors fix the crashed terminals, printers, etc then outsource major repairs to outside vendors. I do get a chuckle over 'reboot princess' (I rebooted it four times and it's still not working!!) and the fact that she'll be running this. I'll take my pink slip and the sweet sweet NEETbux please and thank you 8).
covert datamining thread

Yandex_Browser_Logo.png
[Hide] (359.9KB, 5000x5000)
This whole post is probably going to read like a giant advertisement for Yandex.  So, I apologize in advance for sounding so shill.

I was comparing search engines not by how botnet they are like people on /tech/ usually do, but by how "Basically Google with a VPN" the search results were, and I noticed how on...let's say "politically divisive" topics...Yandex gave me COMPLETELY different results.  I also noticed how likely I was to get ONLY major corpos as the results.  Like Google/Bing/Brave/DDG/etc. would all repeat the same Mockingbird media corpo links and tend to keep the narrative pretty tight, but Yandex would give me none of that.  I just wanted to share some of these:

Google results for "school shooting SSRIs":
"The Misperception of Antidepressants and Mass Shootings"
Almost every result is a major corpo
USA Today
Business Insider
NIH
LA Times
The Hill
Newsweek
No counter opinion

Message too long. View the full text
18 replies and 1 file omitted. View the full thread
Replies: >>16807 + 4 earlier
>>12940
>> How do we even counteract something like that other than giving up on the internet entirely?
>Not sure, maybe isolated intranets that vet users or something. I think Tor/i2p/freenet may become the only kind of option soon.
Proof of concept lrgo7ejldbtabxk2cpqmi54ckiifrf7c6njkaknxlcbxos5kjbktbhad.onion
>>12940
What's stopping them from botting tor? Google was made by the gov practically.
Either way the internet looks grim right now with all the push for censorship yet nothing being done against bots.
>originally thought they were going to push id with bots
>instead they did the kids shit again
ff6ce054acc56fc02d72eb3d1e715efc.jpg
[Hide] (36.9KB, 736x414)
>>12611 (OP) 
Yandex.com redirects me to dzen.ru. my ip isn't even Russian
Replies: >>16809
>>16807
yandex was killed off some time ago by elites in power, there is no yandex.* domains anymore that are genuine. yandex itself moved to ya.ru
e3ea8d09e0b54c4a666673e30666c6bb018fd106db419089d4ed9ba17df5e2ae.jpg
[Hide] (22.3KB, 243x266)
thinking SSRI's cause school shootings is level 1000 braindeath

aismartphone.jpg
[Hide] (51.7KB, 512x768)
>be me transferring music from tablet to phone
>tablet has vlc android
>get vlc on phone
>vlc can import playlists
<vlc android can't export playlists
>oh well it can export the whole db
>i'll just look at the schema and export a playlist from there
<the schema:

(...)CREATE TRIGGER media_group_update_media_count_on_import_type_change AFTER UPDATE OF group_id, import_type ON Media WHEN ( IFNULL(old.group_id, 0) != IFNULL(new.group_id, 0)  AND new.import_type != 0 ) OR new.import_type != old.import_type BEGIN UPDATE MediaGroup SET nb_video = nb_video + (CASE new.import_type WHEN 0 THEN (CASE new.type WHEN 1 THEN 1 ELSE 0 END) ELSE 0 END), nb_present_video = nb_present_video + (CASE new.import_type WHEN 0 THEN (CASE new.is_present WHEN 0 THEN 0 ELSE (CASE new.type WHEN 1 THEN 1 ELSE 0 END) END) ELSE 0 END), nb_audio = nb_audio + (CASE new.import_type WHEN 0 THEN (CASE new.type WHEN 2 THEN 1 ELSE 0 END) ELSE 0 END), nb_present_audio = nb_present_audio + (CASE new.import_type WHEN 0 THEN (CASE new.is_present WHEN 0 THEN 0 ELSE (CASE new.type WHEN 2 THEN 1 ELSE 0 END) END) ELSE 0 END), nb_unknown = nb_unknown + (CASE new.import_type WHEN 0 THEN (CASE new.type WHEN 0 THEN 1 ELSE 0 END) ELSE 0 END), nb_presen
Message too long. View the full text
7 replies and 3 files omitted. View the full thread
Replies: >>16403 + 1 earlier
>>16265
All of those are valid to a extent but some of them they fall apart if you do them in public
>Gaming easy way for it to be swiped if you get distracted for half a second
>Watching random ugly women and crazy whores will flirt with you just for watching anime or worse call you a pedo
Phones are better for some of these things just simply because they are more concealed and bring less attention to you.
Replies: >>16302
WMiwwB_qm5Z8BnW_IQ4qT3ukU31M2MkzrcKOUBmEVdg.png
[Hide] (507KB, 634x845)
>>16301
Fair points, but then again those are more for when you're outside, when it comes to leisure time at home the tablet comes out on top in my eyes, at least over the smartphone, though idealy you'd have both, an "ecossystem" as most would call it, it works good.

>>16293
Same. It depends on your use case really, a lot of people need proper computers for their works or hobbies, but a lot of people, thanks to how good mobile OS have gotten compared to before, they're enough for their use cases, which happens to be my case.
Replies: >>16303
>>16302
Use case I can see, But I think it has more to do with preference sure you can connect a wireless mouse and keyboard to  a tablet but the experience won't be the same because of the OS.
>Used Windows for decades and Linux  for a few years
>some stuff is just easier 
Trying to read visual novels on a tablet sounds like a genuine pain even if the resolution and screen size might be good for it.
Replies: >>16314
>>16303
The thing is, the experience doesn't have to be the same, of course it'll be an inferior computer to proper computers with a more advanced OS, but depending on what you use it for, those issues are either manageable or not even noticeable during one's use.
>>13130 (OP) 
>be me transferring music from tablet to phone
How? I've tried transferring files from one to the other with an USB-C hub and it never works for file transfers, only charging.

mumble.png
[Hide] (62.9KB, 2556x1401)
170-zoom.png
[Hide] (898.4KB, 2556x1383)
>have imperfect vision
>sit about 1 meter (3 feet) from the computer monitor
>be in video gaming clan
>they use mumble
>pic related is mumble
>can't just scale up fonts and elements by ctrl + scroll up like i can with my terminal emulator or web browser
>have to lean in every time I need to do something with the program

Is this why javascript and web apps are subsuming desktop application development? It is trivial to define a general page layout and theme and let the user zoom in as needed. Is it not the same for GUI frameworks?

second pic is comfortable reading siz except for the URL and title bar.
25 replies and 5 files omitted. View the full thread
DSC_0472.JPG
[Hide] (4MB, 4000x3000)
>>9249
Picrelated
Replies: >>9255
>>9251
based old samsung syncmaster 3:4s.  bought a bunch of them back in the day when you still had to worry about a dead pixel here or there, and from the nice white balance to the resolution they remained my favorites despite everybody going for yucky widescreens.  just dual them up for more betteration :D
Replies: >>9263
>>9255
Actually, the one on the picture is 16:9 lol. But I have plenty of 4:3s. Just found a 1600:1200 high end IPS a few days ago. Great monitor. Downside is the high latency (not for gayming) and 80w power draw.
Replies: >>9264
>>9263
Though I'm aware 1600*1200 is not exactly low res anymore. 
Point is there are plenty of low res fuckers being thrown away and OP wouldn't have to bother with annoying scaling shit.
>>9249
Honestly, not the worst idea if you're having trouble seeing clearly and need everything to appear bigger. UI is bigger, it's cheaper (not just as a monitor, but also on the graphics card), and the finer detail of a high resolution probably isn't going to help your eyes anyway.

lol.png
[Hide] (512.5KB, 750x563)
Did the CIA use a train to kill him? Or did he realize his physics waifu never loved him and he killed himself?
15 replies and 3 files omitted. View the full thread
salute.gif
[Hide] (238.7KB, 350x200)
>>13962
Thank you for your service, you contributed to the legend
predict.png
[Hide] (1.9MB, 3109x1308)
>>16053
>>16055
I don't think he cared that much about Linux tbh, as it wasn't as holy as Temple

>>16090
Im pretty sure updoot autism would've challenged his patience

>>16117
Agreed, I'm happy Ubuntu helped me got on the Linux train. With Canonical faggotry however, I quickly realized i needed to look for a better distro.

Funnily enough I rather enjoyed Unity and even installed it on later version where Canonical started to ditch it. At that time, the bloggers who got me into Linux in the first place had had enough because Unity was too big a change compared to Gnome 2.
I've seen many of them migrate to Mint and/or the MATE desktop.
>>13962
What a cool story, did he seriously take the time to lecture you in all 3?

>>13983
Evil faggot grifters who trolled and used him as a lolcow are responsible for his death, i forget the name of the guy that was most responsible specifically. Terry was probably one of the world's best  programmers, making an operating system alone as one person is such a huge behemoth task it's incredible how he managed to get all that done and still be mentally unwell. What a legend and an inspiration to programmers everywhere.
Replies: >>16203
>>16127
>Evil faggot grifters who trolled and used him as a lolcow are responsible for his death
I might be mistaken, but I remember reading about how one of them was talking to his parents online while impersonating him in order to keep them from reaching out to him so that he could make him think that they didn't want to speak to him and that the resulting isolation might have contributed to his suicidal depression.
>>16124
CIA niggers holding him at Area 51

LLM_Eras.jpg
[Hide] (988.2KB, 6274x1479)
Since the usual suspects seem to be constantly gatekeeping this while the typical corporate inbreds are trying to destroy everything it's time to have a thread and generate at least some interest and informative value on recent AI/LLM developments without any bullshit.

>Have VRAM (preferably a recent gpu)
>Anything under 8gb vram is pretty effin bad(but it's not fully over and you can still easily generate cool art though if that is your thing)
>If you are okay with slowness you can run off a decently beefy CPU and ram

LLM Agent? Do this.
>KoboldCCP
>a .gguf model from a site like 
https://huggingface.co/ 
>rtfm

Hopefully you should have a pc that can run QWEN e.g. programming aid something like Qwen2.5-Coder 

Art? Do this.
Message too long. View the full text
Replies: >>16213
>>16212 (OP) 
There is already an AI thread.
To add on to your post:
Get the best uncensored models here: https://huggingface.co/spaces/DontPlanToEnd/UGI-Leaderboard
Hardware wise, get x99 and dirt cheap xeon, load it with ram and either modded 2080ti 22gb, or modded 4080(d) 48gb, load everything on a mining rig. You can buy everything from china.

baebd4d90d0275e573244883b1248b14101033992c749b4e32bc9cf2c60a2dd9.png
[Hide] (5.4KB, 600x338)
Is it more hype than help? Overly complex or not complex enough? True internet 2.0 or already obsolete?
8 replies and 2 files omitted. View the full thread
Replies: >>15370
>>15248
No and read the date.The author of the post definitely won't reply to you three years later.
Replies: >>15320
>>15248
>owners of the server can track your location if you use IPv4 anyway?
Yes but you probably share that ipv4 address with other customers from the same internet service provider. And then the connection terminates at a router which you might share with other people in the building.
Replies: >>15320
>>15319
Yes, nat provides a layer of separation.
>>15309
ipv6 doesn't need nat because there are enough addresses for each devi e to have one. There is an rfc for randomizing it https://datatracker.ietf.org/doc/html/rfc8981 .
>>3971 (OP) 
The biggest issue is that they didn't just extend the address space and drop the redundant bits (like optional source routing, which nobody used anyway), they tried to introduce a bunch of new mechanics which fuck things up.

For example, SLAAC: nice in theory, but garbage when your ISP is retarded and only gives you /64, preventing you from making subnets which also work with Android (thanks Google!). I've even heard of retardation like giving out /128 only!
But even if I'd be okay with not being able to use my phone on my own subnet I can't figure out how to make the router actually give out a subnet, so I simply don't use IPv6 and just sit behind a double-NAT IPv4, which was substantially easier to set up even if it's shit.

But what I consider to be an even bigger issue is that IPv6 can and still will suffer from (severe) routing table fragmentation, as you can get some arbitrary IPv6 range and use it pretty much anywhere (on the same continent, at least, not sure what the exact requirements are). I believe the only real solution to this is to map addresses to physical coordinates and enforce that an address maps relatively close to its corresponding coordinate.
Hell, everyone uses DNS anyway and IPv6 obviously isn't meant to be typed in directly, so why bother reserving specific ranges to specific entities instead of regions?
>>3980
All DNS addresses point to IP addresses, anon. Think of DNS as a list of names to look up on your rolodex (in this case the rolodex is the Domain Name System server you connect to, and yes they - and anyone snooping that traffic - can see what domain names you've been connecting to) to find someone's phone number to call them. It's that kind of mechanic. You still need their number to reach them. What you're suggesting would still require a huge overhaul of how the internet protocol works (or how computers interact with it, which is more-or-less the same thing) except much, much buggier.

limewire.png
[Hide] (22.4KB, 256x256)
Spotify ad blocker doesn't seem to work, I am not using jewtube, and not paying money to jewish record companies. How do I circumvent the record label jew?
10 replies omitted. View the full thread
Replies: >>16113 + 1 earlier
>>13966
looks like blockthespot from github is the answer, thanks >>13944 for the idea
images.jpeg
[Hide] (13.6KB, 394x280)
>>13945
NTA but when streaming you don't have to use up any storage space, besides the one of the application used, and RAM, but no need to store files for all of the songs you want to hear, and often it's just a matter of searching and then listening to what you'd like, no need to download anything before listening it.
Replies: >>16111
5ee946a6060ed7363b6d23a84f2ffa78f0d0cf6d76c5dcdf5bbaff57ab2a5b44.png
[Hide] (739.1KB, 1024x768)
>>16105
>you don't have to use up any storage space
>no need to store files for all of the songs you want to hear
>no need to download anything
Are you by any chance a Brazilian who daily drives an old Android phone with 8 GB of internal storage? Or a kid who daily drives a Chromebook with 15 GB of internal storage?
Replies: >>16112
>>16111
No, I prefer to download my music, I'm just playing devil's advocate because I get what OP's trying to get at and it seems most people either misunderstood his question and/or tried to convince him to download instead, I prefer it, but that's not what OP's asking and if he wants to stream, I can see some motives.
>>13929 (OP) 
yt-dlp -x --audio-format mp3 INSERT PLAYLIST LINK

Show Post Actions

Actions:

Captcha:

Select the solid/filled icons
- news - rules - faq -
jschan 1.7.3