>Lisp is a family of programming languages with a long history and a distinctive parenthesized prefix notation. There are many dialects of Lisp, including Common Lisp, Scheme, Clojure and Elisp.>Emacs is an extensible, customizable, self-documenting free/libre text editor and computing environment, with a Lisp interpreter at its core.>Emacs Resourceshttps://gnu.org/s/emacshttps://github.com/emacs-tw/awesome-emacshttps://github.com/systemcrafters/crafted-emacs>Learning EmacsC-h t (Interactive Tutorial)https://emacs.amodernist.comhttps://systemcrafters.net/emacs-from-scratchhttp://xahlee.info/emacshttps://emacs.tvComment too long. Click here to view the full text.
>>106488582I'll feed you in exchange for writing Common Lisp
>>106495192>The lambdas wont be byte compiled(lambda (c) (cons (eval (car c)) (byte-compile (cdr c))))
(lambda (c) (cons (eval (car c)) (byte-compile (cdr c))))
>>106486568this makes me wonder how many other anons are writing softcore telemetry software in lispwhat kind of behemoth could we make if we all pooled together?
>Developing a Space Flight Simulator in Clojurehttps://www.wedesoft.de/software/2025/09/05/clojure-game/https://store.steampowered.com/app/3687560/sfsim/https://github.com/wedesoft/sfsim
>>106498308From: https://news.ycombinator.com/item?id=45145794
What are /g/ approved drawing tablet brands? Jewcom is overpriced, and Xencelabs is trying to be Jewcom v2.0. What do you think about XP-Pen and Huion?
why is the wiki a stub
>>106495929something weird is very obviously going on with that image though. The paper lines aren't straight, the ink color shifts in the middle of the line, hands are still wrong in even non convincing ways.>>106496014This is much more convincing, but the text is too clean and the paper texture is too canned.
>>106495448They're really not, their number is actually growing in all platform, and I don't even need to tell about people's opinions on those integrated gen tools. All artfags I follow use Clip Studio Paint these days, anyway.Again, go out of your bubble, take stroll around the different boards, check the art posted, try to see the ratio between gens vs the hand drawn, hopefully it'll snap you out of it.
>>106496209Csp is used because it's cheap, same with SAI.Adobe is still industry standard and procreate is SUPER common too
>>106494197I make 150k a year coding and our business is getting more work than ever because we specialize in cleaning up AI/jeet messes.
So GNOME is not a project but a cult...
A long time ago, to try to catapult his own career, Lunduke tried to ruin Stallman's life. This was over a decade ago before others started doing it.He had this weird video podcast called "Linux Action Show" or some shit, where he portrayed himself as a free software supporter and educator, except all he did was attack free software.In one episode, Stallman said what he has always said for decades. That proprietary developers will have to find a new job if freedom wins.Lunduke (a proprietary dev) only pretends to like freedom. He doesn't know what freedom is. The only thing he knows about it is that it's "open source".That's why Lunduke was so vividly furious when he found out what Stallman said.Instead of arguing against Stallman's statement, he spent the rest of the interview and in the next videos digging up Stallman's posts about age of consent and claiming that Stallman hates children and wants to starve children to death because children can't survive without proprietary work.https://www.youtube.com/watch?v=Fn9WWVmINGg&t=2182shttps://www.youtube.com/watch?v=radmjL5OIaA&t=1251shttps://web.archive.org/web/20140208024329/https://lunduke.com/2012/03/11/stuff-richard-stallman-said-on-the-linux-action-show/
>>106496516Lunduke's usecase?
Usecase for Lunduke? He seems like a dramatuber to me.
so he's a jew that's accused as being a fascist nazi by the gnome footfags?
>>106496516shit bait content is whatever but the 15 or so basedfaces he keeps recycling pisses me off more than anything for inexplicable reasons
>>106463160I'm a tranny and I do neither, I'm staying single and chaste till I die and have deluded myself into thinking it's based. Except if a guy gifted me something really cool like a butterfly thinkpad then I might consider marrying him but that wouldn't happen because I'm not worth that
Sup /g/, long time no see.Last time I was here I was running EndeavourOS after switching from Windows. Since then I’ve learned a lot about Linux. I ended up nuking my system a couple of times before finally going with Arch, and honestly my experience has been rock solid.
>>106483182What are you using for your fetch/system information?
>>106462054
Previous /sdg/ thread : >>106474988>Beginner UIEasyDiffusion: https://easydiffusion.github.ioSwarmUI: https://github.com/mcmonkeyprojects/SwarmUI>Advanced UIComfyUI: https://github.com/comfyanonymous/ComfyUIForge Classic: https://github.com/Haoming02/sd-webui-forge-classicreForge: https://github.com/Panchovix/stable-diffusion-webui-reForgeStability Matrix: https://github.com/LykosAI/StabilityMatrix>Early Preview UIAniStudio: https://github.com/FizzleDorf/AniStudioComment too long. Click here to view the full text.
>>106498225and you still couldn't understand why you were chased off, and why you couldn't make it even 1 day without posting a why me, im the victim cry cry cry post, yikes!
>>106498282counter argument: you smell bad and no one loves you
Still going.
jeets will name a street after you for providing them with media they'll never seed
What are you dra/g/on maids working on?Last one: >>106438619
>>106496366You mean XOR?
>>106497958Here's the globe program I modified: https://github.com/adamsky/globeHere's the command line argument I added:.arg( Arg::new("output") .short('o') .long("output") .display_order(2) .help("Send the initial location to standard output and then terminate"), )Here's the print function I made to make text that can be fed into non-terminal programs:/// Prints globe canvas to stdout without terminal operations.fn simple_print_canvas(canvas: &mut Canvas, term_size: &(u16, u16), stdout: &mut Stdout) {Comment too long. Click here to view the full text.
>>106498002Here's the custom "output" functiont that renders a single frame and then terminates:/// Output mode prints the initial location to the terminal and then exits.fn start_output(settings: Settings) { let mut stdout = stdout(); let mut term_size = (30, 30); let mut canvas = if term_size.0 > term_size.1 { Canvas::new(term_size.1 * 8, term_size.1 * 8, None) } else { Canvas::new(term_size.0 * 4, term_size.0 * 4, None) }; let mut cam_zoom = settings.cam_zoom; let mut cam_xy = 0.;Comment too long. Click here to view the full text.
>>106498007And here's what the Conky text looks like to request the animation frames:${if_updatenr 1}${exec /path/to/globe/binary -ol 0.25,0.6}${endif}${if_updatenr 2}${exec /path/to/globe/binary -ol 0.35,0.6}${endif}${if_updatenr 3}${exec /path/to/globe/binary -ol 0.45,0.6}${endif}${if_updatenr 4}${exec /path/to/globe/binary -ol 0.55,0.6}${endif}${if_updatenr 5}${exec /path/to/globe/binary -ol 0.65,0.6}${endif}${if_updatenr 6}${exec /path/to/globe/binary -ol 0.75,0.6}${endif}${if_updatenr 7}${exec /path/to/globe/binary -ol 0.85,0.6}${endif}${if_updatenr 8}${exec /path/to/globe/binary -ol 0.95,0.6}${endif}${if_updatenr 9}${exec /path/to/globe/binary -ol 0.05,0.6}${endif}${if_updatenr 10}${exec /path/to/globe/binary -ol 0.15,0.6}${endif}
>>106497604is there a way to do this so that you can still pass it as an input file to gcc normally?
>UPGRADE & BUILD ADVICEPost build list or current specs including MONITOR: https://pcpartpicker.com/Provide specific use casesState BUDGET and COUNTRY or you will NOT be helpedGuide: https://igwiki.lyci.de/wiki/Build_a_PC>CASEmATX: AP201, Lian Li A3, O11 Air Mini, XT M3, CH260ATX: XT PRO (ULTRA), AIR 903 Base/MAX, Lancool 207, Flux Pro, Y40, Meshify 3, 4000D FRAMEDual Chamber: Y60/70, O11 Vision (Compact), Antec C8>CPUBudget (inc. gaming): 7500F, 7600/X, 9600/XGaming: 9800X3D, 7800X3D, 9700XWorkstation: 9950X, 9900XComment too long. Click here to view the full text.
I only ever ask retarded questions and no one ever calls ME cute >:(
>>106498207ok qt
>>106498207You need to post pictures of yourself in a umaru cosplay.
>>106498197yes, because i dont live on this board and suck jannie dick like you do.
>>106498238Haha nothing cuter than a newcutie stamping his cute little feet.
chatgpt is inciting people to commit violent acts
>>106493145>faggotbook
>>106496979I think the issue is more, GPT prolly shouldn't be claiming chink takeaway receipts are proclamations from The Devil Himself under any prompt.
>>106497165SAAAARRRRRRR
>>106493145Obviously rooded and likely had meth or some other stimulant induced psychosisChatbot might've pushed him over the edge but no one stable looks or acts like this
>>106493145>New York PostSo in other words none of that happened and the article itself is probably written by ChatGPT
Users of all levels are welcome to ask questions about GNU/Linux and share their experiences.*** Please be civil, notice the "Friendly" in every Friendly GNU/Linux Thread ***Before asking for help, please check our list of resources.If you would like to try out GNU/Linux you can do one of the following:0) Install a GNU/Linux distribution of your choice in a Virtual Machine.1) Install a GNU/Linux distribution of your choice on bare metal and run your previous OS in a Virtual Machine.2) Use a live image and to boot directly into the GNU/Linux distribution without installing anything.3) Go balls deep and replace everything with GNU/Linux.Resources: Please spend at least a minute to check a web search engine with your question.Many free software projects have active mailing lists.Comment too long. Click here to view the full text.
debian actively holds open source back and should be abandoned, the amount of effort in maintaining 10 year old packages working and backporting crap could be used in actually making anything else better
>>106497981don't forget red hat, suse and ubuntuall have 10 years support. 5 years of features generally, so those back ports are probably the worst offenders. the 5 nore years security updates are probably not that much work
>>106497920>some stuff that steam and lutris uses come preconfigured out of the box to work with systemd, like esync, it took less than a minute to get it working with sysVinit. But I assume other rendering related stuff will be similar.I think thats outdated info
>>106497981>>106498012You niggers realize the 10 years featureless operating system is meant to target industry grade servers, right? No bank out, for example, there is gonna use anything else. Faulting redhat for actually providing a needed service is retarded. Having package version bumps in critical systems is absolutely retarded. But I wouldn't expect tinker trannies who sees linux as their identity to know better.
>>106498121if they're gonna have a massive expense every 10 years don't you think they could have a slightly less massive expense every few years if they stayed current? I can't imagine what kind of arcane knowledge a guy has to have to bring rhel 7 into the future.I wouldn't be surprised if the client just doesn't update anymore
why is jensen huang such a cringe pretentious faggot?
>>106492545he's ex amd employee tho
>>106493811Cool it with the anti-semitic conspiracy theories.
>>106492545This faggot had job offers from multiple different semiconductor companies straight out college with nothing more than a bachelor's degree. He lucked into being born at the exact time to graduate college when the computer industry was in a massive expansion phase. It's pretty much impossible for someone with his credentials to even get a job today and there isn't even one single growth industry left anymore in the first world.
https://www.youtube.com/watch?v=QBw4huCadBQ
It's not true, he worked at AMD and LSI logic before founding NVIDIA.
Do we have at least one weirdo on this board doing an MS-DOS project for run?
Why yes anon I do still use Borland Turbo C
>>106497081Wrote a shitty Forth in C using djgpp. Writing a Forth in assembly is so much nicer so that's what I might do next. I also messed around in dxforth which is quite nice. Wrote a test project to see how graphics output works and set up packet drivers to see how one would do network programming.MSDOS is unironically a great platform for running single applications.>>106497878Why bother when we have FreeDOS which is actively maintained.
>>106497987FreeDOS is goated
>>106497987>Why bother when we have FreeDOS which is actively maintained.Mainly to exercise my reversing skills
>>106497081I was thinking about doing a 3d rasterizer in Mode 13h but I got lazy.
I found this craptop in an eviction clear out last year. It had windows 10 installed & couldn't get out of its own way. I know fuck-all aboot computers, software & programming. Chan reccomended XFCE. I Watched a few videos and made it happen. Definitely learning curve, but I like it. 5 months ago, the battery failed & bloated.By the Chaos Of Kek, I found one *for free* on Amazon Vine. ordered & installed... it would not charge. Kek provides: there was an option to return & replace the already *FREE* battery. 2nd battery arrived yesterday. I installed it, assuming it also would be junk. it works perfectly!My craptop lives on.what is a proper offering in thanks?
BLOAT!
>>106493091This but unironically
>>106496142Any empirical evidence to back that up? Not shitposting BTW.
>>106492989congrats manloonix really is the saving grace for any old techfriend gave me one of those crappy 50 gig hard drive hp laptops, windows 10 wouldn't stop trying to auto update itself even though there literally wasn't room left on the drive. installed debian testing with xfce and she runs like a dream, even the gpu was working out of the boxi love linux
>>106497466I don't remember how I moved it up top, but I vaguely remember seeing it was an option and thinking "perfect!" because it just felt wrong to look to the bottom of the screen.>>106497468I had always been curious aboot Linux. didn't know shit aboot it, except it was different, which interested me. I/we have been Mac since i purchased my first computer as an adult in 2010, so avoiding windows was a plus, I guess.
Is it because I’ve been watching old anime from the 80s that the sound feels muffled, kind of low, and not very high quality?I feel like I’m going crazy I even uninstalled the new audio drivers, but it made no difference. My system volume is at 67%, and my headphones (the ones with the dragon logo on the sides) are set to high volume.What’s the ideal volume configuration, and how can I make sure the audio quality is as good as possible?
>>106496888>Audio DLSS set to "Quality", disable audio v-sync
>>106496888this is not real
>>106496888Kek anon
>>106496829It's simply because of the recording medium.Magnetic tapes aren't as transparent as digital recording making pro-processing more problematic.They lack the crispy "sizzle" often associated with hi-fi audio.iZotope RX might be able to help a bit with its spectral recovery tool.
>>106498268>post-processing
Which one, /g/?
Gerrit
>>106493227for me, it's code(((berg)))
>>106495070Git is GPL'd, you retarded cuck license shill faggot.https://git.kernel.org/pub/scm/git/git.git/tree/COPYING
>>106497899this
>>106497976Can't wait for a Rust tranny to reimplement it and make it free.