diff --git a/g/93055052.txt b/g/93055052.txt index 6910b81330ad770994a7a9c1d5a8719f0ff973f3..06333932f208c0be1aefc4a28964b44934b22e72 100644 --- a/g/93055052.txt +++ b/g/93055052.txt @@ -1101,3 +1101,86 @@ It's do-able, evidently. It autofilled from another thread, Even thought I can't sage when I post an image, I didn't mean to, sorry. --- 93218556 bump +--- 93221133 +I liked Platinum Preppy, where do I go from here? +--- 93221196 +>>93221133 +nowhere +most pens that aren't either "entry-level" fountain pens or pilot/uni-ball roller pens are basically just conspicuous consumption cashwank +--- 93222715 +>>93221133 +Pilot Vanishing Point +--- 93223290 +>>93215334 +This is art +--- 93223340 +>>93221133 +Preppy is a great pen, you can spend more money for a more substantial body, or a gold nib, but the writing and drawing experience of other fountain pens is not really "better" +Or even different +The real difference is between ballpoint pens and fountain pens +--- 93223381 +>>93223340 +>The real difference is between ballpoint pens and fountain pens +yeah, and it's kind of a disappointing one if you're expecting expensive fountain pens to be significantly better than rollerball pens for the price. luckily the preppy is priced low enough that it's a reasonable buy regardless +--- 93223495 +>>93205600 +>>93207824 +Yep +>nice cursive 27 sec +>heinous cursive 12 sec +>nice printing 15 sec +>good enough printing 13 sec +--- 93225196 +>>93223381 +It's only disappointing if you go in expecting a drastic increase in smoothness. A $5 nib can be made as smooth as a $50 nib if the right nib meister works on it. What you will get instead is a drastic increase in the materials used and the design. +--- 93226440 +>>93213550 +Honestly your cursive is pretty decent. +--- 93227011 +>>93225196 +>It's only disappointing if you go in expecting a drastic increase in smoothness +He's been told this before but he keeps repeating what he says. +I think he's retarded (or a third wolder). +--- 93227194 +>>93223495 +Posting the image first. +Pen is a Kakuno. +--- 93227232 +>>93223495 +That's your messy/quick cursive? Damn bro, you need to see mine. That doesn't look quick enough. + +Also, changing the sentence does alter the results per se, if only slightly. +>>93227194 +--- 93227668 +>>93223495 +guess you get used to it... I can't write printing and I can't write slowly or pretty anyway +--- 93229500 +>tfw Noodler's pens are expensive in my country +I just want vintage materials, and I don't trust the Indian's quality control enough (yes, I am aware Noodler's pens are made in India). +--- 93229585 +>>93229500 +>I just want vintage materials +Just buy vintage +--- 93229623 +>>93229585 +I live in a small country (still Western though) and I don't want to risk getting mould in my inks. +--- 93229693 +>>93229623 +>I don't want to risk getting mould in my inks +If you're seriously that concerned then just transfer a small amount to a dinky dip vial and fill from there instead of the bottle. +--- 93229746 +>>93229500 +If you want vintage materials but don't want an actual vintage pen then India really is your only option. +For ebonite, a Ranga with a German nib/feed is a safe choice, but they are relatively pricey. I don't know about manufacturers for other vintage materials. +--- 93229811 +>>93229746 +>India really is your only option. +It depends. +If you want low price and widely avaliable then yes India is probly your sole option at this point. Some exceptions exist if you can speak asian languages fluently. + +Basically if he's willing to move up the range or settle for a small indie manufacturer then it's not hard to get vintage materials. Ebonite in particular is surprisingly cheap and abundant if you know where to look. Celluloid is pretty much impossible at the lower price range these days unless you buy an actual vintage pen. +--- 93230369 +New thread +>>93230351 → +>>93230351 → +>>93230351 → diff --git a/g/93146298.txt b/g/93146298.txt index ffe1abc06ad9334b186c271779ca07ddefa491d5..b8874b1eeb94bbfd9f1f7bd8026c96cb267c9114 100644 --- a/g/93146298.txt +++ b/g/93146298.txt @@ -1309,3 +1309,131 @@ apply for a job that's related to embedded systems > can't into RTFM > can't into search engines > just cries +--- 93223576 +Threadly reminder that C + Astrée gives you better memory safety than Rust ever will. +--- 93223623 +>>93222791 +how is a manual or a style guide going to rationalize a stupid gcc warning, implicit fallthroughs are completely normal, that warning shouldn't exist. +--- 93225295 +>>93223623 +You could quite easily structure code where a switch would have a mistaken fallthrough - wherein causing bugs, hence the warning. you can disable it if you're absolutely sure you do not need it you can disable it with -Wno-implicit-fallthrough. +--- 93225364 +>>93225295 +>You could quite easily structure code where a switch would have a mistaken fallthrough +which would just be not including a break, that's easy to catch. +>hence the warning +all sorts of things in C can result in bugs if misused, but they don't have warnings. there's not even such a thing as an explicit fallthrough, that's just a GNU extension. +--- 93225426 +>>93225364 +What's your point? That it's easy to spot? then spot it and place /* fallthrough */ or use -Wno-implicit-fallthrough. You're acting like this is a big problem, focus on something more important. +--- 93225436 +Something occurred to me + +struct s { + unsigned char *pb; + unsigned short int hword; + unsigned long int *pw; +}; +register struct s t; + + +Would the register declaration subject its members to handling by the CPU's registers, +or is it just the new declaration of struct s t? +--- 93225496 +>>93225426 +>What's your point +its a dumb warning +>/* fallthrough */ +absolutely niggerlicious +>You're acting like this is a big problem +how so? I'm not upset really, its slightly bemusing that people explicitly comment where their switch cases fall through I guess. +I think its just a really gay feature, ya dig? its not so serious man... +--- 93225619 +>>93225496 +I personally disable it generally, but it's useful to quickly spot fallthroughs that I may of missed. although I cannot recall making mistakes like that as of recent. +I understand your qualm though, it can be annoying having it as default, but it's not a bad idea either. Adding optional strictness to C isn't a bad idea in my mind however annoying. + +A possible solution to this would be to have an opposing switch statement, wherein blocks always break, unless fallthrough is specified by a keyword: +fallswitch (...) +{ + a: + statement; + /* breaks here */ + b c fallthrough: + d: + statement2; + /* breaks here */ +} + +I believe the above syntax would be generally safer than the traditional syntax if we really cared about fallthroughs. +--- 93225875 +>>93220458 +wait why +--- 93225901 +>>93225875 +I like the safety of it. +and the terry style of u32 is a good idea overall. +--- 93225938 +>>93218760 +Can I get the source code for error? I like the style of it. If it's from boost or C++ that'd be good to know. +--- 93226158 +>>93218760 +>Is this a good use case for it? +Yes but you shouldn't use select. There are better alternatives now. +>What are the alternatives? +in POSIX there is poll windows implements this as WSAPoll from winsock2 that has the same functionality but it is limited to sockets. +For better and more scalable "readiness" (like select but also report what caused the event) based async methods than poll there's epoll in linux in *bsd and macos there's kqueue, in windows there is library that implements epoll interface with win32 IOCP https://github.com/piscisaureus/wepoll. +For "completion" based approach (e.g. You do a read command and the OS does it automatically when it is ready to it without blocking and then reports the completion of the action) there is IOCP (Input/Output Completion Ports) in windows and linux recently added iouring which is supposed to be faster that any other async method to date, if you are going to use it use liburing. +I suggest if you are going to serve less than 50 sockets at a time just use poll since it has a pretty convenient interface and only needs a little wrapper for windows and works everywhere (for usage see the manpage, WSAPoll is pretty much the same). +Also if you want the "easier" and cross-platform way both libevent and libuv manage this for you already. +--- 93226777 +>>93226158 +Damn, thanks for the write-up. I'll just use poll(), especially if it's the most portable. I read around that previously select() was preferable to poll() for a small number of file descriptors, was that just a question of memory? + +>>93225938 +It's nothing fancy, I'm sure you guys will tear it apart, I just got sick of big if blocks in the middle of my code for error checking. Actually I just got (sort of) done expanding its functionality for getaddrinfo() calls, so right now it's not pretty. I gotta refactor, but I'm not even sure I like it. +--- 93226901 +>>93226777 +and just looking at it right now reminded me that I should probably pass -1 as an exit code into the wrapper instead of 0 lol +--- 93228510 +Found some high-quality PDFs of K&R and the official answer book. +>http://libgen.rs/book/index.php?md5=50C9C4815ED3679A10447835C26D9468 +Compared to the 20 MB one posted not too many threads ago, this one is 16 MB, has selectable text and the page isn't crooked. +>http://libgen.rs/book/index.php?md5=D374F08B23B49C84A41B3C7A3C6038F4 +On top of the above, this one seems even better, at 12 MB and with a working table of contents, but it lacks the back cover. Probably the closest to an official-quality ebook. +>http://libgen.rs/book/index.php?md5=D0A6EB6F15878AD130F5CE915029BC24 +The C Answer Book. +--- 93228646 +>>93225875 +>no spaces after keywords +>spaces after ( and before ) +>extra tabs before the case keyword +--- 93228910 +>>93164193 + +picrel is my implementation inspired by yours and DWMs. +here is concat'd sauce: https://0x0.st/HZqw.c +--- 93228992 +>>93228910 +Probably better to use fputs rather than fwrite in the ERR_COLOR section of the header, it compiles to the same thing generally and you won't have to count letters with sureness. +--- 93229016 +>>93228992 +>>93228910 +updooted version: https://0x0.st/HZql.c +--- 93229030 +>>93226158 +>Also if you want the "easier" and cross-platform way both libevent and libuv manage this for you already. +I'd recommend libev instead +--- 93229306 +>>93225436 +Storing entire structures in registers like that is generally not done by the compiler anyway. There is no efficient way to address each member of the structure independently without doing a lot of shifts, rolls and masking. +--- 93229319 +what does /chad/ think of libtask? +https://swtch.com/libtask +--- 93229365 +>>93228510 +>the official answer book +there is no such book +--- 93230724 +>>93229365 +There is, THOUGH. I dare you to consult the back cover of K&R2. diff --git a/g/93147669.txt b/g/93147669.txt index 86f8a040468385649454ffc75f126bdab1bf1401..5f52c73f0c9ca242636af6c5e1fd4755fcfa3e96 100644 --- a/g/93147669.txt +++ b/g/93147669.txt @@ -1357,3 +1357,87 @@ So how many of you are going to actually release your engines? --- 93223027 >>93222588 I'm more focused on releasing my game that I'm making with raylib but down the line I might separate out the "engine" part from the game specific part so I can use the "engine" for other projects. I'll make it public under MIT license if I do that, I guess +--- 93223771 +>>93220042 +Don't fix what's not broken. I always opt for fast function, and make a note in case something later needs alternative code paths. +--- 93223908 +>>93212212 +Check out Oblige for Doom, maybe you will draw inspiration from it. +--- 93225106 +this looks less drama austism than agdg. + +hi. I'm making anime mil game in Unity. + +hope you don't mind cross progress posting. +--- 93225152 +>>93201380 +Progress update. Worked, and mostly remade the commandProcessing function, now i'd say it's a lot more straightforward and tidy, as well as taking into consideration all the changes that i made since last time i touched this. The overall logic flow was rather uneventful everything worked and communicated as intended, and the only issues that arose were due to some minor issues like not noticing a key for a dict was misspelled or such, but besides that this new version gives even more weight to the personality of the character, assigning them a good chunk of the logic for the command processing and the flavor text retrieval. +Besides that i broke part of the refresh function, but that should be easy enough to fix, and since it was mostly related to the flavor text, i could still test this new version of this function, and it indeed worked, having naturally fixed the bugs that were in the previous version. Not much more to say, for tomorrow i'll get to work more on the personalities, which is what i wanted to do today, but since this was broken i had to fix it first. Here is one more Remilia +--- 93225334 +>>93223027 +How difficult it is to expand raylib with other libraries? +--- 93225407 +>>93212614 +Probably a brainlet question but what approach do you use to get an outline around the square you are casting the ray on. +--- 93225471 +>>93225407 +It looks like every edge is just drawn separately as a line. +--- 93225828 +>>93225106 +--- 93226669 +>>93225106 +>>93225828 +Welcome to the thread, I encourage you to sign up for the progress day jam if you hadn't already. What you have so far looks interesting, are you making a third or first person shooter? Or something else? +--- 93227134 +>>93226669 +thanks! + +do I need a playable demo for the progress day jam? cause this project has balooned in a way that makes making demo jams difficult. + +It's a top-down realtime tactics with pause. +--- 93228785 +Hey guys. I am currently designing a tactical combat system. It's designed to simulate platoon/company level engagements. It's turn-based at this current iteration (although turn order is not exactly standard). +M main concerns are making it fun, easy to understand, but fairly accurate. I need to prototype it and fine tune it a lot. At this point it's just a rough idea. What are good tools for prototyping such things? At this point I am just using pen, paper, 10mm minis and an autistic friend to test it up against. +--- 93229010 +>>93228785 +you can play similar games and simply picture your idea over it. + +and then start prototyping using exisitng assets (since tactical combat system is fairly common), I suggest Unity since it's easier to use as a beginner. + +If you're a programmer, I suggest using Unreal. +--- 93229283 +>>93229010 +> you can play similar games and simply picture your idea over it. +I am far, far past that point. I am at the point where the basic design starts to fall apart at the tabletop with pen and paper. Modifiers are getting too slow to calculate on the flight and so I need a more or less automated tool. + +> and then start prototyping using exisitng assets (since tactical combat system is fairly common), I suggest Unity since it's easier to use as a beginner. +>If you're a programmer, I suggest using Unreal. +I am a programmer, but at this stage any proper game engine seems very, very slow to do the work. It's actually gonna be somewhat faster to do it on pen and paper for a few iterations more. +A proper game engine will be very important once I get to "digitization" phase. Where I'll start to work on translating tabletop to a videogame. Stuff like experimenting with active pause, general look and feel, scale, etc. I plan to go with Godot at that stage, since my autistic friend will be doing programming and he worked with Godot before (and was happy with it). I get enough programming at my day job. +--- 93229312 +>>93229283 +Also, another point I forgot. Right now the game is only possible to test live. As in sitting in a room with me, playing with toy soldiers on my kitchen table. I want to be able to test it with some other autismos online. +--- 93229667 +>>93229283 +I've tried prototyping with figures on a cardboard, but just couldn't get the concept represented as easily as using Unity. But that's just me, I know many people who prefer making a boardgame version before start making a digital version. + +I'm afraid I'm not aware of a tool like that except for tabletop simulator which would be a lot of work to mod your concept in there. +--- 93229759 +>>93229667 +> But that's just me, I know many people who prefer making a boardgame version before start making a digital version. +Yeah, I am doing that. Being a long time wargames fan, it's easier for me to create the barest and simplest representation on the table. Having access to assets and generally understanding what's fun and what isn't. +It would take months of work from idea to a prototyping platform in any of the engines I know, and it would still not be as flexible and quick on early iterations. + +> I'm afraid I'm not aware of a tool like that except for tabletop simulator which would be a lot of work to mod your concept in there. +Yeah, I've tried with Tabletop Simulator and Roll 20. It was basically a waste of time. Time and effort required to get something usable is higher than just making the thing in some game engine. + +I suppose the best way about it is just using Excel for modifier crunching and templates, and using videochat to play online. Oh well. +--- 93230067 +>>93229759 +If your main hitch is tracking a bunch of modifiers and you really want to avoid building the actual game, maybe look into FoundryVTT. It's built to support adding custom ttrpg systems. +--- 93230099 +>>93230067 +>FoundryVTT +Looks pretty neat. I'll give it a look. Thanks. +--- 93230481 +one more character IK setup left. diff --git a/g/93153146.txt b/g/93153146.txt index 87ab9cea5235f8929f85b6b6d658fd81a9ade242..07a8ca62b9b27e9cbb5dc5dda51f3b4477a62bfc 100644 --- a/g/93153146.txt +++ b/g/93153146.txt @@ -689,3 +689,27 @@ It's my first thinkpad. How I suppose to use the dock? The ikea-style instructio It have one button that looks like power button. Is it just doubles the power button on my laptop? Can I safely press the eject button while I'm working or I need to power off or sleep the laptop first? Thank you anon. +--- 93223523 +>>93223431 +also, what is the purpose of that thingy? +--- 93224533 +>>93223431 +I have an ultrabase for an X61. Assuming the instructions you're referring to are the same as the ones found on mine, they're instructions detailing (from left to right) how to dock and lock it with a kensington lock, and how to undock-you unlock the kensington lock, press the button on the side, and wait for it to change. I assume all that has something to do with mounting file-wise. The other button is a power button to turn on your Thinkpad. You can eject while working, but need to follow the instructions above first. + +You can use the dock as a charging station-keeping the dock always plugged in and just dock when you're low on power-or you can use it to quickly have all your I/O set up, like for (an) external monitor(s). +--- 93224578 +just got my P15v3, ryzen 7 6850h pro, 32gb ram, A2000, 500gb m.2 + +comfy +--- 93225005 +>>93222416 +ngl that's a good get +--- 93226336 +x230 with chink quadcore board corebooted is now officially the best anti-spyware laptop that doesn't cost almost $2k+ + +As such, anyone know a good source to get the fhd mod? I forgot how bad 768 was. +--- 93226577 +Hello. SIRS! +Has anyone flashed Middleton's BIOS with Linux? It's supposed to be done through a 32bit version of Windows, but there's an iso provided and I'm curious whether you can burn the iso onto a CD and use it while running Linux. +--- 93230298 +bump diff --git a/g/93159486.txt b/g/93159486.txt index 3dcc0eb68fcc3935df70245ea3a312236e59f460..6eaddc991b5478b09f4dfc3dcdb71af433dc7b8f 100644 --- a/g/93159486.txt +++ b/g/93159486.txt @@ -1051,3 +1051,86 @@ I have so much to learn; like... years worth of learning. I regret not majoring >>Have maschine mk2 since release >>Used it twice. Anyone have any actual links/videos or tutorials on how to get started so I can dust this thing off? +--- 93223690 +remaking songs... remaking songs.... + +I wanna be good at trance ;__; +--- 93223693 +The Maschine is the Nissan Altima of midi hardware. +--- 93224147 +My submission for the album: +Board: /toy/ +Title: "Fidget Spinner Story Mode" +--- 93224270 +>>93223690 +Remaking songs will get you nowhere. +--- 93224289 +>>93224270 +--- 93224328 +>>93224270 +All ZUN does is remake the one song he ever made. That's the secret to 2hu music. +--- 93224644 +>>93224328 +He should continue to do so, it's a great song +--- 93224991 +>>93184143 +Sunvox if you want everything to be in one program and no need for external VSTs. Everything is modular and you can make your own patches for anything, it also sounds amazing. Renoise if you want more efficient interface with modifiable keyboard shortcuts for almost anything you can think of and of course VST support. +I used to use Renoise but moved to Sunvox and I find the interface a bit annoying compared to Renoise, it has weird quirks like pausing the track if you delete or move a pattern which is very annoying, also no keyboard shortcuts for moving between patterns. Also, Renoise is pretty big at this point while Sunvox is very slick. +--- 93225807 +>>93220534 +why the fuck is your bass clef playing chords and your treble clef playing single notes? +It should be the other way around.... +--- 93225891 +>>93225807 +>>93220534 + +just wanna add: i listened to your audio and there's a reason why chords are usually not being played in the bass clef...at most 2 intervalls because chords in the bass clef sound awful...and it did sound awful in your submission + +rearrange your composition, switch it around and i bet it would sound way better +--- 93225919 +>>93216856 +>acoustic drum vsts? +sample drum solos +--- 93227998 +EtBallet +--- 93228468 +>>93172752 +>buy 61 key MIDI controller +>start learning how to play +>missing 1 lower octave to play practice songs from the book +>try to play a piece i like +>realize i'm lacking an octave there too + +Sure, I could have used the octave shift feature on the keyboard, but that makes it awkward. Now I'm selling it and getting an 88 key one. +--- 93228509 +Complete outsider here, + +qrd me on how machine learning audio synthesis will disrupt this industry. Also, 12 years ago I asked if you could "sculpt sound through visual 3D mediums" and I got a flat no. Seeing >>93159486 (OP) kind of made me hopeful we're moving there. +--- 93228515 +Any of you found brown note yet? +--- 93228575 +>>93228468 +Here is good exercise for you. Transpose button and modwheele use. +But really, this shouldn't be a problem just play in the same octave I'd it's only finger work you are worried about. +--- 93228595 +>>>/wsg/4981352 +--- 93228784 +>>93228509 +Positions of creating “background” or “filler” music and one shot effects and samples will 100% be eliminated. +That’s all we know for sure at this point from where the tech is already at- everything else is just speculative, however likely it may sound. +--- 93230134 +>>93228515 +>Frequencies supposedly involved are between 5 and 9 Hz, which are below the lower frequency limit of human hearing. +>Attempts to demonstrate the existence of a "brown note" using sound waves transmitted through the air have failed. +https://en.wikipedia.org/wiki/Brown_note +--- 93230556 +>>93230134 +>using sound waves transmitted through the air have failed. + +eat some chipotle and you will totally be able to produce brown notes +--- 93230583 +>>93230556 +I don't need chipotle to take brown notes on my note(menstruation)pad +--- 93230759 +update on serum +thanks guys its pretty fun diff --git a/g/93166686.txt b/g/93166686.txt index 7b8110aff8a2d4a4d9bc9a0b3af01264c42b1f1c..6a47570e4b3df3d3c024697514cbfbdc739872c0 100644 --- a/g/93166686.txt +++ b/g/93166686.txt @@ -810,3 +810,28 @@ Post cat I like the plastic ones that are retro inspired, like the Vortex PC66 (which I own and is a great keyboard) and those Mac ones with HHKB layout. --- 93223261 >>93222963 +--- 93223736 +https://youtu.be/yWoDSsCX1S8 [Embed] +--- 93226219 +Do you have any tips on how to remove keycaps if you lost the tool that came with your keyboard? +--- 93226475 +>>93226219 +You can bend paperclips into a ghetto keypuller. If you have access to a 3D printer you could also print out a new one. +--- 93226605 +>>93226475 +thanks +--- 93226736 +are there other nice budget linears besides gat yellows? +--- 93227183 +>>93217902 +gateron north poles or oil kings unless you actually care about what they look like in which case I'd probably frankenstein something similar for fun +--- 93229754 +>>93228647 +nasty +--- 93230528 +>>93229754 +For once it's actually PBT, not ABS. +--- 93230655 +>>93181714 +> no f row +Complete shit diff --git a/g/93169981.txt b/g/93169981.txt index fcfc01120214f96acb932b70006d1387a9417940..3067259a28b564811913c58f59757ed035dda285 100644 --- a/g/93169981.txt +++ b/g/93169981.txt @@ -623,3 +623,77 @@ fag --- 93223270 >>93180183 Nice keeb I like this set up +--- 93223590 +>>93184172 +nice anon, very comfy + +>>93185647 +too clean + +>>93186161 +great picture + +>>93191409 +nice cat - new angle + +>>93193841 +I really like this one but don't understand the layout at all.. very odd + +>>93193985 +Excellent imo... Reminds me of mine but clean + +>>93196553 +wow this is amazing. Based drummer too. + +>>93204935 +GL anon, sell that toy and get the monitor first you'll be golden + +>>93211471 +I agree with everyone else... comfy but the toys can go + +>>93213528 +very pretty and I'd like to hear it + +>>93216749 +crazy keeb and why so many keycaps +--- 93223658 +>>93223464 +I have to admit I like it though I don't want to. Def needs a second monitor but it wouldn't look as clean +--- 93224116 +>>93222153 +what are you working on +--- 93225832 +left is work station for work laptop, right is gamer/gamedev station, i need to clean up all the shit under the desks at some point +--- 93226214 +>>93225832 +What monitors? +--- 93227577 +>>93216749 +dude im planning to get that table, could you please do a mini review for it +we kinda have the same monitor too, does the fucking monitor's stand get in the way of the mouse? +my small table and the monitor kinda fucks up my mouse movement lol +--- 93227919 +>>93209638 +Hoarding is one thing, but why not clean the place? Like wipe the dust and arrange shit? Get some shelves? +--- 93228423 +>>93177737 +they do it in very hot/humid climates. +like when i was visiting friends in queensland australia, every single home had at least half the house tiles and the other half wood floor boards. +the bedrooms were usually wood boards. +--- 93229717 +>>93212904 +that's a sliding keyboard tray from underneath a desk with the rails screwed off +--- 93229807 +>>93226214 +32" CT550 Curved Monitor +--- 93229833 +>>93219827 +Herman Miller Embody, very expensive chair at $1830 USD with the cheapest options. It's on 20% sale now at $1600 USd though +--- 93229866 +>>93225832 +Please get a real desk. +At least one, those plastic shits are bad and suck. +--- 93230279 +>>93223464 +pretty clean. +Q: do your eyes sometimes feel like your surroundings are too bright? diff --git a/g/93187198.txt b/g/93187198.txt index fd45bb3a6b92a93db92eac5987c54cc0164a00fc..4e79e4ca1d2d319c4dae4abe6b175ac0d54280bc 100644 --- a/g/93187198.txt +++ b/g/93187198.txt @@ -594,3 +594,48 @@ Inshallah --- 93223356 >>93222558 It's embarrassing to watch so many people kowtow to what is obvious insanity, treating with reverence what is basically a delusional fetish of a coombrain. +--- 93223767 +>>93190357 +its not hard to be not be an attention seeking assmad retard +--- 93226202 +>>93223356 +I agree. They can do whatever depraved shit they want to themselves, just don't drag the rest of us into your fetish. +--- 93226258 +>>93198235 +>it's not much to do this +How many times has this been said? It's never enough for you people. You'll never be satisfied because you're trying to pretend to be something you're not instead of accepting the way you were born. Fuck you and fuck your delusional garbage. Stop dragging the rest of us into your fetish. +--- 93226672 +>>93187198 (OP) +jewcrosoft. that's all. +>>93204610 +>inb4 they apply automated filters to ban anyone with 'toxic' (i.e. bad goy) pronouns +--- 93226749 +trannies only exist online. +the internet makes you gay. +--- 93226788 +>>93187198 (OP) +>Visiting user profiles +You're the problem. You're using Github as social media, not as a code contribution platform. +--- 93226884 +Honestly the only, singular case where pronoun identifiers make sense is anonymous accounts. I’m sure anon women on GitHub don’t like being referred to as a man when other people are discussing their projects or commits. Unfortunately trannies ruin everything +--- 93228298 +>>93226884 +>I’m sure anon women on GitHub don’t like being referred to as a man +every biofoid i've spoken to is somewhere from indifferent to more comfortable to being referred to with male pronouns online +--- 93228691 +Is there an extension out there that does find replace on pronouns and replaces with dipshit ? +--- 93228974 +>>93187198 (OP) +they(/them) want the gitlab audience +--- 93228985 +>>93187624 +cope/seethe +--- 93229256 +I can't help but find this unbearably based at this point. The screaming and groaning of the anonymous troll demons of 4chan is like music to my ears +--- 93229639 +>>93187198 (OP) +oh yes, all the made up words like "she" and "her" +fucking retard +--- 93229668 +>>93193174 +nobody is saying they aren't related, just that they are far from the same thing diff --git a/g/93193328.txt b/g/93193328.txt index 6e021d0f4b7be9c83c74da0050dd177a82289715..a490dc8728a4ba73e64890cd9098794d995f5d39 100644 --- a/g/93193328.txt +++ b/g/93193328.txt @@ -784,3 +784,173 @@ can't stand anything mustang. i just like pretty paint >>93222254 i've bought them 3 times! once as a gift! the one set from their initial release many moons ago, back when they were hyped as a down-sell KXXS. i even sold my Kanas +--- 93224023 +>>93223213 +--- 93224816 +>>93224023 +nice +i see it getting reposted for infinity +--- 93224823 +Is the $100 refurbished HD560S deal still a thing? I remember hearing about it on /hpg/ but can't find it anymore. +--- 93224837 +>>93224823 +why would you buy that pos +--- 93224879 +>>93224837 +you're delusional. pull your head out of your ass and come back to me when you're in touch with reality again +--- 93224884 +>>93224837 +Because for headphones that's actually pretty good, he's in the wrong thread though. +--- 93224921 +>>93224884 +I'm not, /hpg/ is dead-- not as in "oh we don't get enough people" but like it's actually just not there. /hifi/ says "Headphones, headphone amps, IEMs and earbuds go here: >>>/g/iemg" +--- 93225055 +>>93224921 +That's guy is just trying to troll by sending headphone questions here because he is mad that /iemg/ didn't want to become his audio general +--- 93225150 +>even speaker schizo was sick of dealing with "Best under $50 gaming headphones?" "Should I buy Sennheiser / Beyerdynamic XXX model?" +kek will dent heads ever learn? +--- 93225183 +>best under $50 wireless gaming headset i can buy in Boliva? +--- 93225222 +My Buds2 Pro has the same problem as the Quarks DSP: the sound fades in for a second before it reaches the set volume. I didn't find anything about the matter, and I didn't got any updates on the galaxy wearable app, could this really just be a firmware issue or is it just supposed to be this way? Cause the original Buds Pro didn't do this +--- 93225227 +>>93224921 +Found this in the archives >>93084379 → it looks like the guy who makes /hifi/ threads was just sick of headphonefags asking the same questions over and over, but also it seems like he's stopped making threads entirely now so you can go back there now I guess +--- 93225260 +>>93225227 +i am on /hifi/ and i will continue to ignore that and will happily talk about headphones. +--- 93225286 +>>93225260 +Based. Don't let the fact they're pos stop you from enjoying them. +--- 93225340 +>>93225286 +i just like everything +--- 93225888 +>>93225803 +I find that DD movement erotic +--- 93225987 +My wife is physically disabled and can't travel very well, so I had the idea to help her take a vacation in her mind. this plan consists of four things: + +>1. a pair of "nice" headphones with a large frequency range +>2. instrumental concept albums or extended soundscapes for her to listen to +>3. a dark room and a comfy bed +>4. weed and/or shrooms + +I don't know dick from shit about headphones so if anyone knows what I'm talking about, is it going to be more important to spend money on headphones or spend time curating the audio? +--- 93225993 +Is Truthear part of Moondrop +--- 93226006 +>>93225803 +Show electrostatic +--- 93226018 +>>93225987 +>1. a pair of "nice" headphones with a large frequency range +Is this bait +--- 93226041 +>>93225993 +Google says this +--- 93226045 +>>93226018 +yes, you have been trolled, epic style +--- 93226234 +Im looking for a pair of wireless earbuds for gym use only, not headphones i dont like the weight on my head, and i dont like the idea of a wireless adapter for wired monitors. +Dont mind low battery life, 3h would do. +Im from mexico if i can buy from aliexpress it would be great but i can ship from texas if US only. + +>Budget: ~115 usd +>Intended use: GYM +>Sound signature: idk im not sure +>Past gear and your thoughts on them: + +xiaomi hybrid pro hd: used them about 7 years ago, I remember liking them but they were a bit to bassy + +Final E2000: Liked them a lot but they where not very confortable and the cable shorted after ~3months of use + +KBEAR Neon: liked the sound but i had to plug them too deep for a good sound, not a fan. + +KZ ZSN: love them, dirt cheap, I like the sound profile, very comfortable. something like these would be great +--- 93226326 +>>93206794 +final e500/1000s are such a disappointment +--- 93226390 +>>93226234 +>Budget: ~115 usd +Moondrop sparks, galaxy buds pro, huaweii freebuds pro, NF audio na2. There's also the KZ Z1 that sounds kinda similar to the zsn at a cheaper price point. +--- 93226408 +>>93206794 +So many shit phones in a single image +--- 93226491 +>>93225987 +difficult to advise friend. i would prioritize comfort, as sound can be EQ'd with software. still, I cannot know what your wife will think is comfortable. i personally do not think headphones really work if you want to relax/lie your head down. this is /iemg/ which insert in ear canal, which some are fine with and other people who are unaccustomed to it may not be fine with. +--- 93226596 +>>93225803 +That's not how it works. +--- 93226603 +>>93226596 +Source: some random guy on the internet who doesn't even have a custom animation proving his point +--- 93226619 +>>93225803 +>not even showing the digital stairsteps +--- 93226668 +Tangzu waner cable and eartips all fit like shit any replacement recos? +--- 93226695 +>>93226603 +I don't have to post anything when the planar side literally has moving magnets lmao. +--- 93226733 +>>93225803 +>oowoowoowoowoowoowoowoo +>wubwubwubwubwubwubwubwub +--- 93226766 +>>93226733 +flipped for better visualization +>sssssssssssssssssssssssss +--- 93226791 +>>93221178 +I don't want to go back, these days I can simply get the most comfortable/best looking IEM and get better sound than every other IEM in any budget. +--- 93226830 +>>93216316 +I see. I think I'll look for a regular cable + dongle instead then, thanks anon +--- 93226833 +>>93226390 +thanks anon +--- 93226851 +>>93221178 +>TECHNICALITIES +nah bro they are real +--- 93226917 +Kz pr2 or zvx +--- 93226929 +>>93226833 +not him, but can consider soundpeats capsule3 pro too +--- 93226933 +>>93226917 +Wait for the PR2 Pro +--- 93226943 +>>93226933 +Can't wait +Wtf is planar +--- 93226957 +>>93226943 +shit's a portal to another plane of reality bro. enhances the sound wave dimensionality +--- 93227626 +>>93225987 +My wife is 10 years old btw +--- 93227980 +>>93227626 +uoh, same +--- 93228280 +>>93226408 +Fuck off chink +--- 93228567 +I have 200 bucks to throw at a new pair of IEMs, looking at the Yume 2 and Midnights from Seeaudio and the Kato from Moondrop. Which should I pick and why ? +--- 93228625 +>>93228567 +Wait for a lil' bit, there's a fuckton of collabs coming up in may, like yume ultra or well known and hugely popular juzear flame. Brand new pos coming soon! +--- 93230484 +Bump +--- 93230592 +Is it a good idea to test IEM I want to buy with AutoEQ? +I usually autoeq my Chu to truthear hola, tanchjim ola bass, and variations. +I'm thinking of buying the tanchjim ola bass to replace Chu. +Any suggestions? diff --git a/g/93196319.txt b/g/93196319.txt index ad97e6e154d998cb47124f5d8b314181b453e99d..860b3b20a75a8d0bf05bea570cbc4aee7fe25826 100644 --- a/g/93196319.txt +++ b/g/93196319.txt @@ -436,3 +436,73 @@ https://wiki.radxa.com/Rock5/hardware/5b --- 93223438 >>93210066 no one buys a pi-hole. people say they want to buy them, but you'll see 2 or 3 sales in a month. the kind of people that want a pi-hole are savvy enough to build their own. +--- 93224214 +>>93196319 (OP) +Running Nextcloud for file storage / backups. I've got it hooked up to an old laptop hard drive for storage +--- 93224257 +>>93197286 +Did you have it running on a Pi 0 or normal Pi? + +I was having trouble installing it on an old laptop running Ubuntu and was wonder if it was worth trying to install it on a Pi 3 +--- 93225307 +>>93201264 +>>93201077 +>>93201012 +if you use a browser instead of the youtube app, most ads get blocked. I use brave + pihole and the combination of the two of them stops basically all ads. +--- 93225350 +>>93196998 +>measuring amount of electricity in my house +how? +--- 93225375 +>>93225350 +you need to buy special outlets/plugs or something to hook to your electrical panel. you can't do shit with just a rpi alone to measure electrical usage. +--- 93225434 +i use my pihole to host docker. +my main server is for storage only +my router handles anything network related(adguard/crowdsec/dns/etc) + +I only use my storage server when im home, so no need to have it running 24/7. pihole solves that problem +--- 93225626 +>>93211173 +>Tuya compatible sensors cost a fraction of the competitors but they all try to ping home every 2 mins. Good thing there is a way to make them work in local network only. +You can flash them with an ESPHome fork too. +https://docs.libretiny.eu/docs/projects/esphome/ +--- 93226585 +DOSBox,Nas,Win98&OS9 Emulation. +--- 93227339 +>>93225626 +>https://docs.libretiny.eu/docs/projects/esphome/ +Fuck this is neat. I need to find time to take the thing apart and flash it +On an unrelated note we really should have a home automation general on here or /diy/ (probably /diy/ would be better since /g/ it's a zoomer shitfest) +--- 93227368 +>>93196319 (OP) +It's my mediacenter. +I want to get another one to act as nextcloud server, but they're a bit too expensive right now. +--- 93227386 +>>93227368 +why not both at once? +--- 93227396 +>>93196319 (OP) +I piss on it +--- 93227480 +>>93227386 +It should easily be capable of doing that, but I'm too retarded to make it work. For some reason kodi performs horrible under raspbian (or even the pi ubunto). Libreelec runs great, but I can't run much else then. +--- 93227537 +I use it to force myself to actually program. I made my own 3D game engine using SDL2 and written in C. + +I kinda am forced to use best practices to keep it efficient and make it run on the Pi4B+ which I wouldn't have to do if I were to use a regular x86 computer. + +I also can't do other things while programming and debugging because it isn't powerful enough to have browser tabs open at the same time which constraints me just right. + +I highly recommend it for perma-procrastinators like me to actually make progress. +--- 93227561 +>>93196319 (OP) +runs my discord bot and any other apps I wanna run 24/7 like my prometheus instance, ssl reverse proxy, dev dbs/redis, ... +--- 93228733 +>>93196319 (OP) +Doorstop, I guess? Or paperweight... +--- 93228817 +>>93225350 +if you have space just point a camera to the meter and record it use ocr to save the data at different times. +--- 93230589 +a nextcloud instance diff --git a/g/93196919.txt b/g/93196919.txt index 61341dd0583efac43415492dd78919477c48aa1e..a81afd422f4611ab5c854dd36322422522ef9119 100644 --- a/g/93196919.txt +++ b/g/93196919.txt @@ -516,3 +516,190 @@ Use the top link in the Windows ISO pastebin in the OP. Choose 10/11 link 2. Go through the list till you find 10 22H2. Set your language and wait for the download link. +--- 93223529 +>>93223485 +And then I just run burn the ISO and install it and that's it? +--- 93223530 +got me a windows 11 install and not sure if i can or should downgrade. what are my options for anti telemetry and QoL improvements since i dont see jack in the OP +--- 93223633 +>>93223529 +Yep, after you get the ISO either use Rufus or Ventoy to make a bootable USB. Then when you go get into the setup choose the Upgrade option for install method. + +>>93223530 +Download ShutUp10++ and run its recommended settings via one of its drop down menus. Disable all scheduled tasks in the Application Experience and Customer Experience Improvement Program folders via Task Scheduler. Disable cloud protection and auto sample submission in Defender. +Restart your computer and you're basically all good. +--- 93223787 +>>93223633 +domo arigato +--- 93223939 +>>93223633 +Okay small issue regarding the Windows 10 upgrade. +The Setup isn't actually doing anything. I click it but nothing actually happens, probably something corrupted on my PC. +So if I can't make the executable just run itself and install It that way, I would have to run on boot through a USB or something like that right? +Like using Rufus to prepare it beforehand, right? +--- 93224016 +>>93223939 +No, after flashing the ISO to the USB with Rufus you restart your computer and directly boot the USB, which leads you to the Windows setup. +--- 93224040 +>>93224016 +Okay, I'll see I can a hold of a Pendrive tomorrow. +Uh I wouldn't be able to use my phone right? +Anyway by doing this through the usual method of installing through booting Windows will I still lose my files? +--- 93224053 +>>93224040 +The whole point of the upgrade option in the bootable setup is that you keep your files and folders. Though if you're feeling anxious about it you could always back it up to a USB/external drive or something just in case. +--- 93224066 +>>93224053 +It's fine I believe you. +Anyway, thanks for helping me out anon. Have a fine evening! +--- 93224345 +how can i remove this crap? its disabled and effectively removed yet its icon persists, i cant find it where the other icons are in the fs ;/ + +also is there anyway to get snip and sketch back as its short cut was nicer than "snipping tool", or just an alternative. i have all other uwp crap removed so i assume that took it with it. + +this is ltsc stripped with offline optimize and then running privacy.sexy with effectively everything selected lol.. +--- 93224367 +>>93224345 +The Windows Security UWP won't go away but it doesn't do anything if you've disabled Defender. Just ignore it. +--- 93224878 +>>93223633 +i did restore system and made sure autocomplete website was selected in local machine and user but edge lost website autocomplete. any clue why? +--- 93224898 +>>93224878 +Check the settings in SU10++ under the Edge section. +--- 93225000 +Why does Windows hide the free version of the HEVC video codec? +--- 93225006 +>>93225000 +So they can afford to get some gum at the gumball machine in the lobby. +--- 93225032 +So I used to have Windows 7 then upgraded to 10, then I just upgraded to 11. Now it says I don't have a valid windows. Do I have to buy it now to get rid of this activate shit? +--- 93225084 +>>93225032 +Use MAS to permanently activate it via HWID. +Just go to the git in the OP and follow the instructions to run it through an admin PS/Terminal instance. +--- 93225121 +>>93225006 +It's so retarded that a thing like that isn't already included in Windows. Apparently it was in the past but then they stopped adding it. The Windows I have in my desktop must have it because I can play movies with HEVC but I have a laptop that is newer and it can't play them. + +Do you have it installed? +--- 93225154 +>>93224898 +sorry i wasnt clear enough, but i did do this. tried the restore point and a restart first. nothing shows up, but i just checked and when i type "twith" the most visited twitch shows up in suggested URLs, but NOT autocomplete. very weird +--- 93225180 +>>93225154 +Can't really help too much more because I don't and have ever used Edge as a daily drive browser. +--- 93225226 +I keep reading that VLC should be able to play HEVC by itself but that's not true, if you don't have the HEVC codec installed in Windows it can't pay them. +--- 93225230 +>>93225084 +Thank you Anon. +--- 93225266 +>>93225084 +but you have to disable Device encryption for that +--- 93225291 +>>93225226 +I use it to play HEVC at work¿ that PC doesn't have the extension installed. both VLC and mpv use ffmpeg to decode videos not the OS installed codecs +--- 93225301 +>>93225226 +Try playing your videos with mpv. It doesn't rely on any outside codecs. I don't have HEVC codecs installed myself. +Running its update script also installs yt-dlp and ffmpeg alongside it. Use the x64-v3 version if your processor supports AVX2 instructions. +--- 93225322 +>>93225266 +Then disable the encryption, run the activation, then re-enable it. Easy. +--- 93225412 +>>93225291 +And how is it that my desktop can play it but my laptop can't? Using VLC in both. +--- 93225500 +>>93225412 +Well, what is the error message you're receiving? I just tried VLC in Windows Sandbox, a sanity check, it also doesn't have the HEVC extension, and it worked, so it isn't a change with the latest VLC +--- 93225614 +>>93225500 +I don't have any error message, VLC open but the video doesn't show up, only the audio. +--- 93225712 +>>93225614 +Alright we will try it your way, paste this +https://apps.microsoft.com/store/detail/hevc-video-extensions-from-device-manufacturer/9N4WGH0Z6VHQ +into https://store.rg-adguard.net/ +then download and install the appxbundle, that is the free HEVC + +Then try again, if it works then it is using the OS codec, if it doesn't then the issue is something else +--- 93225742 +Something weird just happened to me. I just opened VLC to play a movie and suddenly the Windows Firewall tells me if I want to allow VLC. + +Very weird, I don't remember this showing up and I have been using VLC for many years. + +I assume this is for VLC to search for album covers and shit like that but do you have any idea why is this showing up now after many years using it? +--- 93225757 +so after using optimizer offline and privacy.sexy i thought i had avoided removing both 1. windows hello / finger print login functionality 2. default app select / open with dialog functionality + +but both are unavailable, how do I get them back can I get them back? + +used the recommended fork of offline optimize, windows version is 21H2 windows 10 LTSC +, the biometric device itself shows up fine in device manager and drivers are installed btw + +thanks in advance for any info +--- 93225764 +>>93197162 +You mean Everything + EverythingToolbar (newcomers wouldn't know) +Also Icarus, you do want thumbnails for VP9, don't you? +--- 93225805 +>>93225764 +You're right, I had no idea EverythingToolbar existed. +Cleanly replacing Windows Search with Everything sounds pretty nifty. +--- 93225833 +>>93225805 +First thing I do when installing W10 IoT LTSC is to disable the Windows indexing service so Windows Search can stop raping my storage, as resource monitor will show. I don't think this is needed for Everything to work. +--- 93225854 +>>93225712 +I already found a link to download the free version, this one: ms-windows-store://pdp/?ProductId=9n4wgh0z6vhq + +>>93225712 +>if it works then it is using the OS codec +So then VLC needs the Windows codec, it can't play it by itself. THat's my point, I have read that VLC can open HEVC by itself without you having to install the codec on Windows. +--- 93225863 +>>93225833 +Everything uses its own indexing that needs admin privilege to work first time. Then you can search every single drive of your computer for anything. +--- 93225867 +>>93225764 +>Also Icarus, you do want thumbnails for VP9, don't you? +Icaros was needed for webm thumbnails not VP9 specifically, VP9 mkv's were working just fine with the VP9 extension, however the web media extensions that ships with W11 decodes webm thumbnails now without Icaros +--- 93225910 +>>93225854 +>So then VLC needs the Windows codec +Did you test it? +> it can't play it by itself +I wouldn't be so definitive with your experience if you just said your desktop can play but your laptop cant? also I just pointed out my VLC plays without the HEVC extension installed +> I have read that VLC can open HEVC by itself without you having to install the codec on Windows. +Which is consistent with the experience I had at work today, and a few minutes ago using a sandbox. +--- 93225961 +>>93225910 +I can also play it on my desktop with VLC and I don't have the HEVC extension installed. And that is because the HEVC codec was included in older versions of Windows 10 but then they removed it. That's why I can play it on the desktop (older version of Windows) and I can't on the laptop (newer version of Windows 10). +--- 93225989 +>>93225961 +Have you thought about just not using VLC and using mpv instead? +--- 93226027 +>>93225989 +I don't know, I have been using VLC for so many years. I would want to fix the problem with VLC... + +I don't know I could try installing mpv to see if it can play it. + +Why is mpv better than VLC? +--- 93226054 +>>93226027 +More performant, runs everything, incredibly customizable via an mpv.conf file. +I went from VLC to MPC-HC to mpv over a some years course and I've stuck with mpv the longest because it does everything I want. Plus its symbiosis with yt-dlp and ffmpeg makes it the best video streamer around. +--- 93226192 +>>93225961 +>And that is because the HEVC codec was included in older versions of Windows 10 but then they removed it. That's why I can play it on the desktop (older version of Windows) and I can't on the laptop (newer version of Windows 10). +Brilliant deduction except for the fact you keep ignoring the evidence, also it was never removed from Windows 10, all they did was remove the ability to download it, if you had it installed then you got to keep it. +--- 93227691 +I'm wondering if putting IoT LTSC 2021 on a family friend's older computer would be a good choice because they're the kind just to use their computer to web browse/use Youtube/Facebook and not much else, and this makes it that they don't have to worry about their OS EoL-ing any time soon. +--- 93229227 +>>93227691 +Yes. +--- 93229413 +>>93229227 +Simple enough answer. I successfully installed LTSC 2021 on an old BIOS HP SFF from 2010 or so so installing it to a 8.1 era laptop should hopefully be as smooth. +--- 93229911 +just downloaded goyslop 11, is there a way to change all of the folder icons to the one from 10. these ones are ugly diff --git a/g/93197049.txt b/g/93197049.txt index 5735b2dc7310cebb49a371dcbc1e0ed92c1f2a07..b6782455696ed840cf914711a2a4e556d82ba62f 100644 --- a/g/93197049.txt +++ b/g/93197049.txt @@ -279,3 +279,82 @@ It's the Klassy window decoration with gradient on and set to use the icon theme >>93211147 we are the same but from opposite realities god i want her so bad +--- 93223566 +>>93223472 +Why is that guy your wallpaper? +--- 93223798 +>>93222305 +my last ex is named alexis i hope you kill yourself +--- 93224100 +>>93223798 +But why :( +--- 93224370 +am I doing this right? +--- 93224631 +>>93222650 +Ok, let's see what you built. +--- 93224770 +>>93198222 +Why would you use something that slow +--- 93224801 +>>93224770 +It obviously has a bunch of frames skipped to keep the video size down. webm format is hot garbage. +--- 93224895 +>>93224801 +Or its openbsd as indicated by the top icon which is an insanely slow OS. +--- 93225149 +>>93224895 +OpenBSD isn't slow and I run it on a PowerMac G4. +--- 93225218 +>>93197049 (OP) +--- 93226124 +>>93203100 +>Xfeces +kek + +>>93201535 +DE,WM name? + +>>93197049 (OP) +>kitty +based + +>>93213956 +soul +imo smt gets cringe when you read bible +--- 93226457 +>>93198044 +openbsd, all their users are pedos +--- 93226463 +>>93197049 (OP) +Still working on it +--- 93226470 +>>93225690 +you don't seem to understand. +--- 93226794 +>>93223472 +pape pls +--- 93226859 +>>93226794 +--- 93226895 +>>93197830 +freewave 3 +--- 93227391 +>>93225149 +Yes it is. +--- 93227501 +>>93222305 +Well, it actually is tranny. If you are a man but "Oh, I'm just not masculine and like wearing fluffy skirts", then you are still not a man, and another pervert like trannies. I know it's hard to stay a man when society wants to feminize you with every passing moment and food has estrogen added to stimulate the growth of the animals, leading to things like gynecomastia in young men, but still make the effort to not be tempted by this easy lifestyle. Men are the ones who overcome adversity. +--- 93228718 +>>93227501 +AI and It's consequences to tgis board have been a disaster to the human race + +this is the /g/ay faggot board, fuck off +--- 93228823 +>>93199457 +>j cole +>fernando alonso +based as shit +--- 93230544 +>>93222305 +i like this. diff --git a/g/93197620.txt b/g/93197620.txt index 6336948fac18d6a95b67dad868c6d6b7236da5d6..61c5ba496b8d72af0a84db74b99fa3b56b6d1f67 100644 --- a/g/93197620.txt +++ b/g/93197620.txt @@ -671,3 +671,186 @@ ok maybe its not a fan but it really sounds like one >>93221105 >shipping will cost a fortune for basic and I wouldn't trust russkis mail and I would recommend getting insurance on it because they can and will fuck up the package. You could take it with you in parts? If you bring the whole computer, hell if you bring the parts with you, its gonna raise some eyebrows, especially if your coming from hamburgerland. Your kinda fucked either way, best bet is to probably bring the parts with you as check-in luggage and tell them that you were afraid of the parts arriving fucked up if it was mailed. +--- 93224077 +What do people use these days to download YouTube videos? youtube-dl isn't working for me any more for some reason. +--- 93224108 +Why are osint tools so shit nowadays? Why is no one updating them? +--- 93224164 +I have a movie that when I play it, VLC only plays the audio but not the images. I think it's something related to the video codec HEVC. + +What I don't understand is if VLC can play HEVC why do I have to install another thing for Windows for it to play it?, shouldn't be enough with VLC? +--- 93224207 +>>93219723 +>What would still be using 2G these days anyway? +-heating controllers +-other controllers +-other embedded systems +In other words: everything. +-elevators when doing an emergency call + +>2G might have been set as a forever-network set up for some reason +It's expected those embedded things get 4G modems by 2050 so I guess they'd be closing 2G by then. + +>>93219670 +How does your heating controllers send alarm text messages when the pipes burst or something? +--- 93224266 +>>93224077 +yt-dlp +--- 93224455 +>>93224266 +Awesome, this works. Thanks. +--- 93224469 +>>93197620 (OP) +Why do computing languages have the description of open source to them? For example php and node.js have this description, aren't all computing languages open source? Why include it at all in the first place, its more confusing for beginners than helpful. +--- 93224478 +Anyone know a good source for free study materials for the Electrical Engineering FE +--- 93224534 +>>93197620 (OP) +fuckin MPV keeps crashing my audio everytime I use it, any of you guys have this issue with it? +--- 93224784 +>>93224469 +They mean that the interpreter is open source. You write a php file and then on the server if it's Windows you would have a php.exe parsing it. The source for this is public. +--- 93224985 +>>93224207 +They have reserved radio bands for deadly serious things like sewer lift stations. Most civilian hardware uses POTS or a USB dongle instead of built-in cell modem, which strikes me as idiotic. The only things I've seen built like that were low end luxury cars. Why the hell would you rely on cellular in an elevator? Big buildings are full of dead spots. +--- 93225016 +>>93224784 +What do you mean by the interpreter? +--- 93225058 +>>93224985 +>Most civilian hardware uses POTS or a USB dongle instead of built-in cell modem +The picrel devices have a serial port modem. +>Why the hell would you rely on cellular in an elevator? +The modem is on top of the elevator system, on the roof. Not in the elevator box. +--- 93225193 +someone here? is it damaged or not? :( +>>93215689 +--- 93225283 +>>93225016 +The .php file needs to be parsed by something. That's the interpreter. +--- 93225694 +want to clone my laptop drive and maybe reinstall windows, it's painfully slow and unreliable right now because I have to do it over wifi (no ethernet port) and the laptop is pretty slow just on it's own. Should I +>use usb to link it with my desktop directly +>get a usb-ethernet adapter and transfer to desktop directly +>use usb-ethernet and transfer over network +>get a usb-sata and transfer to a hdd directly from my laptop +>something else I'm too dumb to think of +--- 93225698 +>>93225694 +kys nigger +--- 93225705 +>>93225698 +--- 93225728 +Is it normal to have to clean out a CPUs Heatsink every 6 months or so? +By clean out I mean remove layers of dust +--- 93225773 +>>93225728 +You can wait longer and let more dust collect. +--- 93225783 +>>93215689 +did a quick google and that kind of problem seems to be fairly common going back at least 5 years, do you specifically need hibernate? I would just turn it off +--- 93225829 +>>93225728 +I think there's a dust critical mass +>dust accumulates at constant rate +>dust dissipation is proportional to dust mass +>at a certain dust mass you enter dust equilibrium where accumulation = dissipation +>many other variables like airflow, environmental dust level might alter this level +>this means whether you open your heatsink after 6 months or 5 years the same amount of dust will be present +--- 93225857 +>>93225728 +I usually do it every summer but I never clean my house so its very dusty and hairy and gross +--- 93225861 +>>93225728 +No, get more air filters, they are easier to clean. +--- 93226115 +Who was that famous hacker who is buff as hell but he doesnt hack anymore but he still uses computers and works for somewhere big? +--- 93226982 +>When you post in a thread that thread is automatically added to the Thread Watcher. + +Imagine that incredible option being able on the regular 4chan interface. Wow... +--- 93227551 +>>93207226 +I use MX Player Pro, it's decent, able to handle subs fine. +--- 93227957 +>>93222092 +You can install both drivers. + +>>93222012 +There is Safe Mode as well. + +>>93222434 +The API they are providing is documented somewhere, read the documentation. +--- 93228040 +>>93224164 +VLC can play any format. Maybe it's trying to offload video decoding to your GPU and the drivers or OS don't work properly. +Go to VLC Settings -> Video and pay with Output and Decoding values. Or something like that, you'll figure it out from there. + +>>93224469 +You're confusing a language with its implementation. +Implementations are code and code can have any license that suits the copyright holder. Many implementations and toolchains are proprietary. +--- 93228350 +>>93225694 +Any of those options will work. If you click be to a NAS then get a USB Ethernet adapter, otherwise get the USB SATA one. + +>>93226115 +Linus Torvalds +--- 93228445 +Is there a good program to check which of my old PCs/ laptops are good? +--- 93228699 +>>93228445 +The ones that turn on are good, the ones that don't – bad. +--- 93228705 +>>93228445 +'good' as in 'working' or 'good' as in 'can play the latest video games'? + +crystaldiskmark +speccy +cpu-z +gpu-z +hwinfo +some benchmark program +--- 93228969 +>>93228705 +>>93228699 +Nah I want to see which of my laptops/ little mini PCs are good for a local Plex server that can run torrents on the side. +--- 93229471 +Any addons/extensions that can bypass or grab a url hidden behind safelinking? Trying to download something hidden behind safelinking urls. The site has been down for days apparently. +--- 93229752 +>>93228040 +Are you saying php and node js are implementations and not languages? Why are they described as langauges then? Also what classifies something as an implementation? +--- 93229888 +my pi-hole isn't blocking ads on gelbooru anymore. what do I do? +--- 93229918 +I need help and I hope this is the right thread to ask this in. + +I have two Powermac G4s. One is the older blue one, the other is the newer silver one. +Both have OS 9, but I want to install OS X (any version). + +The problem is that I have no clue how to do that. I don't have any blank CD or DVD, connecting an Ethernet cable does nothing in OS 9 so I doubt LAN booting will work, and I have no clue if it supports USB booting. + + +How do I upgrade from OS 9 to OS X on a PowerMac G4? +--- 93229954 +>>93229752 +Here is a Javascript program. +console.log('Hello World'); +The program is just text. The Javascript language describes what text forms valid Javascript and what that text should mean. +A Javascript implementation performs the task of running this program so that it has an effect. + +PHP is the name of the language and also its most popular implementation. +Javascript is the name of the language. Its most popular implementation is V8. node.js is V8 plus lots of libraries that are well-suited for writing a web server. +--- 93230320 +>>93201221 +yoooo i had one of those +No idea what the name of it was though +Used to be pocket organizers and stuff like that were all the rage +--- 93230390 +>>93213338 +The extension needs to save the modified document instead of downloading again. Try SingleFile: https://addons.mozilla.org/firefox/addon/single-file/ +--- 93230622 +>>93197620 (OP) +What's the difference between bittorrent and Ipfs? As far as I can tell the only difference is that they have easier way to replace files, per-file hash by default and each peer is also a tracker. +--- 93230640 +>>93229752 +You can have a php interpreter/compiler that wasn't made by "php.net - Copyright © 2001-2023 The PHP Group". For example, you could use "PeachPie" to compile your php file and then run it. Your compiler will be PeachPie, the language is still php. diff --git a/g/93200996.txt b/g/93200996.txt index f7b712b3b774a2386b9c8a17296768cbdf31ddd8..4d58e4b60cf898138bbd86909604dfd9f83d6b73 100644 --- a/g/93200996.txt +++ b/g/93200996.txt @@ -374,3 +374,98 @@ Kill yourself, retard. --- 93222494 >>93201290 It's called NotePerformer, but it plays correctly 100% of the time. +--- 93225066 +>>93202082 +>Appear weak when you are strong +how does this help anyone +--- 93225488 +>>93201418 + +as other anon said it's been used on wall street for a while since early 2010s. i remember in 2015 there was an interview where a guy said that AIs were dumping metric fucktons of orders that could not reasonably be filled be filled just to take up bandwidth and prevent competitors' orders from being received and filled. +--- 93225568 +>>93201725 +>There's a name for this hype cycle but I can't remember it. +...FOMO? +--- 93225653 +>>93225066 +It inspires mistaken action from the enemy which will not help him. There is also the corollary, appear strong when you are weak. + +If you appear weak when you are strong, the enemy will underestimate you, and you can lead his forces into traps and destroy them one by one. + +If you appear strong when you are weak, you may deter attack as the enemy fails to seize opportunities for fear that his attacks will be defeated. + +In other words: When you have great power, bait the enemy into action. When you have inferior power, bait the enemy into inaction. In this case, Anon implies that the AI companies are trying to get their rivals not to work on AI while they continue to do so, in order to try to get a bigger edge. +--- 93226473 +>>93225653 +What most people leave out of this is you must already be in some kind of competition or battle with someone. Appearing weak outside of this scenerio does you more harm than good. +--- 93226678 +>>93200996 (OP) +>proprietary service as a software substitute image generation kicks off +>stable diffusion comes out and destroys their business because free open source software people have liberty over using is better +>proprietary service as a software substitute test generation kicks off +>LLAMA comes out and destroys their business because free open source software people have liberty over using is better +>guys, AI models are over, their abilities suck and it's not worth it anymore! +cope, seethe, and dilate. any AI that is not open source has no future. get absolutely fucked into the ground with your niggerlicious service locked proprietary cuckware. +--- 93226863 +>>93226473 +They are trying to discourage people from working on AI while they continue to do so. +--- 93227587 +>>93226678 +>LLAMA +>is better +Come on now, anon. That's just cunnylover cope. We both know that isn't true. +--- 93227651 +>>93227587 +Did you even read the google internally leaked memo? LLaMa is old news and the newest open source models that released a couple of days ago are better than GPT 3.5 Turbo and getting very close to GPT-4 performance already. + +In fact I'll make a prediction that GPT-4 will be surpassed by open source models before the summer is over. + +In fact I'll even go bolder and claim that the open source model will have a bigger multi-modality and a higher token context window than the biggest version of GPT-4 by then. +--- 93227810 +>>93200996 (OP) +Lol, no one knows what the fuck these are just big matrix go whirrrr +--- 93227842 +>>93201290 +YWNBAW +--- 93227897 +>>93200996 (OP) +>create "AI" that improves by feeding it mass quantities of data +>feed it all of the data +>there's no more new data to feed it +>can't improve any further +Who could've seen that one coming? +--- 93227899 +>>93202082 +>>The economic incentive of companies to remove low level workers permanently is literally infinite. Combine this with an impending recession, and suddenly there's all the VC capital you could dream of. They have a chance of getting rid of the poors forever, and that's not something any of them can ignore. +>>>93201956# +>Luddites broke cotton gin's back in the day. The problem now is what do you do with people once jobs are automated away, and that's not something most want to deal with. The world will have no need for 3rd world call centers in a few years, and potentially no need for shit labor jobs too depending on how the tech evolves. +you have such a poor understanding of what a democratic republic is. +Poor people are needed to keep leftists being reelected (by promising welfare) +Civil servants are needed to keep a proxy between merchants and the population. +Here is history lesson. + +atheism = hedonism+narrative that kings are evil. +humanists took power by luck: ie the scientific revolution. without this stuff, they would have had zero support from the plebs and zero material support to popularize firearms to fight and cushy homes and cars to appeal the peasants. +Even the communists allegedly loving science bastardize it and it turns out science doesnt give a shit about politics so if you do shit science the price will be paid sooner or later. As usual it's the population which pays the biggest price and not the bureaucrats nor the merchants. + +This is why with the stagnation of physics, they are shitting their pants because they struggle to feed people with easy material life. +They have two attempts to keep republics going on +-put all the cattle inside ''the internet economy'', giving them digital dollars and let the cattle scroll their phone screens all today long in their pods +-bet big on biology+IT to somehow create a new scientific revolution based on consciousness and IT hacks +--- 93227912 +>>93227899 + +There really isn't a republic without populism and feeding people with chinese crap to make the peasants believe they have purchasing power after 1. capitalists pay them very little wages 2. public servants tax heavily their wages. + +I think the biology bet will be a huge dud and the ''living in pod consummating porn all day by giving digital dollars to e-whores'' is way way more realistic. +There will be 2 societies: rich people living in the real world, and poor people living in the internet and not polluting the earth. +--- 93228085 +>>93227897 +We're not there yet but pretty close. We're running out at around 2026 which means we can probably squeeze another GPT version out of it. +--- 93228972 +>>93200996 (OP) +I can remember who was that fag that said that computers would've become bigger and slower but anyway you got the point already +--- 93230483 +>>93226678 +>stable diffusion comes out and destroys their business +Idk man, Midjourney seems to make lot of money, unlike StabilityAI which is mostly fueled by basedvestors seeing "innovation". diff --git a/g/93201821.txt b/g/93201821.txt index b675c2a9f212bed739b422f309c0e6d4b303386f..c34ee443a7b6c43f93bc7aacad7d010923fa55e3 100644 --- a/g/93201821.txt +++ b/g/93201821.txt @@ -375,3 +375,178 @@ Eat shit. Looking for a recommendation for a decent pair of bookshelf speakers or anything that has an RCA input in the back to use with my old Pioneer plasma, the crappy soundbar fave out and I need a budget option until I buy a proper nice set Budget $150 +--- 93223539 +>>93221793 +150 you'd need to look used and not be too picky. i'd save up. +--- 93223786 +yo what headpones should I buy +--- 93223851 +L700MK2 + EQ + tack seal mod, y/n? I'm tired of my HD800 and I think I damaged the drivers somehow, been sounding weird recently. +--- 93224169 +How do you feel about Yamaha anon? +--- 93224810 +I am very, very new. I just bought a Topping dx1 dac/amp. It has an amp that only functions when plugged into the headphone jacks. Otherwise, it functions as a pure dac with rca out. +Well curiosity got the best of me, and I used an rca to 3.5mm cable to plug the amp into both the 6.35mm headphone jack as well as the 3.5mm jack. I turned the dac all the way up and controlled the volume with the amp. Could I have damaged anything? It sounded okay for the time I did it. I just do not want to have any damage to this new Topping +--- 93225271 +>>93223786 +you didn't give any constraints or preferences, so K371 +--- 93225320 +>>93223786 +dca expanse +--- 93225622 +GOOD MORNING HIFFY! +--- 93225639 +>>93224810 +Be careful you don't get chinked anon. Topping chifi isn't known for its reliability... +--- 93225983 +>>93219419 +Not hifi. +--- 93226318 +>>93219419 +Spending this much on stuff you'll end up using on a belt-driven piece of trash is a waste. +--- 93226327 +>>93226318 +belt is best +--- 93226376 +>>93216802 +see +>>93220177 + +Why are you so willing to die on a hill for something you are objectively wrong about? +--- 93226396 +>>93216802 +lmao...show me the "silver" transistors in that picture...circle them +--- 93226400 +>>93226327 +they'll never get it. +--- 93226422 +>>93225983 +Kys +>>93226318 +The table in the webm is very high end. This thread is full of charlatans. +--- 93226552 +>>93226327 +In your head maybe, but surely not for record playback quality. +>>93226422 +"High end" boutique shit is a joke. +--- 93226566 +>>93226552 +t. crosley user +--- 93226571 +>>93201821 (OP) +fuck audiophiles, recently I have read in a certain audiophile magazine that there are special 'air ionizers' audiophile of course that will 'align air particles in most efficient way for audio transfer from wifi to streamer devices as well as from wireless speakers to the base station' + +Honestly, audioidiots are that dumb to believe such bullshit? +--- 93226590 +>>93226571 +wait until you hear about the dudes that can hear 0.5 dB difference 120 dB down! +--- 93226661 +>>93226571 +>special 'air ionizers' audiophile of course that will 'align air particles in most efficient way for audio transfer from wifi to streamer devices as well as from wireless speakers to the base station' +Now THIS is Hifi! +--- 93226801 +>>93226566 +Friendly reminder that the high-end market for turntables mostly died in the 1980s and that 99% of nowadays' "high end" is only high end in name and price. +Enjoy your inferior hardware sold at premium price. +--- 93226893 +I need more clamps /g/ +--- 93226971 +>>93226590 +I don't have to - I already know one that thinks so. My audioimbecile friend says he can hear how studio equipment produced vibrations on recorded tracks due to interference from audio engineer working on his console and putting his hands on knobs. Fun fact: he can pinpoint exact spots where this happens. Fun fact2: I have analyzed the audio spectrum and I have shown to him that THERE IS FUCKING NOTHING THERE, he still says it is THERE and my $5k lab signal analyzer equipment is badly constructed. Yeah. Fucking morons. +--- 93226983 +>>93226893 +what are you building? A custom shithole for your big fat ass? +--- 93227274 +>>93226983 +24" sub enclosure +--- 93227487 +>>93227274 +damn, that would fit my mother-in-law's arse +in all seriousness tho - why do you need such a big sub I wonder? +--- 93227708 +>>93226571 +Precisely the reason why i tend to avoid describing myself as an audiophile while discussing my interests with other people. These audiovoodoo placeboid boomer retards have tainted that term forever. At this point even complete normies associate it with snake oil and believing in magic and fairies. +--- 93227794 +>>93227487 +NTA but for sub bass I assume? Just a wild guess y'know. +--- 93228168 +>>93226801 +>2023 +>Some literal who company charges 6k USD for a fancy gyroscope used to center your records, if your record is cut more than fractions of a millimeter off center you're fucked anyways. +>1984 +>Nakamichi and Micro Seiki, some of most respected names in the japanese hifi make a whole state of the art turntable that will find the center of the record and correct it automatically for you AND it costs less than today's 6k USD +Really sums up how far downhill the market has gone. +--- 93228239 +>>93224169 +I feel good about Yamaha-anon, sadly he left and now the idiots take over. The amount of swear words has gone up too. +The name faggots are back as well. +They get attracted by micro pockets of well aligned communities. + +>>93226893 +I fear you might destroy your house once your build enters operation. Be careful anon. + +>>93227708 +Wise. + +>>93228168 +Same for belt drive vs direct drive that is quartz locked. It's almost lost tech at this point. The record player manufacturers have degenerated. +--- 93228414 +>>93226571 +Agreed, bunch of morons. Instead of a wife and kids they have expensive boxes that sound the same as cheap boxes. + +Audiophools. +--- 93228441 +>>93227794 +for brown notes eh? Make yourself shit your pants and your whole neighborhood as well? Good thinking anon! +--- 93228590 +>>93220177 +I'd love to see the controlled environment and testing methodology that led to these results. But that's besides the point, a clearly inexperienced anon was out here falling for the manufacturer recommended burn in scam, was informed that it's a scam and you are out here going "ackshually" and throwing data that literally does not matter potentially leading to more confusion and further propagation of the "burn in matters" myth. +--- 93228764 +>>93228590 +Yah sowing confusion is a great way to cover up facts and sell product. +--- 93228991 +>he doesn't burn in his cables +ngmi +https://www.futureshop.co.uk/blog/top-tip-burning-in-your-cables +--- 93229210 +>>93228764 +To sell? Probably not. To keep you from returning in your legally mandated return window? Definitely. I worked part time at a local audio store back in high school, that's precisely what we were told to do when dealing with an unsatisfied customer - insist that they let it burn in. The management wasn't even hiding it, they straight up told us that it's to stall the client until the return window has passed. Pretty sure there's also some psychological element to it, buyers remorse peaks shortly after purchase and falls off fairly sharply as you process the emotion and let it sink in. Also kinda funny how manufacturers who generally tend to take some pride in their craft and care about their reputation usually don't specify or sometimes outright refute the existence of a burn in period meanwhile almost every return related interaction I've had with an internet product pusher that could change their store name any time has mentioned burn-in. Just food for thought. +--- 93229323 +>>93226971 +>$5k +My cable risers cost more than that. Really lifts the soundstage. +--- 93229341 +>>93229210 +Lol clever tactic desu. Peak jewery but clever nonetheless. +--- 93229356 +>>93229323 +--- 93229430 +>>93229356 +Seeing that absolute dogshit translucent Harman Kardon subwoofer next to cable memes and what's probably tens of thousands of dollars worth of amplification sure is evoking some kind of emotion in me. I'm not sure how to describe it tho. Perhaps it's just confusion. +--- 93229616 +>>93224169 +I feel Yamaha anon enhances the thread, adds colour and warmth. The thread has depth and clarity that is otherwise lacking in most threads. Yamaha anon also adds an airy analytical feel to the thread along with some feelings of sexual arousal and houseproudness. + +I would say that for the price Yamaha anon punches well above his weight and is in a category of his own. +--- 93229976 +>>93226422 +vinyl records are not hifi. they degrade with each play, and unless your listening room also happens to be a lab grade clean room, you'll be listening to random popping sounds from dust along with your music. +most would agree that the goal of hifi as a hobby and audiophilia in general is to experience music as the artist intended. i don't know of any artists who want the listener to be hearing popping sounds layered on top of their music. appreciating music via vinyl records is like going to an art museum with a pair of dirty, scratched sunglasses on. +if you enjoy vinyl because of the procedure of flipping the record over, that whole ritual aspect, big sleeves showing off album art, etc. good for you! it's not hifi though, and shouldn't be discussed in hifi spaces. you like how your records sound? great! the CD sounds better. +--- 93230056 +>>93225983 +Nice Cope there Faggot +>>93226318 +Nice Again AI Troll +>>93226327 +Nice Again you AI troll +>>93226552 +Bye Bye! +>>93226801 +F>>93226801 +FAG +--- 93230342 +Thoughts on Revel M16 +--- 93230645 +>>93224169 +didn't take long for me to note his absence diff --git a/g/93202483.txt b/g/93202483.txt index 3781d920d4af068e4913b2008301580ff148d8bd..46eff24ed6d29a7ce69981c5d7c8209b9aafa982 100644 --- a/g/93202483.txt +++ b/g/93202483.txt @@ -317,3 +317,11 @@ again, burden of proof. prove that the universe *isn't* going to implode on itse you presume much. --- 93222350 i pissed myself +--- 93223651 +>>93202483 (OP) +Don't trust it's privacy. +--- 93226587 +If you need to hide your Tor traffic from your network administrator, your ISP, or your government, use a bridge. Otherwise, you most likely don't need it, let alone a separate VPN service. +--- 93228783 +>>93218947 +that's the best kind of advertising they could hope for, you do realize you're shilling it now, too? kek diff --git a/g/93203392.txt b/g/93203392.txt index c3214d9d51bf829e0234f5c20ce15d1e241330fb..02ee21bf64ce6aab0dfedf891f837e776448892e 100644 --- a/g/93203392.txt +++ b/g/93203392.txt @@ -116,3 +116,42 @@ its over... --- 93222860 >>93221003 Not yet +--- 93224581 +reverse engineer-san please don't go... +--- 93224833 +is there anything i should change in ida.cfg to speed up auto-analysis & decompilation? +--- 93225296 +>>93218454 +Y’all hiring? +--- 93226091 +>>93225296 +newfag +--- 93226740 +>>93225296 +you need to browse the site for 3-5 years before posting retard. +--- 93226746 +>>93214779 +its too late, you have to learn to reverse engineer before you're 20 or you'll have no chance at anything important. good luck as a security researcher though anon. +--- 93227451 +>>93210248 +It works good for me and has good support +Also based thread, for me it's reverse engineering proprietary file formats +--- 93229498 +>>93222860 +it is +--- 93229509 +>>93203392 (OP) +u miss one of the best runtime debuggers: +x86dbg and x64dbg +https://x64dbg.com +--- 93230022 +>>93225296 +With several thousand employees, they have to hire continuously., just to keep up with retirements. +--- 93230465 +what's the point of reverse engineering? +--- 93230612 +>>93230465 +To learn how shit works, obviously. +--- 93230750 +>>93230465 +to port otherwise lost video games to PC of course diff --git a/g/93204141.txt b/g/93204141.txt index c3d18c6bf19913021ddd63944838dc1e0d514cec..145c611409db57738479041163b4c9ba44fb8f94 100644 --- a/g/93204141.txt +++ b/g/93204141.txt @@ -319,3 +319,33 @@ they want their niggarations >>93204364 You have to actually be good at the job for that to work. +--- 93223680 +>>93204141 (OP) +Nothing. Who has to pay the salary is the employer not me. +--- 93224212 +>>93204141 (OP) +American tipping culture is a mental disease + +>tip your taxi drivers +>tip your waiters +>tip your checkout workers +>tip the coffee shop guy +>tip your delivery guy +>tip your salespeople + +Absolute madness. +--- 93224361 +>>93204141 (OP) +With Apple's profit margin, they can easily 4x their current pay. +--- 93225022 +do itoddlers really? +--- 93225570 +>>93204229 +>>american expectation: 0 tip +what the fuck does a genius bar goon need a tip for +>>american expectation: 20% tip MINIMUM you cheapskate +waiters and waittresses get tips for their excellent customer service and many of them will fight tooth and nail to not be rid of their ability to receive tips. the idea that they need to be paid a "fair wage" is completely out of touch from people who actually work in that industry +you think the bartenders, waittresses, and cigar holders here in las vegas want to give up the potential to put an extra, easy $3-400 in their pockets at the end of the night? +--- 93227805 +>>93225022 +yes diff --git a/g/93205028.txt b/g/93205028.txt index b1d157f107e09d80a27d797568c8212173607b7a..b0dd3467062a05c549063947ac35277a535bbd88 100644 --- a/g/93205028.txt +++ b/g/93205028.txt @@ -759,3 +759,147 @@ i need to build something to keep my mind busy and not think about stuff Alright so, I kind of want to learn the basic knowledge required to pull code from chat gpt and stitch it together for simple proof of concept apps. What is the best approach to learn this? I don't want to become a full on web developer, more like build simple MVPs to take to investors/use to find partners before a real developer can be brought onboard. How should I learn this? +--- 93223760 +>>93223002 +makes sense +>>93223195 +My issue is that I don't know how to find clients and how much to charge them. +My mom has a friend who asked me to make her a website for her pet business but I don't know how much to charge her and once that's done dunno how get another client. +--- 93223777 +>>93223468 +the tech isn’t there yet. +i’m one of the retards trying to bring it there. give it a half year. +--- 93223859 +What are some modern resources for learning Ruby? + +We're rewriting our backend in it. inb4 shit language, gay, etc just give me some books +--- 93223860 +>>93223760 +>but I don't know how much to charge her +make an outlandish price then blackmail for sexo +--- 93223866 +>>93223760 +oh…you are a designer. +i guess you could post in community facebook groups but you can’t really charge a lot for that kind of shit agency when stuff like squarespace and wix exists. +if i were doing something gay like that i would offer free sites and 30/mo for hosting with a code buyout option for a grand as well as a maintenance package for 100 a month. +--- 93223914 +i have basically a crud app with node and react , where i have users upload files to the backend via a form. then the reading part of the app is meant to give a link where those files can be downloaded with a relative path, but it only works after building the front end, since otherwise it goes looking for the file in the front end. +how's this issue normally handled during development? surely you don't have to rebuild the app every time. i asked an ai bot and it said to use nginx but the docs go over my head. +--- 93224031 +>>93223914 +I dont understand what you’re talking about. “looking for the file on the front end” what the fuck does that mean? +“rebuild the app everytime” like render or is your node crashing? what? +maybe store the url in localstorage and display it if it exists? +again, no idea what you’re asking +--- 93224082 +>>93224031 +front and back end hosted on different ports during development. +by building, i mean running the build script with create-react-app so that the front end is minified and served with the back end. +in other words, during development, relative links like /link end up going to localhost:3000/link, which doesn't work because that's not where the file is, it's at localhost:8080/link. but after building it works fine since the static files just get put in the build folder, but it's a pain in the butt during writing. +--- 93224132 +>>93223866 +I'm studying to be a full stack dev, I do want to offer the client a full web app. +I also thought of offering a site for free and charge for the upkeep, seems like the easiest and most profitable thing. +--- 93224316 +>>93223777 + +Yeah but I might as well get to learning in the meantime. It seems close enough to churn out 80% of what I need and just stich it together. +--- 93225009 +>>93223914 +https://create-react-app.dev/docs/proxying-api-requests-in-development/ + +add "proxy": "http://localhost:8080", key to the package.json of your react app. in prod, everything will be under / from the server +--- 93225668 +>>93225009 +yup i do have that in my package.json +maybe i'm writing the link wrong? + <a href='http://localhost:8080/stuff/thing.file' download>direct to server</a> + <a href='/stuff/thing.file' download>proxied</a> + +--- 93225767 +>>93225668 +also i have the directory being served as static by express +app.use('/stuff', express.static(path.join(__dirname, 'two_folders_up', 'folder_above_stuff'))); + +--- 93226096 +>>93218418 +how much of this app was already written? OR is all of that written by you? +--- 93226141 +>>93218418 +itty bitty nitpick but i'm pretty sure if you do +import { whateverYouNeed, whateverElse, etc } from 'react' +instead of +import React from 'react' +... +React.whateverYouneed(...) + +it'll help massively with keeping your final bundle size from getting bloated. This might only apply to modules that aren't tree-shakeable or some shit though +--- 93226710 +>>93226096 +I wrote it all from scratch except for the "click outside" hook + +>>93226141 +oh I thought that was just a preference thing, I didn't realize that might have an impact on anything +--- 93226738 +>>93226710 +with react itself in particular i think anything you don't use gets automatically trimmed from the final bundle but typically smaller/older/pajeet-written packages aren't tree-shakeable so you have to import only what you need or end up with a colossal bundle +--- 93226806 +>>93226710 +can you link up the challenge? +--- 93226876 +>>93226806 +https://www.frontendmentor.io/challenges/kanban-task-management-web-app-wgQLt-HlbB +--- 93227472 +*baits dotnet boomers into the web frontend* +--- 93227933 +can someone kindly tell me how tf what i need to do to install ssl certificate inside docker container? Im going insane because docker dont allow me --volume /etc/letsencrypt:/etc/letsencrypt for some reason +--- 93228051 +thinking about running mastodon or pleroma for /wdg/ bros so there's a more persistent store of knowledge than just threads +--- 93228122 +>>93209556 +Sorry anon, I only post here when I'm stuck, and I've been on a roll recently, got a lot of work done. Normally I try to stay here and answer questions +--- 93228569 +how are you all not insane or massive alcoholics or both +i hate webshit so fucking much jesus christ it's pure fucking cancer + +why the fuck it takes so much work to get network traffic from browsers i dont knwo +--- 93228611 +>>93228569 +protip: It doesn't. You can build a pretty straight forward web page with only html and little css. JS is not even mandatory, but it helps with certain things. And thanks to the modern web being such a rich API (because that is what it actually is) you can do stuff which required you to have a CS degree 10 to 15 years ago in a few lines of code. + +What you see in this thread on the other hand is pure and utter wankery, which stems from the absolutely unreasonable wish to cater to the FAGMAN. +--- 93228920 +>>93228681 +>naked ashi +what did he mean by this? +--- 93229187 +Do I really need to implement all HTTP methods on my custom server that does basic CRUD? +>PATCH,PUT,DELETE,HEAD +Both frontend and backend are my own custom code, +I only use GET for getting data and POST for everything else. + +Is this wrong? +--- 93229381 +>>93229187 +Of course you don't have to if you don't need em. +However, IMO, you should always return the correct errors, which would be 501 not implemented if a client tries something you did not expect. Failure as the norm, not the exception +--- 93229584 +>That post doesn't exist anymore. +Sometimes janny is a cunt, but in this case, he did something good. +--- 93229601 +>>93223859 +>We're rewriting our backend in it. +From what, can I ask? I find it weird that someone would choose to rewrite an existing backend in Ruby... Ruby isn't exactly a fast language. +--- 93229721 +>>93229584 +>he did something good. +What? The bare minimum? +--- 93229854 +>>93229187 +You can do anything you want. However some of those methods refer to well known techniques of manipulating data and it's not idiomatic if you just replace them with post. The difference is mostly semantics, though there are some minor implementation differences between them. If your api is designed for consumption by third party clients you're going to confuse them +--- 93229989 +>>93229854 +>and it's not idiomatic if you just replace them with post. +That's just wrong. CRUD is not even bound to http. It's only one or the first example that is usally given, like how CRUD would map to http, but for an app to be CRUD it does not have to map to http. Another mapping would be to sql. Any API which allows for the operations *is* CRUD. +--- 93230791 +As a newb and ESL, CMS confuses me. There are times where I think it is some kind of service that let's you store data which then you can access within your app, and other times I think they are tools to make websites, like wordpress or joomla. What exactly is a CMS, please? diff --git a/g/93206010.txt b/g/93206010.txt index b7c89241efd5618f9fadc5fdadb2dcb297ac1bdd..a81dc84fd55fc6ffbfe99e1640b0d2265decd8b0 100644 --- a/g/93206010.txt +++ b/g/93206010.txt @@ -386,3 +386,130 @@ I consider them netbooks if they -numpad >>93223129 >is it still a netbook if it has a disk drive? yes, my eeepc had a disk drive. many did. +--- 93223509 +>>93223040 +star labs has a cheap coreboot linux laptop +--- 93223586 +>>93223161 +>>93223371 +im >>93223129 +there were 2 fatal flaws with this laptop: +-screen was absolute dogshit +-keyboard was not backlit +otherwise it would have been fucking perfect. i mean it had a socketed processor. u could have slapped a 35w quad core i7 (3632qm) in there. +--- 93224069 +>>93223509 +Yeah but I read in another thread that system76 machines are able to turn intel ME off +--- 93224585 +>>93206397 +used thinkpad x250 +--- 93225490 +>>93224069 +I think you can on Star Labs too. They also invented coreboot-configurator I think which is amazing; the only GUI config for coreboot I am aware of +--- 93225625 +>>93206397 +I have this model and its really only useful for really light duty. If 11" is what you want, get used cheap 11" macbook air, slap on windows on it and call it a day. +--- 93226059 +>>93225490 +wow this thing is pretty sweet + +https://us.starlabs.systems/pages/starlite + +shame about the price though, $500 for this thing is a little too much +--- 93226112 +>>93206486 +>fagpad +Anon wants a real computer. +--- 93226423 +i'm sick of this "thin" meme +theres not point in having an ultra thin piece of shit when it overheats due to lack of airflow +--- 93226465 +you people are asking for the wrong form factor +if you need a backpack to carry it anyway you might as well get a huge screen and more interior space for compute +only benefit to a small device is you can use it while standing and then it's pocketable anyway + +I swear to fuck if they don't bring back sliding pda style phones I'm releasing another bioweapon +--- 93226494 +>>93226059 +the build quality is top notch though. and I think its got a high quality screen too. thats the model I am thinking of getting and I think the price is good all things considered. +I do wish they released an updated model with an n6000 CPU. and for the US keyboard ones to be back in stock +--- 93226514 +>>93226423 +>needing airflow +if your netbook needs a fan, the CPU is not appropriate for it +--- 93226583 +>>93206397 +I had one. Stock eMMC is unusable but it's upgradeable (I installed a cheap ebay 256gb NVMe). I ended up giving it to my nephew to use as a school laptop. Main issue was the low res screen with awful viewing angles, but it's good enough for his use. Battery life was amazing. +If Asus made an updated model with a 1080p screen and 8GB RAM I'd buy one. +--- 93226680 +>>93226494 +isn't N6000 old though? + +they aren't in stock so hopefully they are going to refresh with N100+LPDDR5X+NVME, I'd buy one immediately even if it were 8GB. +--- 93226707 +>>93226059 +Oh shit they updated the Starlite. I was hoping they'd drop the DC barrel jack for another USB-C and put full size HDMI since Micro HDMI sucks, but it still looks good. +>>93226680 +It has Pentium N5030, which is a 14nm chip from 2019. If this had an N100 I'd buy it right now lol. +--- 93226924 +>>93226707 +If they were smart they'd increase the height of the chassis by a little bit and double the battery capacity, drop the ports off the non-charging side altogether and switch the microHDMI out for a full-size + +the larger battery means they could increase the screen size to 12" or 12.5" and probably bump to 1440p, reduce bezel size. + +sucks how close this thing is to my ideal laptop and I can't buy it +--- 93226960 +>>93226707 +>It has Pentium N5030, which is a 14nm chip from 2019. If this had an N100 I'd buy it right now lol. +it would be even better with a U300, the N100 being single-channel is really disappointing + +hopefully they are waiting for that chip instead +--- 93228080 +>>93226680 +N6000 is old but is newer and faster than the n6000 while having the same TDP. + +I really dont know of newer chips that match that TDP but I could just not be aware. except for those e-core only Alder Lake chips but those are pretty pricey I think +--- 93228100 +>>93226707 +barrel jack > usb-c +--- 93228128 +>>93226960 +>U300 +>15-55W +no + +n300 tops +>7W +--- 93228417 +>>93228100 +In what way? With USB-C, I can travel with a single charger for all of my devices, and when I want to use it on my desk I can just plug one cable in and have all my peripherals and an external monitor connected while charging. +USB PD can handle up to 240W, very few laptops need more than that. +--- 93228446 +>>93206397 +>$180 +2015 it was still $99 with 2GB RAM +--- 93229032 +>>93228417 +>USB PD can handle up to 240W +you sure? i just looked it up and I see 100W. + +barrel jacks, in my opinion, are better because there are simple. they have been around for like 100 years. they can handle more power than USB. they are easy to replace if needed. etc. +--- 93229047 +>>93228080 +*newer and faster than the n5030 +--- 93229731 +>>93229032 +As of rev 3.1 of the USB PD spec, 240W is the max. The 100W max is from older revisions. +Sure, a barrel jack can handle more power, but 240W is fine for anything but the most powerful laptops. USB-C isn't hard to replace either. +USB-C with PD is just far more utilitarian than a barrel jack. A barrel jack on a laptop can only be used for a single purpose- charging. A USB-C PD connector can charge, it can be connected to a docking station to add more functionality while also charging, or it can simply be used as yet another USB-C port while using the laptop on the go. +On ultraportable laptops with limited space for ports, dedicating space to a connector that can only do one thing is silly when you have a replacement that can do the same thing and more. +--- 93229845 +>>93226514 +If only you knew how bad things really are. + +My core m3-7y30 on One Mix 2 needs a fan and that was the last normal CPU Intel made for 4.5-7W. +All that followed were gimped Atoms, not even proper ones, the last proper one was Cherry Trail. + +Now you'll ask what the last normal CPU AMD made for 4.5-7W or lower and the answer is... Geode. + +So, the only appropriate passively cooled CPU that makes the system snappy is M1 or M2, unironically. diff --git a/g/93209222.txt b/g/93209222.txt index cd8dd20008df58b8d2bd21d7ae599a23ad631274..7711ce310d5d0e85b693b28c293e686c7dce6a23 100644 --- a/g/93209222.txt +++ b/g/93209222.txt @@ -566,3 +566,148 @@ Didn't even know usb c front panel had a different header until couple of days a --- 93222641 >>93210773 If you've build more than 1 PC you should only plug in power and fuck the rest, you're never going to use them anyway. +--- 93223528 +>>93222641 +not even +>>93221641 +--- 93223695 +>>93210286 +Because you have the hands of a woman and they've never done an honest day's work. +--- 93223807 +>>93217776 +Some languages have consistent vowels and don't insist on adding consonants to them. +--- 93223828 +>>93209222 (OP) +>can't figure out how to plug in a connector that literally only plugs in one way +OP is a retarded faggot +--- 93223858 +>>93210998 +LOOOOOOOOOL +>>93215554 +it's a result of death grip syndrome when affecting a person with weak bones AKA baseddrinker +--- 93223992 +>>93216692 +NTA but it's a Thermaltake H17. I have one myself. It's M-ATX only but very roomy with lots of tie points for cable management. Only complaint is that the steel is very thin and easy to bend, but for $50 it's not bad. +--- 93224094 +>>93220907 +that's if you can even unplug it in the first place - even though it hasn't it might as well be superglued in. +--- 93224150 +>>93217611 +We weren't basedboys back then. If you have calluses and a good grip, then you could easily pull one of these out, it's not like you have to be King Arthur to pull that sword out of the stone. +--- 93224208 +>>93224150 +samefag here, just saw +>basedboys +lmao there is a filter haha, alright you can have this one +--- 93224231 +>>93221486 +I liked everything I saw until I saw it was an Intel Mobo +--- 93224376 +>>93221538 +They were more useful back when computers froze up every 3 hours +--- 93224413 +>>93224376 +reset buttons are not useless, they boot faster than booting from a cold start if you have to reboot your PC for any reason. +--- 93224808 +>front panel audio +>hdd activity light +>power connectors +>reset button connect +>pins are always at the bottom of the board near the metal edge of the case +>pcie cards and other cables are guaranteed to be in the way +I hate it. At least move them to wear the SATA ports usually are. +--- 93224825 +fuck this connector +why? +because you always have to try to plug it in 3 times, and you will use like 5-10 of them per day +--- 93224853 +>>93220736 +>>93221367 +These weren't comfortable at all. +--- 93224863 +>>93210333 +Bagin +--- 93224902 +>>93224808 +Back when i was an ~enthusiast~ I got an asus crosshair iv formula and it had a little adapter where you would easily plug all the case cables into it and then plug into the motherboard pins and it felt like God had blessed me by getting rid of this slight inconvenience +Since then I've been through only two motherboards and neither of them had anything similar +Fucking gay ass niggers there is no reason why these pins shouldn't follow a standard +--- 93224983 +>>93216363 +cope rippetits +--- 93227782 +>>93221538 +I like seeing power and hdd leds blinking. You are just lazy. +--- 93227834 +>>93224825 +Still faster to retry than look at the pins of PS/2 before plugging in. +--- 93227836 +>>93209222 (OP) +not my problem +--- 93227881 +>>93210333 +therenet and SFP are up there, as is this >>93210356 +but if I had to pick one, it'd be a nice full-size locking XLR connector +you can get shitty ones that are too thick and the plugging action is really stiff, but high-quality ones are just so smooth and always have a satisfying click + +I'd like RJ45 ethernet more if all the plugs were made of metal and had locking tabs like SFP rather than the fragile little pin +I actually have some metal, crimpless RJ45 plugs but they are about $7 each +--- 93227906 +>>93210333 +>>93227881 +>I actually have some metal, crimpless RJ45 plugs but they are about $7 each +picrel +love these fuckin things, I always use them for critical uplinks that need to be RJ45 +--- 93227963 +>>93209222 (OP) +These connectors are designed by a miserable person but all you have to do to release them is to bend the connector towards the little plastic slot guide 20-40 degrees (force it, if you have to) and then wiggle it out while holding the short sides. It'll come out easily if you do that. +--- 93227975 +>>93227906 +>tool-free +What a load of shit. You still need a stripper so it's not really tool-free now is it? +--- 93228023 +>>93227782 +>I reset my computer so I can watch the blinky lights +--- 93228029 +>>93227975 +you can use your teeth +I just use a pocket knife +you almost never NEED a wire stripper +--- 93228046 +>>93227963 +or you can just pull it straight out +--- 93228084 +>>93228046 +Not mine, I could have swung my entire system around like a flail just via that connector +--- 93228237 +>>93228029 +If I'm going to be fucking around with network cables I just have the crimper with me that includes a proper stripper. Don't have to use plugs with a fucking tumor on the back that don't fit anywhere either. And of course I'd have to ask what shit cable can have its jacket stripped with teeth? Just have proper tools you moron. +--- 93228353 +>>93224825 +--- 93229555 +>>93224825 +The fact it took so long to make this shit spec multi-directional is shocking. +Worse, a lot of the time it won't even work anyway because some retards misread the specsheets (or never cared) so created a buggy port. +Ironically one of the advantages that came with that multi-directional socket was the ability to make hardware that worked differently depending on the direction you put it in. +But the biggest loss was the fact you could no longer make small thumb-drives for flash or small SD card readers in the same form factor, small bluetooth, etc. Some would consider that an advantage because those little cunts tend to get uncomfortably hot if you need to transfer loads of files. + +Just imagine though - we could have gotten phono-lead USB. +--- 93229880 +>>93210111 +I prefer plugs that don't fall out when you look at them, but this shit is stuck so badly that I am afraid of ripping the connector it is stuck in out of my motherboard along with it. +It does not come loose one bit and if I did not remember putting it in there myself you could convince me that it was glued in. +--- 93229997 +>>93211870 +I love SHART but god forbid if one of the pins or the casing gets slightly bent +--- 93230032 +>>93209222 (OP) +The problem with that connector isn't so much the connector itself as it is the fat, inflexible cables coming out of it. +It's always comparably hard to route without putting strain on the connector. +--- 93230041 +>>93228237 +shut the fuck up faggot! +thats not even the point! it's a big fuckoff metal plug with a nice metal lock thats satisfying to use! +kill yourself!!! +--- 93230115 +>>93210773 +been using one of these that I got with my first mobo from 20 years ago, you just put the cables in and then plug that one piece into the pins. diff --git a/g/93209350.txt b/g/93209350.txt index b27b845bc9fc4e270245b0069b55f458d8a1e586..bec80b4877edb88152d1e3bfa2fd0255a6a5255a 100644 --- a/g/93209350.txt +++ b/g/93209350.txt @@ -164,3 +164,45 @@ Let's see who's behind this thread --- 93222909 >>93209350 (OP) that was more autistic then essays by stallman +--- 93224244 +>>93210997 +facebook is offence to you folx now? +--- 93226309 +>>93221745 +You have won the right to bully my asshole + +EDIT: Thanks for the Cum kind stranger! +--- 93226374 +>>93209350 (OP) +>womansplained +an incel troon making fun of anybody +LMAOOOOOOOOOOOOOOO +how ugly do you think "she" is +--- 93226398 +>>93214425 +>>93217722 +>>93226374 +You must lurk this website for 10 years before posting. +--- 93226455 +>>93209350 (OP) +giving you reddit gold right now op *tips fedora and nods respecfully) +--- 93227114 +>>93220220 +>oh don't expose my real sex! it makes me sad about myself! otherwise I'll call you incel/nazi/chud/obsessed + +I will expose your real sex. Call me whatever you want. LEL +--- 93227471 +>>93226398 +been here since 2006. +ywnbaw, faggot. +--- 93227576 +>>93226398 +--- 93227652 +>>93227576 +>>93227471 +>screeching about troons over a pasta that predates troons proliferating in public consciousness +i NEED to murder you niggers with an axe +--- 93227699 +>>93227652 +>troons didn't exist until 2016 +do you even have the IQ required to identify an axe, let alone pick it up and swing it diff --git a/g/93210024.txt b/g/93210024.txt index 3fbc8ce0439fa3c1d377598c3fcd9d2e5893e33e..e1df2b9406a190dd1abf080e73294ec3e34c7cb3 100644 --- a/g/93210024.txt +++ b/g/93210024.txt @@ -417,9 +417,6 @@ imagine saving stuff from craigslist, ebay, walmart or whatever, so you can find Do you think RAII has been successful? >I would like a language with a feature to change a variable to an immutable value if certain conditions are met. Seems unwieldy, like most mutable <-> immutable mixing. I just don't think we can manage the state (even with contracts), for the same reason regular pointers were deemed a failure (or rather the programmers unable to manage them). I do think Subtyping and Contracts are very important though. Just not sure which angle for Subtyping is "best" yet. ---- 93216741 ->>93210024 (OP) -nakdash --- 93216955 >>93216181 Maui @@ -717,3 +714,93 @@ this is exactly what is needed, learning from those failure to make something ea --- 93223162 >>93222696 official lang specific build systems are a blight. eve worse if they incorporate a centralized packages +--- 93224188 +>>93223648 +https://opensource.adobe.com/dc-acrobat-sdk-docs/pdfstandards/PDF32000_2008.pdf + +Just doing a Ctrl-F for "CreationDate", maybe that's referring to an embedded file or something else. +--- 93225945 +>>93223162 +Why? Because of polygot projects? Pretty sure you can still use make to build the project, Rust has build.rs which helps as well. +--- 93226171 +>>93210706 +fuck you yeti +--- 93226176 +render :: Html -> String +x :: Html + +-- wtf?? +ghci> :t (fmap render) ("123" :: FilePath, x) +(fmap render) ("123" :: FilePath, x) :: (FilePath, String) + +-- this one makes sense +ghci> :t (second render) ("123" :: FilePath, x) +(second render) ("123" :: FilePath, x) :: (FilePath, String) + +Damn, did not know fmap can do that +--- 93226501 +>>93210609 +I'll stick with vanilla make, thanks. +--- 93226880 +genius here, made another push to my project +--- 93226912 +>>93210024 (OP) +Made a script to prevent my ears from getting blown out any time pactl decides to fuck everything up. +Nothing too fancy, but pretty useful in preventing ear damage. + +https://pastebin.com/WsVLUNgC + +Oh here's something fun: If you include a decimal point in the +pactl set-sink-volume @DEFAULT_SINK@ + +command, it incorrectly parses the argument and blows your ears out. +--- 93226937 +>>93226171 +get a room +--- 93227046 +I'm going to try and read the art of programming with only a basic level understanding of math (intermediate algebra/calc 1) +--- 93227403 +>>93222208 +i like to make regex with FSMs +--- 93227619 +>client sends list of bugs +seems like we shipped shit :D +--- 93228871 +>>93227619 +Tell him lists are inefficient. +--- 93229131 +Does anyone have any experience with the trash fire that is gradle? +I have some non-java resource files, that I want to "compile" first using some Java class, and the outputs included as a resource, but I cannot figure out for the life of me how this shit is supposed to be done properly. +--- 93229132 +Would allocating a new NxN array be faster than looping through the array and removing the old values? Surely, right? +--- 93229164 +>>93229132 +delete[] would be a linear time operation, removing old values would be a linear time operation, so there is no sense to allocate something new if you need to delete the old one. +--- 93229502 +>>93229132 +uh, no? +--- 93229510 +>>93229132 +this >>93229164 but space wise it would be n as well, while deleting would be 1, no? so better to just delete +--- 93229613 +>>93229510 +>so better to just delete +he's allocating a new array after +--- 93230384 +>>93227619 +Should’ve used rust +--- 93230434 +>>93230384 +>client wondering why we still haven't shipped yet +--- 93230464 +>>93230434 +Kek +--- 93230495 +>>93230384 +Rust pays e-celebs to shill their language... +--- 93230538 +>>93230495 +Medication. +--- 93230553 +>>93230495 +i love it when retards try to sound smart by stringing words together like that diff --git a/g/93210217.txt b/g/93210217.txt index eaa9afd1a0613fa50a0c9c9f5c3dd2a2ff1d2451..b78f8c4f233e1013077f7ca5ebb9bd8d1b3162d4 100644 --- a/g/93210217.txt +++ b/g/93210217.txt @@ -288,3 +288,75 @@ yeah i used to think that as well. i would trash talk them without even really k >>93222591 >sure if only need ancient packages i dont 'need' ancient packages. but i do 'need' my system to get work done day in and day out without having to worry about something breaking during an update. +--- 93225589 +>>93210217 (OP) +couldnt be more me rn +just installed it because I got cyberbullied off manjaro + +im trying so hard to get pamac and none of my google resuts help +--- 93225917 +>>93210669 +they work when is cold. +--- 93227269 +>>93222522 +You are the actually meme +--- 93227305 +>>93210217 (OP) +the thinkpad meme but it was actually nice +--- 93227411 +>>93216964 +By reading the fucking manual? Also, you can scroll on the volume icon to change the volume (scroll up = vol up, scroll down = vol down). +--- 93227462 +>>9322187 +>>93220744 +>Bought a Logitech mouse and IT FUCKING DOUbLE CLICKS. +>lol, classic. I don't know why people keep falling for this. Logitech mice have done this since the beginning. +I own multiple logitech mice (and have for about 7 years), none of them double click after daily use. +--- 93228019 +>>93227411 +If I have to read a manual to l2 control volume, then this media player isn't for me. I'm not saying that this is bad design, I'm just saying that I have high testosterone levels and I want volume control panel to be right there like in VLC. +--- 93228083 +>>93211860 +I'm afraid I won't be much help, because I'll use my kindle until it dies, but I would recommend any ereader if : +- It can display ALL ebook format, even CBZ. +- It doesn't forbid some settings on some filetypes to get you to buy their shit (kindle pdf reading is painful because too small) +- It doesn't require a FAGMAN account to use. +That's pretty much it. I wonder if some kind of open-source jailbreak community has made an OS capable of this, in the wakes of LineaqeOS for phones. +--- 93228125 +>>93222322 +I don't know. I would use a simpler version of 4chanX if I could. I don't use most of it. +--- 93228142 +>>93222522 +>shit animation +>communicates the plot by explaining it to your face nonstop +yeah great show +--- 93228176 +Been on Arch meme for years, even use it professionally. I want to fall for Alpine meme next but eudev seems like a shitty unmaintained fork of proper systemd-udev. Also systemd is nice, I would love to just have a minimal configuration of systemd that would be compatible with musl. +--- 93228364 +>>93211590 +mpv is better on linux, because it launches instantaneously and is stripped down of bloat. I don't see the point on windows. +--- 93228662 +>>93210768 +It doesn't play the flashy LUA karaoke subs from a decade ago. It never has and never will. +--- 93228999 +>>93228083 +Kobo Clara HD has all those features, there are tutorials ( search how to replace the SD card on Google) +--- 93229617 +>>93210217 (OP) +arch is a meme meme +vscode is bad meme +nvim is bad meme +tiling window manager is a meme meme +live inside emacs meme +--- 93229710 +>>93212452 +The only reason to use mpv is filters. and they fail when you use a gpu +--- 93229940 +Everybody on /g/ is unironically a liar. +RSS is the only thing that I've found useful +--- 93229999 +>>93216488 +ignore them because each person has a different usecase for hardware. if you're gaming, 8GB vram is fine, that guy probably does anime girls on stable diffusion so he hits the 8GB limit fast. +RTX is a gimmick depending on who you ask. + +other guy is completely random. 32gb ram could be too little or too much depending on what you're doing. diff --git a/g/93211542.txt b/g/93211542.txt index ce4b279a95c8ac597c241f06f45f2ec4fad23b44..c54047642664010c0dc3572c7f214113e62e5325 100644 --- a/g/93211542.txt +++ b/g/93211542.txt @@ -135,3 +135,32 @@ fag kys >>93219447 >Password managers are useless when you get owned. Everything is useless when you get owned, passkeys included. The whole point is making it very hard to get owned. +--- 93225206 +>>93211542 (OP) +What the fuck is a passkey? +--- 93225258 +>>93213283 +>but with the FIDO machinery (signing a challenge) integrated that prevents any form of phishing and clipboard stealing. +>Private key leaked +Now what? +--- 93227826 +>>93225258 +They are encrypted. Leaking an unencrypted key is supposed to be much harder than leaking a password though keylogging, clipboard stealing, phishing or guessing. +I mean, in theory they did a good job at designing this protocol. The only questionable part is hardware dependency. +--- 93229764 +>>93223224 +They can only session hijack if you use your phone or a Yubikey bio for passkeys and they own your computer. They don't get your passkeys. + +With a password manager they get all logins to use at their convenience (just need to route logins via your computer to prevent location based security triggers). +--- 93229804 +>>93227826 +The best a password manager can do to hide private keys from root/ring0 is obscurity. The software needs to be able to use the private and root can do anything an user can do. + +That's why the only way to secure it is running your OS in a VM, with the password manager running in a seperate VM. Or use SGX. +--- 93229879 +>>93214401 +Well if you’re at the point where an Indian man is on your workstation and accessing all your files you’re fucked anyway and need to stop using the computer. +--- 93230121 +>>93229804 +I wouldn't use the word "obscurity" when we are talking about encryption. With a yubikey you need to plug a physical thing into your computer in order to have the key, with a password manager (ideally, with FIDO2 capabilities) you need to insert a non-physical thing (i.e., the password) into your computer in order to have the key. It doesn't matter if you have ring0 privileges, if you don't know the password you can't decrypt the key. If your master password is strong enough then it is virtually equivalent to having a hardware device; except that it is impossible to break, impossibile to lose and impossible to steal. In order to stole a password you need to use it on a compromised device, but in that case they might be able to clone your yubikey too. +Relying on something you have to remember is better than relying on a physical device you own. diff --git a/g/93212472.txt b/g/93212472.txt index 8d8a26f1825ca371965c9e7f66aa5690023428d1..598cb78c47feb04bbc44b52fde941cfd456034dd 100644 --- a/g/93212472.txt +++ b/g/93212472.txt @@ -585,3 +585,75 @@ They also seem very subject to group-think, they pushed that rushed vaccine for --- 93223220 >>93212472 (OP) How can I become a doctor if I hate talking to people, in particular, black people? +--- 93223974 +>>93223220 +i fucking HATE NIGGERS +--- 93226201 +>>93212472 (OP) +And this guy still gets no pussy because he is asian. +--- 93226208 +I look like this and I do all these three things. +--- 93226474 +>>93212949 +Based. + +>>93213180 +Becoming a doctor is about sucking dick for 10 years. They say jump you say how high. + +In every other country a medical doctor is an undergrad degree. we just have a cartel protecting it making it appear "intellectual". + +The other day on the plane a girl next to me was flying around the country to do medical school interviews (gotta keep the poor's out,) the first question on her list she was studying... I shit you not + +> Why do you want to be a doctor? + +Can't make it up. These people are brainlets and we could probably make up every other question they are going to ask her. + +I make 350k a year and I did it with a 4 year degree. I maintain my sanity. I don't have to serve customers. I don't have liability. And I don't have to follow a flow chart. +--- 93227409 +>>93216858 +dentists are perfectionists, its mental +--- 93227438 +>>93212472 (OP) +the ideal asian son! +--- 93227525 +>>93212472 (OP) +I became an engineer because I am an autistic misanthrope and this is the only field in which I can thrive. +--- 93227580 +>>93212472 (OP) +Yes, and? Being a doctor is a fucking shit stressful job where you're constantly dealing with desperate people. I'll take software engineering any day. +That said medicine is a fascinating area of study and at one point I had considered studying biomedical sciences. +--- 93227747 +>>93226201 +--- 93228335 +>>93226474 +>In every other country a medical doctor is an undergrad degree. we just have a cartel protecting it making it appear "intellectual". + +Yea doctors are buirocrat midvits without a cartel they would be nothing. They even had to beg the english king to stop chad barber surgeons. +--- 93228365 +>>93212472 (OP) +No, I just fucking hate hospitals and the abnormalities of the human body make me genuinely squeamish. Computers unlike people mess up in a way that can be unbearable but shit's not gonna ruin my day like a dead kid or a prisoner mostly eaten by bugs. +--- 93228574 +>>93212472 (OP) +The amount of seethe this simple truth has generated is incredible. Being a dermatologist resident, I’ll get paid mid-six figures to be surrounded by smart and beautiful women 9-5. I cut out skin cancer multiple times a day, saving lives. +You are all my bitches. Keep playing with your distros. +--- 93228619 +>>93221907 +>That's not programmers +programmers are the ones keeping the FAGMAN machine well and going programmers are the core problem programmers are the ones more than fine getting paid pennies while slaving away for their masters like the brainless monkeys they are +--- 93228633 +>>93228574 +>Being a dermatologist resident +sucking dick 24/7 to older doctors. +--- 93228672 +>>93212472 (OP) +years of neet dom has ruined by brain and will to do anything. How to cope +--- 93228984 +>>93228574 +Jewish or Asian, anon? +--- 93229591 +>>93213426 +See elon. 20 fucking years in the space sector and if you take him out of his script he is clueless +--- 93230350 +>>93212472 (OP) +>navy punisher skull +What dis he mean by this? diff --git a/g/93213115.txt b/g/93213115.txt index 823e022ec6b0acc6d3096f772809f6a0f80bcbfe..5521923a208e02e83833778adfe45069870d7f14 100644 --- a/g/93213115.txt +++ b/g/93213115.txt @@ -209,3 +209,153 @@ kek >>93220420 >They need to realise they will always be 2nd fiddle to NV and price their GPUs accordingly. You are stupid. That is EXACTLY what they have done. You think because they admit to being 2nd fiddle forever that they will drop their prices to piss and shit. But it's exactly the OPPOSITE. A price war is for when you think you can win. They can't win, therefore they will not have a price war. +--- 93223581 +>>93223334 +>That is EXACTLY what they have done +when? you mean at the ass end of a gpu generation when basically everyone has bought their gpus? or months after their cards get shit on for being bad value and the narrative has already been set? +--- 93223696 +>>93213115 (OP) +AMD always sucked balls. +But it was generally the cheaper option. For the past 2 years they started getting to greedy. +--- 93223759 +>>93223334 +Nvidia is the luxury high-end brand. In order to compete with them, AMD has to be a bit cheaper to offer better value despite their worse software. Trying to sell at the same price just means they get nothing cause everyone buys Nvidia. +--- 93224341 +>>93213115 (OP) +That release is a placeholder, 7700XT is 100% N32. I think AMD will be agressive with N32, both in VRAM and price due to how cheap RDNA2 is. +--- 93224436 +>>93213115 (OP) +You're totally wrong. 7800 XT will likely have performance on par with 6950 XT and the 7900 XT is significantly outperforming the 6950 XT. +--- 93224465 +>>93223696 +>AMD always sucked balls. +How long have you been building PCs? ATI was great. Volcanic Islands were great. Polaris was great. Vega and RDNA1 were middling. RDNA2 was great. +--- 93224670 +Gpu tech has hit a wall anyway mcm is a flop 3nm and beyond are insanely expensive and pt rt is the endgame that took Devs 5yrs to actually make it not look like shit and it still runs like poo. + +No new gpus til 2026 loool +--- 93224756 +>>93213760 +And this why Fury X is the greatest GPU of all time. Oh, wait... +--- 93224803 +>>93213115 (OP) +>Could they finally shut down Radeon and go all CPU? + +No because they just lost a shit ton of money on CPU's. Zen 4 turned out to be total botched dogshit that cooks itself and costs several first born children. The point of RDNA3 was pure jewery, make as much profit as possible by going MCM and giving the customer as little expensive silicon as possible while hiding the flaws of said technology (microstutters out the ass). AMD has very good margins on their shitty videocards. +--- 93224841 +>>93224465 +Polaris was a 970, but 1.5 years too late. Vega was trash. +--- 93224891 +>>93220420 +>there are no bad products, only bad prices +This saying is generally true because the free market already filtered out all the "bad products" from your universe of choices by bankrupting the company. +Square wheels are a typical analogy used in econ where there is no right price for them because they are absurd to begin with. +And in the same vein the "right price" can't be lower than the cost to make it like in the case of 7700XT. Which can't be "right priced" to be both profitable and compete with 4060ti. +--- 93224907 +>>93224803 +>Seething /v/tard who is utterly this clueless +Sorry sweatly, the gayming market means jack crap to both Intel and AMD. It is just spectacle and marketing flair. +The real money is made elsewhere. Intel has been hurting as of late while AMD is regaining back its dominance that it had enjoyed during the K8-era. Nvidia doesn't give a crap about gayming either. They are growing their roots elsewhere. +--- 93225020 +>>93224907 +The gayming market matters a lot to AMD +--- 93225083 +>>93225020 +Those gaming number are console only +--- 93225153 +>>93225083 +Gaming includes all consumer dGPUs and console sales. +--- 93225167 +>>93225153 +Dgpu number are in client +--- 93225189 +>>93225167 +Nope. +>The Gaming segment primarily includes discrete GPUs, semi-custom SoC products and development services. +https://ir.amd.com/news-events/press-releases/detail/1128/amd-reports-first-quarter-2023-financial-results +--- 93225224 +>>93225189 +Sorry I was wrong. but did they ever breakdown their revenue on each segment ? +--- 93225259 +>>93225224 +No. +--- 93225281 +>>93224841 +For under $300 with 8 GB vram. +--- 93225401 +>>93215324 +Please let battlemage be good and not ludicrously expensive. +--- 93225890 +>>93223696 +look at his face, he is so happy. +--- 93226718 +>>93224907 +>Sorry sweatly, the gayming market means jack crap to both Intel and AMD. It is just spectacle and marketing flair. +lol lmao you fucking retard. AMD is making margin on every xbox and ps5 sold. you are correct, discrete GPUs aren't their primary concern data centers are. we can assume they're either stupid with their pricing or have no desire to seize market share in discrete GPUs since they're in a comfortable position following nvidia's pricing. AMD don't have their hands tied with workstation production cards like nvidia does so they don't give a fuck about vram encroaching on work station territory which is becoming relevant in 2023 +--- 93226953 +>>93217316 +>tfw my computer is older than half the people that use this site +--- 93227212 +>next gen is nvidia vs intel +GOD i wish +--- 93228582 +>>93224436 + +7900XT is just 5-10fps better on average and costs 150$ more. Face it, RDNA3 is kind of a dud and we expected more. 7900XT should've been called the 7800XT. I'm most excited for Arc Battlemage now +--- 93228703 +>>93224841 +>R9 390 handily claps 970 +>RX 480 claps 390 +>Polaris was a 970, but 1.5 years too late +Huh? +--- 93229362 +>>93213115 (OP) +Even with goytracing on the 7900XT performs the same as the 4080, which is pathetic for NVIDIA since the 4080 is more expensive and RT is NVIDIAs bread and butter +--- 93229402 +>>93228582 +>7900XT is just 5-10fps better on average +Why do people spew this bullshit when it takes 10 seconds to prove wrong? +--- 93229977 +>>93226718 +>/v/tard seething even harder because they refuse to accept reality +Sorry, but silly gayming cards and CPUs don't really matter that much anymore. At best, they just adsorb the initial R&D costs by going after the FOMO whales who don't know any better. +--- 93230112 +>>93213115 (OP) +7990xtx will supposedly be faster than the 4090 and projected 4090ti just by increasing infinity cache and dramatically increasing clock speeds +--- 93230425 +>>93213584 +>because they think their customers are mouth breathing retards +Well their assessment is spot on +Gaymurs are a particularly retarded subgroup of society. They don't deserve anything but wood screws for inflated prices, and of course the new bio-degradeable good-goy wood-transistor. +--- 93230498 +>>93229362 +You might have a few extra chromosomes. +--- 93230577 +>>93213666 +>Snoy +Kek +Snoy and Makrohart are my favorite companies. +>Desktop GPUs is extra money on the side +It's mostly about prestige and brand advertisement. If you have a decent market share people will associate your prpducts with something they like, and know they work. That can influence purchasing decisions for other products. And having halo products is just like participating in formula one, you don't plan to make money directly, but it's great advertisement. +>>93214026 +>it's just naming and pricing problem +Well the same could be said about any terrible lineup in the last 5 years. If the 3060 was $300 bucks at launch it would have been a decent product, a 4080 for 700-800 bucks would be great as well, but that didn't happen. If the 6600 started at $240 2 years ago it would have been a new 480 tier product, but it didn't. +Intels offerings aren't particularly performant, nor do they offer a great feature set, and they aren't exactly bug free. But damnit, they at least price their products accordingly. Meanwhile Leathermanjacket and whoever Lisa put in charge of radeon are busy sniffing glue and are desperately hoping that Vitalik announces the PoS shit was just a social experiment and PoW is back immediately. +--- 93230593 +>>93230577 +3060 WAS $300 +--- 93230616 +>>93213115 (OP) +New GPUs are all crap regardless of brand. Buy yourself a laptop from 2010 and be happy. +--- 93230679 +>>93213333 +quads of true +we ALREADY have a 7800 XT, it's called 7900 XT", and the actual 7900 XT is called 7900 XTX +it's just marketing to convince you to pay more than they are actually worth +--- 93230686 +>>93230593 +It really wasn't. You couldn't buy the cards for months and if you could the price was abysmal. +Example: https://pcpartpicker.com/product/pD8bt6/msi-geforce-rtx-3060-12-gb-ventus-2x-video-card-rtx3060ventus2x12goc?history_days=730 +--- 93230713 +>>93215324 +Arc 770 is good, just need a lower price and better availability in some markets diff --git a/g/93213561.txt b/g/93213561.txt index 5ac637d562c601704747d48e2c4e02e863b8af5f..7ad94da6b150132f32478d232c6b475d27d68138 100644 --- a/g/93213561.txt +++ b/g/93213561.txt @@ -82,3 +82,24 @@ Bjork, my beloved >Saami >Inuit both descended from Asians +--- 93223673 +>>93215173 +>>93221487 +>>93222578 +. +--- 93225126 +>>93215314 +Fingols a cute +--- 93225534 +Current gen AI upscaling looks so fake. At first I thought the whole image was autogenerated, which isn't exactly wrong either. +--- 93227019 +>>93223673 +aaand dropped +--- 93227340 +>>93220085 +You are not tricking anyone, everyone likes Bjork because everyone wants to fuck Bjork, simple as +--- 93227643 +>>93213561 (OP) +Is that the dude from Freestyler music video? +--- 93230219 +ci-ty diff --git a/g/93213670.txt b/g/93213670.txt index 828da328af23b7dd5becb23aa03e45d61fe4cef9..80f51b4a327ee3117b8a0d345a6238ae71259009 100644 --- a/g/93213670.txt +++ b/g/93213670.txt @@ -109,3 +109,82 @@ Like he says everyones gonna die and we need totalitarian control, but doesnt su --- 93221659 >>93220960 Because again Yud is not a scientist, nor is he educated both in University degree sense or in self-thought way. He is a highschool dropout with AI doomer forum (on which Rokos Basilisk originated). Its these kinds of people that think AI is so smart it is able to outsmart you even if it does not exist yet, and that it will reward you for helping it just so that it could agree to contract it never signed in the first place, and that you would even make it in the first place. He has about as much credibility as Jannie that oversees /g/ at this very moment looking for pictures of cunny to delete. +--- 93223892 +why is yud such a sperg? +--- 93223915 +>Ross autism about AI +Fuck yeah. +--- 93223922 +>>93213670 (OP) +Big Yud is controlled opposition against himself. Normies are shallow and will automatically dismiss his arguments because he's fat and wears a fedora, even if he's right. +--- 93224025 +He doesn't even know how to code - into the trash he goes +--- 93224182 +>>93223922 +It’s not just looks. Many smart IT guys look like ugly losers, but they still come across as smart people. Yud while he might look above average on first glance, he is not a coder, not a mathematician, not even educated in anything. Just doing simple background check will tell you he is as much of a intellectual as Elon Musk is an engineer. You can very easily get to Dunning Kruger position about Yud by doing the slightest of research, but to normies who don’t even do that he looks like smart man because he gets lot of undeserved interviews and called on podcasts with BigTech CEOs and genius software engineers that make those AIs themselves. +--- 93224223 +bros I'm going to shave my beard now. +--- 93224401 +>>93213717 +totally sane physiognomy +--- 93225647 +God Yudkowsky is terrible at debating. I'm an hour in and neither of them have said anything of substance. I get he wants to ask Ross what's the difference between "real" thinking and "fake" thinking but he's just spending an inordinate amount of time beating around the bush. +--- 93225886 +he looks smart he must be a professor or a phd or at least have some kind of advanced degree right? A bachelor's? he at least finished high school I'm sure... +--- 93225936 +he really dresses like that? +--- 93226452 +>>93213670 (OP) +this 'interviewer' is insufferable +--- 93226493 +>>93226452 +what do you have against Gordon Freeman? +--- 93226667 +>>93214500 +I tend to flail my arms around when I'm excited, does that mean I'm also autistic? +--- 93227014 +>>93226493 +hes completely out of his depth, he has no idea what he is even talking about +--- 93227273 +https://twitter.com/YaBoyFathoM/status/1649103596930187290 +--- 93227461 +Does EY have "fans" ? +I dont get it. +--- 93227464 +>>93227273 +https://nitter.it/YaBoyFathoM/status/1649103596930187290 +--- 93227494 +>>93227464 +Wow nitter video player isnt insanely bad unlike twitters +I wonder how that happens +--- 93227499 +>>93227494 +Nitter just uses your browser's own video player. +--- 93227544 +Accelerate catgirls! +--- 93227986 +>>93213717 +He looks like rasputin +--- 93228038 +>>93219226 +Ross has said publicly multiple times that he thinks AI uprisings will not happen in our lifetimes, and the fedora lord disagreed and demanded an interview. +--- 93228161 +>>93226452 +To be fair, Yudkowsky was the one that asked for this. Ross isn't a journalist or the type that would do interviews, he's just an internet funny man. +--- 93228552 +>>93220046 +0 + 50% = 0 +--- 93229744 +>>93227014 +Ross is the perfect layman +--- 93229788 +>>93213670 (OP) +Daily reminder that this fat fuck is still a fat faggot and spamming him doesn't make him any less of a fat faggot. + +P.s. AGI stands for Artificially Gelatinous Individual +--- 93230407 +>aw yea, a new Ross Scott video! +>...ah shit +--- 93230494 +>>93226667 +not necessarily. sensory overload is somewhat common amongst autists, but by itself is not indicative of autism. diff --git a/g/93214534.txt b/g/93214534.txt index 8d0003550dd7107870dbe257ee8ad24c977cd118..897a04b6138ad0b8040c5d320fbfc36ece090386 100644 --- a/g/93214534.txt +++ b/g/93214534.txt @@ -196,3 +196,122 @@ it's early signs of schizophrenia. honestly I'm ready to go full Terry >>93219493 >sustained by autismbux how do I get autismbux? I live in the US btw +--- 93224060 +>>93223428 +asspie here, autismbux are a lie, they're called your parents +--- 93224355 +>>93214534 (OP) +Just read books. Reading books requires more attentions span and comprehension than short Youtube videos and tabloid articles. Read whatever you want as long as it's not toddler tier. A long novel, biography, history, whatever you're into. Just read something that requires more brain power than mindlessly scrolling memes and tabloids. +--- 93224381 +>>93224355 +does reading /g/ threads count +--- 93224397 +>>93224381 +All that reading /g/ threads do is bring you closer to troonydom, which brings you closer to suicide. +--- 93224404 +>>93214534 (OP) +These wojaks or whatever are getting too unfunny and unrealistically specific +--- 93224433 +>>93224404 +not a wojak, and although you say that, I actually know someone exactly like this. + +Must add that I am not OP +--- 93224654 +>>93214534 (OP) +>tfw perma fog-brained from daily cooming +How do I stop bros? +--- 93224799 +>>93224433 +>I actually know someone exactly like this +Yeah that's the unfunny part +--- 93224904 +>>93223189 +Started taking it, it literally has done nothing. There is 0 noticeable difference +--- 93225046 +>>93224904 +Which brand? +--- 93225104 +>>93224060 +I'm currently paid 1000$ per month for being a schizo and I live with my parents. (I also got a job where there isn't anything to do and I play games all day, earning me often an extra 3K per month and obviously, the gov doesn't know about it). I don't spend anything and don't even know what to do with so much money because of my mental illness. In a way, I fucked the system, but it's pointless because I'm broken. +--- 93225148 +>>93224654 +There are meds to cut down your libido: antipsychotics or antidepressants and antiandrogens. If you're really a hardcore compulsive coomer this can change your life. +--- 93225297 +>>93214534 (OP) +Read physical print books +--- 93225354 +>>93215614 +same. everything applies. + +I ghost everybody, nobody has ever ghosted me. Maybe because my fear of abandonment from somewhere (overbearing, overprotective mother? I hate blaming people) makes me pre-emptively leave them. + +A girl didnt talk to me for 2 days and I ghosted her and she still texted me all the time for 9 months, slowly trickling to a stop and I only felt relief because I wouldnt feel guilty anymore. +--- 93225716 +>>93225104 +Wut job +--- 93226057 +I really frightened myself the other day. I picked up a box of cereal and realised that I couldn't read the information on it as the writing was in paragraph form. It's very difficult for me to read something that isn't in subtitle form now. I think it might be over soon. +--- 93226136 +>>93225046 +lmfao pic +--- 93226821 +>>93215753 +This. This is how I did it. +--- 93227035 +>>93214534 (OP) +Where did you get this picture of me? +--- 93227079 +>>93217177 +try snuff +--- 93227081 +shit thread +not technology +--- 93227085 +>>93227035 +>>93221527 +>>93215799 +>>93215614 +>this is who I share a board with +Jesus fucking wept +--- 93227932 +>>93220036 +wellbutrin is not prescribed in my country +--- 93227944 +>>93223189 +not buying your supplements, scammer +--- 93228410 +>>93215799 +reddit spacing +--- 93229109 +>>93219139 +You need to do it consistently for a long time. The point is to not only improve your health but to develop a habit. Poor attention span is a sign of not having any good habits. +--- 93229111 +>>93228410 +no +--- 93229169 +>>93214534 (OP) +>Abnormally large eyes +Why is this in here other than to specifically describe me? Am I being cybergangstalked? +--- 93229194 +>>93229109 +I go to the gym and run everyday and my attention spam is still shit. ive been doing both for almost a year +--- 93229445 +>>93214534 (OP) +>tfw that one day in the month where you suddenly can focus on something for a few hours straight without being distracted every 5 minutes +--- 93229523 +>>93214534 (OP) +>>just turn all that shit off and focus on one thing at a time +>no +Yes. Gradually reduce the number of shit you're subscribed to, the number of dumb shit you visit, and the genral amount of time you spend on social media/forums. You can try going cold turkey for an hour too. +You have to kick off the habit, then you can kick off the addiction. +You can use a podomoro, or a software like Cold Turkey to soft block your shit behind being forced to type random characters. +Try to find other shit to do, too, you don't want to have nothing to do once you're off the computer. +--- 93229560 +>>93214534 (OP) +I'm going through this and implementing what it says, or at least trying to. Seems hard, but I think I am doing more things that I can define now for sure. +--- 93230715 +>>93219493 +>>93223324 +Lockdown? +--- 93230801 +OP image is schizoid personality disorder. Most anons on 4chan have it. diff --git a/g/93215190.txt b/g/93215190.txt index a7cf31d0064834e8a9817ca022363c2a9475d1d9..e8f9850dc796cbbe749aab08475271d324541095 100644 --- a/g/93215190.txt +++ b/g/93215190.txt @@ -207,3 +207,103 @@ There's an older movie called Pacific Heights I recently watched where the tenan >Google tells feds >get sent to prison for possession of CP https://www.nytimes.com/2022/08/21/technology/google-surveillance-toddler-photo.html +--- 93223686 +>>93220465 +>he cant open a window +>he cant break a window open +>he cant open a door +>he cant lever a door open +>he doesnt understand how sprinklers work +Maybe you deserve to die. +--- 93223745 +>>93223686 +>break a window open +many people dramatically underestimate the force necessary to do this. +>doesnt understand how sprinklers work +almost nobody does. that's why they're always an unexpected killer and why they haven't been made illegal yet, somehow. +when you're suddenly trapped by the torrential chemical water and you're clawing at your window trying to get out as your skin is sloughing off from the chemicals and your lungs are filling with pain, you'll think of me before your mind descends into a slow-building crescendo of pure agony prior to your death, and you'll know i was right +--- 93223775 +>>93215313 +I use cellophane tape kek +--- 93223811 +>>93223745 +>many people dramatically underestimate the force necessary to do this +Most windows are not one inch thick. +>torrential chemical water +It's usually regular water, it's not a huge jet of water. When one sprinkler goes off, in nearly every possible setup it's only that one. If you weren't a huge retard you'd know that. +Then again you think water would impede a door swinging outward or a window opening outward. +--- 93223820 +>>93223745 +lmao are you like bedridden or some shit? +--- 93223890 +>>93223811 +>Most windows are not one inch thick. +if you are not in an old building, your windows will be double pane at least, which are much thicker and filled with gasses +>doors +doors don't work until they're completely underwater. you would know this if your car ever ended up in a river or lake. +--- 93223897 +>>93220466 +the very idea that a permanently hardwired device can't charge its own battery is absurd +--- 93223982 +>>93223890 +Most residential doors do not swing outward so I will concede that it will be harder, however sprinklers do not spray fast enough to flood an entire apartment in seconds, it would take hours of uninterrupted flow to flood an entire apartment. The water at the base of the door is inconsequential if you're not a weak faggot. Your entire retarded shitspew is based off the idea that you are so frail you cannot move a half inch of water with a door. +--- 93224012 +>>93223982 +>half inch of water +only for the first few seconds! you only have on average 30 seconds before the water will be up to your waist, you would be surprised how hard it is for even a strong healthy male to move such a volume of waist-high water +--- 93225060 +>>93224012 +>you only have on average 30 seconds before the water will be up to your waist, +Average apartment size is 941 square feet, which is 11,292 square inches, average male is 69.1 inches tall, 1/3 of that (generous waist height) is approximately 23 inches. 11,292 sq inches * 23 inches = 259,716 cubic inches of water. 259,716 divided by your number of 30 is 8,657 cubic inches of water every second, assuming the max of two inch diameter pipes, the sprinklers would be ejecting water at 699,920 miles per hour. +TL;DR: You're retarded +--- 93225127 +>>93225060 +yes the water comes out very fast!!! +--- 93225164 +>>93225060 +If that sounds ridiculous, wait until you do the calculations for Noah's Flood. +--- 93225166 +>>93217763 +Lmao you keyboard commies get more desperate by the day +--- 93225178 +>>93223982 +Most apartment doors open outward, at least in my experience. +--- 93225312 +>>93225060 +>699,920 miles per hour +>speed of sound 767 mph +>ankle-high in water before you hear the first drop +>eardrums perforate instantaneously +>water actually turns to steam and plasma from pure air friction upon ejection +>all windows within a 10 mile radius shatter instantaneously +kek +--- 93225654 +how do I get one of these installed in my room? +https://youtu.be/wYAOHYKBYas [Embed] +--- 93225748 +>>93219716 +You shouldn't BBQ inside. +--- 93225777 +I don't think the water from the mains even has a high enough pressure to flood an apartment +--- 93225779 +>>93215190 (OP) +its more of a bep +--- 93226023 +>>93225777 +Another good point. +The amount of pressure the system would need to be under would be staggering. The pipes would blow out or the sprinkler heads blow off, or both. +--- 93226259 +>>93217601 +They don't drown people +Nah nah +I drown people +With cun +--- 93226795 +beep +--- 93226849 +>>93223897 +>replacing a 9v battery is hard +Zoomers really are the memeist of generations +--- 93228650 +>>93226849 +>I use alkaline primary cells... BECAUSE, OK diff --git a/g/93215214.txt b/g/93215214.txt index c0999e039e767185e86018e2927014dc96b37939..0c04ddd6345f33fe8de045b7e1286821370192c2 100644 --- a/g/93215214.txt +++ b/g/93215214.txt @@ -249,3 +249,81 @@ gets me every time uhhhhh https://www.youtube.com/watch?v=NCx4DFTskoM [Embed] +--- 93223768 +>>93222595 +carmackposters ww@mMMmm? +--- 93223944 +>>93215214 (OP) +Be born at the right time, a good money buffer, and connections. +--- 93224004 +>>93216261 +How is he high IQ? Most of his claims to fame is using other people's algorithms. The only prop I give him for this is that he never claims credit for this even though people give him the credit anyway. When he talks about shit like AI, it's clear he doesn't even begin to have the least understanding about the subject, despite the grand claims he makes about it, which is pretty good evidence to me that this is likely the level he's at for games as well. I could believe that he's a great game director or marketing guy or something, at best. +--- 93224062 +>>93224004 +He can hold positions in companies that require extreme competence. +He can speak in depth about technical topics on various subjects, he never lies and doesn't bother with politics. +Wisdom of crowds, everyone thinks he's hot shit. +--- 93224092 +>>93224062 +>He can hold positions in companies that require extreme competence. +You must be 18 or older to browse this site. +--- 93224139 +>>93215214 (OP) +Separated at birth? +--- 93224325 +>>93216683 +you talk like a fag and your shit is all retarded +--- 93227820 +>>93218267 +The main argument for it is that with the rise of vaccinations, autism has gone up as well. +Of course there are other factors, too, such as the increase in genetic mutations in the population over all, which contributes to the rise of autism. +But antivaxxers having a much lower rate of autistic kids is a dead give away. +--- 93227856 +>>93224139 +What's he been up to lately, anyway? +--- 93228145 +>>93224004 +He scored 1500 on the old SAT which corresponds to 150 IQ. +--- 93228360 +>>93221518 +Yes they do, autist. +--- 93228761 +>>93215626 +microplastics pass the blood-brain barrier + +it's a much worse problem +--- 93228857 +>>93215214 (OP) +Back in the day a lot of these people wanted to be famous and loved, and so they made the best games they could. + +Now you can get the same from making some tweets, the lure to be great is gone. + +Stephen king is a great example. +--- 93228882 +>>93215214 (OP) +By simply doing what he is doing or rather by doing what you are doing. +--- 93228943 +>>93224004 +> Most of his claims to fame is using other people's algorithms. +Because he is an excellent systems designer/engineer. That's what he was always good at: finding the correct combination of solutions to subproblems so that the actual problem is efficiently solved. Nothing more. +--- 93228962 +>>93215214 (OP) +>eating goyslop and drinking dogshit +absolute faggot +--- 93229060 +>>93228962 +This. The meme of "living off of pizza" is a danger to public health. I did it once and it was the worst year of my life. +--- 93229061 +Start taking high doses of adderall or vyvanse, when I take my 60mg vyvanse I can't stop programming. +--- 93229359 +>>93216941 +Low risk is a meaningless metric. This means risks of acute death or side effects are slim to none. I'm worried about chronic low grade side effects like allergies, asthma, and being more prone to sickness etc which vaccines can provoke. +>>93218698 +Vaccines are exerting anti evolutionary pressure on the species and are dysgenic. The same arguments in favor of them are fallacious and rooted in moral appeals. You think it's darwinian to get them but in actuality sound like a pro life double digit IQ moron. If your absurd appeal was true and my child succame to a disease that otherwise would not have been incurred via vaccination, I simply have another one. This hypothetical person is actually better off because he would have been in for a subpar life with a weak immune system and health issues. In absence of vaccines, the healthy survive and the weak perish. +--- 93229372 +>>93215214 (OP) +1. Be intelligent +2. Don't be stupid +--- 93229405 +>>93229061 +60mg is not a high dose. That translates to 17.5 MG of dextroamphetamine being delivered in extended release in the vehicle of a pro drug. It's a standard or even low dose depending on your BMI. High doses are neurotoxic and should be avoided (which this isn't). diff --git a/g/93215740.txt b/g/93215740.txt index f74d697b40ca713ab4d2daa0015445b3802fbd37..ec361ea8082b5139721bb6fcb71abc6a3c61616d 100644 --- a/g/93215740.txt +++ b/g/93215740.txt @@ -368,3 +368,217 @@ Good morning, I came into possession of a laptop today and I am trying to see if --- 93223250 >>93223056 Also it's running W11, I don't know if that needs to be changed. +--- 93223981 +>>93223250 +yes it absolutely does +>>93223056 +this should be fine for a jellyfin server, but you should get more storage. Remember that jellyfin only streams YOUR content that YOU downloaded onto YOUR computer - those files take up space! +if you only really intend for it to do a handful of things, then install an operating system like debian or ubuntu (they are very similar and most guides are interchangable) and use that to run your server applications. +While I don't strictly think it's the best idea ever, you can comfortably install the regular desktop ubuntu OS (no need for command-line/text-only interfaces) and use that to run all the servers you need. jellyfin has very good doccumentation on installing it, and setting up a fileserver is just as easy on ubuntu as it is on windows, you just need to install a thing called "samba" and find a guide on setting up a "samba share". +FWIW you *can* do these things on windows, but windows is a little more finicky because it does a lot of stuff automatically that makes it difficult to have as a dedicated server, and disabling these is a pain in the ass. + +Other people here will reccomend using something like freenas, proxmox, or some other similar operating system. you absolutely can, and it's what I do (proxmox), but they are quite complicated if you are unfamiliar with computers in general let alone linux computers and really you're only going to need to run like two or three things so you don't need to worry about containers or virtualisation. Also, freenas/truenas are strgonly advised to NOT run on a laptop with USB HDDs because you almost certainly will lose data that way. + +So basically, if I were you I would +>look into debian/ubuntu desktop operating systems +>learn a little bit abuot how linux is different to windows (the first thing is how it handles drives, theres no C:\ drive on linux!) +>read the guides for jellyfin and samba share setups +>purchase some external storage +>lurk moar +Good luck! +--- 93224009 +>>93223056 +>>93223981 +oh and I almost forgot about the seedbox part +I strongly reccomend transmission for a torrent server, as it runs a "client server" setup where you can host the "server" on your seedbox, have it do all it's stuff, and then you can connect to it from a "client" on your other computers from where you can manage the torrents. + +Deluge is another reasonable torrent server but I would say transmission is the better of the two in most areas +--- 93224860 +>>93221209 +Fixed by setting the VM's IP address to 192.168.0.98 and opening up the subnet mask on the router to 255.255.0.0 +Now I can ping the VM while connected to Wireguard. The issue was that the docker container itself cannot reach VMs in the same subnet. +Apparently truenas fucked up yet again: https://www.reddit.com/r/truenas/comments/11tg9m8/cant_ping_vms_from_inside_docker_containers/ +--- 93225420 +>>93223981 +>>93224009 +Cool, thank you. I can just get external HDDs and connect them to the laptop via USB right? Time to start researching debian and ubuntu. +--- 93225435 +>>93215740 (OP) +Does anyone have a favorite FTPS server? What do you like about it/dislike about other options? +--- 93225452 +>>93224009 +rtorrent > deluge > transmission +--- 93225539 +>>93219132 +my company would unironically fail without me. They don't have the money to pay for a real specialist and no one is going to go into the shit and undocumented quagmire I've delved into for CAD $40/hr +t. zoomer +--- 93225676 +>>93225435 +ftp, even with ssl, is still a shitty dead protocol +>>93225452 +I want to give a reason why you're completely wrong but I haven't used anything but transmission for the last 8 years after trying everything else. +--- 93225752 +>>93225420 +yes, although long-term i'd investigate replacing the laptop with a dedicated NAS box, something you can use internal SATA drives with +but this will work for now +>>93225452 +>reeeee +ok +--- 93225789 +>>93225435 +yeah +SSHD and SFTP because FTPS is fucking garbage and should never be used +>>93225676 +>ftp, even with ssl, is still a shitty dead protocol +as a wise man once said +"I want to give a reason why you're completely wrong" +SFTP is still the best way to update pages on a webserver. even cloudshit webhosts use SFTP at the end of the day +t. a cloudshit webhost datacenter admin +--- 93225840 +>>93225789 +SFTP is not FTPS... And you get paid to do this? +--- 93225920 +>>93225840 +im telling you to not use FTPS because its shit +use SFTP, it takes zero configuration or extra software and can leverage much greater security, plus transfers significantly faster +FTPS should never be used, ever. +--- 93225940 +>>93225920 +Yes, and SFTP isn't even FTP. It's ssh. Ftp IS dead. +--- 93226043 +>>93225940 +its literally FTP via an SSH tunnel +inside the tunnel the exact same FTP is happening, there is no differemce whatspever between SFTP and FTP except SFTP has the FTP happening in an SSH tunnel +you are thinking of FTPS +--- 93226441 +>>93226043 +>its literally FTP via an SSH tunnel +It's not. Not even close. +--- 93227263 +>>93222289 +>boomer reliving the virtualization boom +nice +>>93222428 +Nice read, cool dad. +>>93223056 +I'd say >>93223981 >>93224009 gave mostly good advice, although for Jellyfin + torrent client + "various other things" I would already be considering containers via docker-compose. Just makes things a bit more maintainable long-term imo. +>>93225752 +>dedicated NAS box +A computer sure, but I'd advise against proprietary NAS appliances that end up limiting the user and costing more. Once you're not scared of Linux, you don't need that much handholding like the target market of those things. +--- 93227485 +what are you running on your server, bros? im planning to add deluge to download airing anime +--- 93227684 +wood rack anon here, I may have concrete plans now for rack 2.0 +got a parts list all lined up and a budget of just over $300, although adding fans takes it closer to $500 +>>93227263 +>A computer sure, but I'd advise against proprietary NAS appliances that end up limiting the user and costing more. +this is what I meant, it's an annoying term because "NAS" is just a concept, not a product, but there are products that are referred to as a NAS... +I was thinking a $20 mid-tower thermaltake case with drive cages, some b*50 whatever board, some shitty CPU and a fuckton of sata ports +but some commerical NAS all-in-ones can be a good purchase if you don't really plan on doing much more than fileserving and some kind of small media server a-la jellyfin or plex. In fact I'm pretty sure the most recent synology images actually have jellyfin, kodi and plex in their "deploy an app" section of the webUI +--- 93227710 +>>93227684 +new design includes removable side panels, probably they will just be held in with four deadbolts because that's the simplest thing, but I also like the idea of having them sit on some kind of bolt and then using a wingnut to hold it in place, like a rackstud (i just got a set of rackstuds and I fucking love them) +--- 93227937 +>>93227684 +>>93227710 +wouldn't you prefer a metal one? is it because wood is what you have on-hand to achieve this, or do you actually prefer it? +--- 93228009 +>>93227937 +I am a metalworker by trade, but heres the thing +Wood is $300 for this entire thing +Aluminium is close to $800 +Steel is not even an option at $1300 + +Wood costs next to nothing, is strong enough (this is VERY overbuilt, just so you know) and looks nice as a furniture piece. It's also very good at blocking sound +Al is expensive, requires a lot more work since you don't just bolt it together (and it's also not just as simple as welding a big box out of 6 panels) and does nothing for sound. + +If I wanted a metal rack I'd just buy one, but nearly everything in this rack was free or at least very inexpensive so the idea is to make a nice rack as cheaply as possible +--- 93228024 +>>93213182 → +>P2P XMR Pool +dunno if this annon is around here or not, but anyone knows details of running an XMR pool? +--- 93228061 +Need some troubleshooting help +TrueNAS Scale 22.12.2 +Gigabit Ethernet + +I have an iSCSI share set up, mounted, and encrypted with VeraCrypt. +When creating it it went at expected speeds. +Now that it's mounted, moving files to it is taking forever. It started off at expected speeds and has been dropping in speed progressively. Was at 12MB/s and has been crawling down by 0.01MB each time, now down to 8MB/s... started at ~110MB/s initially. +I am transferring a 125GB flie into a 128GB zvol iscsi share. + +Previously, when I tried storing a large container file on an SMB share I had a similar problem. Speeds went to shit, couldn't figure that out, so that's why I started trying via iSCSI. + +TrueNAS cpu utilization is low, temps are fine, disks are fine, scrubs are fine. +Source disk is an SSD and transfering the 125GB locally to other disks has no performance issues. + +As of typing this the speed has progressively gotten worse down to 7.96MB/s now. +It's like it is getting caught in an SMR write bottleneck or something... but the disk are CMR and worked fine when connected directly via SATA in another PC. +What could be going wrong? +--- 93228600 +Is the correct way to set up a write cache on zfs/truenas to just set up a new pool with one or more SSDs the write an rsync cron script that syncs data from the SSD to your HDD dataset after midnight? +--- 93228892 +>>93227485 +>flame +What's that? +Myself: Jellyfin, *arrs, torrents, Matrix, Gitea, Nextcloud, cryptocurrency nodes (planning on hosting Bitcoin too, gotta get a larger cheap SSD for that since it's what, 500GB to host full blockhain nowadays?), PhotoPrism (recently got some updates, hopefully user accounts will be ready soon so I can merge my instances), Vaultwarden, Syncthing, etc. +>>93227684 +>this is what I meant, it's an annoying term because "NAS" is just a concept, not a product, but there are products that are referred to as a NAS... +Okay, good. Yeah, that's exactly what bothers me about this term, so I autistically avoid calling a home server a NAS, even if someone just wants a Samba share off their USB HDD. +>some commerical NAS all-in-ones can be a good purchase if you don't really plan on doing much more than fileserving and some kind of small media server a-la jellyfin or plex. +On one hand I agree, but on the other I'm sure you won't deny selfhosting is addicting. You start with just Jellyfin and then suddenly wake up 100TB of storage and 50 running services later, buying most overpriced Synology offering because that's what you started with and the migration between SHR supporting NAS appliances was so easy. Like those people you see on Reddit or other online selfhosting places sometimes - a large NAS appliance and a standalone tinyminimicro or rack server because the NAS doesn't fucking cut it performance wise. +I do wish there was some cheap strategy to getting an adorable small NAS like enclosure, performance of an average 6/7gen tinyminimicro and the freedom of a normal computer. Unfortunately all NAS cases that I know/liked seem to be expensive. +>>93228024 +If you mean a P2P Monero pool like anon's, you can run a node of this: https://github.com/SChernykh/p2pool +>>93228061 +boop for interest, I assume VeraCrypt is only on the container file, not the entire iSCSI volume? +>>93228600 +not sure but look into mergerfs (write policy: ssd) + your mover script +--- 93229382 +>>93224860 +i didn't think you understood what subnets were, and it appears you don't. keep hitting the books kid and maybe you'll figure it out. +--- 93229525 +>>93228892 +>boop for interest, I assume VeraCrypt is only on the container file, not the entire iSCSI volume? +I actually full pre-encrypted the whole iSCSI volume, then mounted it and tried copying over the 125GB container. +I then demounted it and quick formatted the volume via Windows eliminating the encryption volume and starting over as fresh and tried again, it was still slow as all hell. + +Small files seem to work fine. +Large ones slow down to a a snail's pace. 900MB goes good, ~1GB good, 1.4GB+ bad. Just some test files (vids) I tried but I can't find the magic number just a ballpark. + +My pool is encrypted and I couldn't find a way to create an unencrypted zvol for an iSCSI share. I can do that for SMB shares and datasets but the option for no encryption doesn't appear to be in the GUI for iSCSI shares/Zvol creation but considering the speed consistently crawls to under 8MB/s given enough time, I don't see how ZFS encryption could possibly even be a bottleneck at those speeds. + +I would say fuck all of this and buy a NAS but they're all so pricey and if I get this working it should be worth it but I'm starting to think TrueNAS Scale is buggy and maybe I should be using CORE or something. If it's got bugs, I'd bet they affect performance more than data integrity, and some people run this on insane hardware that might brute force their way through performance losses and bugs but I'm just trying to run a simple 2-drive mirror on a dual-core and 8GB for ultra basic shit, no VMs, no apps, just simple NAS storage. +--- 93230541 +>>93228892 +>not sure but look into mergerfs (write policy: ssd) + your mover script +Stop answering questions regarding things you clearly have no clue about. +--- 93230719 +How much of a performance penalty is there if you mount storage from a VM to it's hypervisor in nfs/samba? compared to just mounting a path from the hypervisor's storage? +--- 93230834 +>>93230541 +sorry mom +do you clearly have any clue about those things? +i would love to hear from an expert +as far as i know this would let anon have fast ingest without having to use two datasets completely separately +like, network mount for incoming and network mount for old data +and i am not aware of anything for non-sync writes, there was ZIL for sync writes +L2ARC is for reads +where is the async write cache anon +where is it +where +we must get it +we cant be losing to unraid bros +they pay and they get better +help +anon +help +i beg you +redeem us +please +>>93230719 +hello anon i would answer you based on my experiences but momanon told me not to unless i am virtiofs and vmware and samba and nfs developer at once +sorry +hope you dont hold a grudge against me for this + +DANON: It would be best to benchmark those things yourself, but I haven't noticed much difference Samba vs virtiofs (I used virtual NIC to reach host). At all times I was bottlenecked by my HDD storage. diff --git a/g/93215786.txt b/g/93215786.txt index 05c129550d3b790df88b28b645fc0e3de20b9ab8..63a446f2b6b124891f0ad332cf78fb456e36f0bd 100644 --- a/g/93215786.txt +++ b/g/93215786.txt @@ -210,3 +210,131 @@ See >>93219278 >>93220773 Are you okay, anon? Do you smell toast? I've been talking this entire time about the importance of three-factor authentication and here you are ranting about how poorly implemented biometrics isn't secure on its own. 3D facial scanning is fine and easily implemented in software, you just have to turn your head. +--- 93223804 +>>93222752 +proofs? +--- 93223899 +>>93221349 +>backs up OTP key +checkmate faggot +>loses yubikey +>permanently fucked +double checkmate, therefore double faggot +--- 93223969 +>>93223185 +yes 3d facial scanning easily implemented, but also the police can just point a camera to your face and open you account +also, there's no point in three factor authentication if I already have two factors: +1. username +2. password +--- 93224049 +>>93223969 +>1. username +>2. password +I have four words for you: GPU Password Cracking Rig +A compound word after that: Hashcat + +Better hope that password is fucking strong as hell. +--- 93224054 +>>93224049 +GPU is not a word +--- 93224075 +>>93215786 (OP) +because i dont have anything illegal to hide behind layers of encryption +--- 93224091 +>>93224054 +Alright then, seven words: Graphics Processing Unit Password Cracking Rig +Or would you prefer 3 words and one acronym? +--- 93224109 +>>93224075 +That's not what a yubikey is for. Although a yubikey is indeed encrypted, that isn't the point, and would still be viable if it were not encrypted +--- 93224133 +>>93223899 +>>loses yubikey +>>permanently fucked +yubico literally tells you to buy two so you can have one has a backup. Also you're only fucked if you were stupid enough to not write down your backup codes +--- 93224186 +>>93224133 +>backup codes +>buy two +again, why not just use a FOSS otp app? I understand the purpose of yubikeys but I only use them for actually important shit. +--- 93224229 +>>93224186 +>device blows up +>oh no your fucked unless you backed up your codes +It's almost like any 2fa has these issues unless you intentionally do backups +--- 93224251 +>>93223969 +>I already have two factors: +>1. username +Okay. So you're just trolling. For a moment there I was afraid you actually were that brain damaged. +--- 93224269 +>>93224251 +--- 93224281 +>>93224229 +>device blows up +Did you not read above where I said backup your otp keys? That's already a non-point now. Yubikeys are indeed more secure, I myself use them, but remember that security is inversely proportional to usability and recoverability. It is best to plan based on your threat level. +--- 93224336 +>>93224269 +Your username is publicly visible and guaranteed to be in plaintext. Calling that a factor is batshit insane. Worse than biometrics even. Yubikeys also are terrible security as anyone could steal your key and then have access to anything you have setup as passwordless. +--- 93224418 +>>93215786 (OP) +>work for MSP (billion $ mcap) +>big clients including gooberment +>known for fucking up (in the news a big deal) +>company is too cheap to pay for yubikeys +It's funny and sad at the same time. +--- 93224542 +>>93224418 +pretty sure every bank i use has no form of 2fa. Kind of funny +--- 93224569 +>>93215786 (OP) +Because tying your digital security to a physical asset is retarded. Half the reason for a password is so someone can't just steal your laptop and gain access to everything. +--- 93224594 +>>93224336 +>Yubikeys also are terrible security as anyone could steal your key and then have access to anything you have setup as passwordless. +>>93215973 +--- 93224781 +>>93224594 +yubikey only offers one variant for biometric and it has less features and is not FIPs compliant. It's also a rather garbage scanner. Any competent three letter agency could swipe your fingerprint off objects and use it to activate the yubikey bio key. +--- 93224809 +>>93224781 +You don't use the biometric Yubikey, you use a proper scanner that isn't shit. +--- 93224821 +>>93224809 +Name a single service that lets you do an yubikey along with a different bio device. +--- 93225800 +>>93224821 +my work supports both yubikey and mac touchid for their SSO +--- 93225865 +>>93215786 (OP) +Subject to search and seizure by government, unlike my brain stored password. +--- 93226237 +>>93224821 +>Web services do the bare minimum for security that they can get away with +This isn't news. +--- 93226521 +>>>>>>>>USB +ahahahahahahahahahaha +--- 93226548 +>>93226521 +What's wrong with USB? Name a more ubiquitous way to plug a thing into a thing. +--- 93227491 +>>93215915 +Right, because your unique token that is made to authenticate you won't compromise your online anonymity. Just install otp on your desktop faggot. +To be fair I wouldn't use 2FA at all if I could trust providers to store passwords securely. So 2FA only gives me extra time to change a password if I need to. +--- 93228975 +>>93215786 (OP) +Passwords are never going away. +--- 93229014 +>just use some SaaS authentication method that depends on your phone being available and just working +>Dude, just use some removable key that could break and lock you out of everything +>Bro passwords are le btfo +If people hate passwords so much, then let them use a non meme pki that doesn't require some garbage hardware that can't be cloned. +--- 93229078 +>>93215786 (OP) +Because I have a procedural yet intuitive way to generate new unique complex passwords on the fly for every new shit I sign up. I came up with it, I don't have to remember shit, just the simple logic behind it that as long as I don't share it I'm set +--- 93229089 +everytime there's a shitty shill bait thread they post some image from google instead of the one they own in real life (because they don't) +--- 93229114 +>>93215786 (OP) +anon the average user doesn't even like MFA, they're not going to start carrying around an extra device because Cletus from IT says it'll make their system more secure diff --git a/g/93216205.txt b/g/93216205.txt index 6c9c50d7b9529d462c7ed6d464b27b2d30113916..e0b6d7db39405b4866fbd08f6ea5fa36b9855486 100644 --- a/g/93216205.txt +++ b/g/93216205.txt @@ -235,3 +235,125 @@ autocad runs on mac under rosetta and will be ported to native arm next year >>93216205 (OP) >or a creative aka faggot You actually need beefed up specs to do that. +--- 93223555 +>>93216205 (OP) +the 13" m2 air is goated, IDGAF what incels on g have to say +--- 93223596 +>>93216318 +>pay more for less +--- 93223912 +>>93216318 +Gaming, Ai and real work (Windows, Office) are only situations you need a computer. +Everything else you can do on your phone. +--- 93224666 +>>93219313 +not really; full-screen apps generally ignore the screen on the sides of the notch, even at the expense of height +--- 93225023 +>>93218579 +>Cloud computing +The "computing" part in this is a server's job. Most cloud computing engineers develop on Mac before deploying to cloud. +>Machine learning +Fair, CUDA dominates the industry. +>Anything needing high-availability or hot-swap. +Server's, not personal desktop's job. +>Anything needing massive storage or RAM. +96 GB for the M2 Max is more than enough, and for actual professionals Mac Pro exists (although the latter is a shitty, expensive solution). +>Programming tools for embedded systems. +>Anything embedded. +True. +>Actually editing video across a distributed team. +Not an issue; Avid Media Composer runs perfectly on the new hardware. +>Anything which needs to be rugged. +True. I've never seen anyone working in industrial automation using a Mac. +--- 93225246 +>>93216205 (OP) +Show me at least one laptop with intel chip of the same power which has comparable battery life, faggot. +--- 93227009 +>>93216205 (OP) +Why do gamers always cover with the phrase "actual work"? Maybe you're just ashamed of who you are and it's not the MacBook who hurt you? +--- 93227055 +>>93225246 +>intlel +--- 93227201 +>>93216205 (OP) +>can't do any actual work unless you work on a pc +can't weld steel beams with x86 either retard +--- 93227204 +*doubles your battery life and eliminates the need for a cooling fan while still delivering a bump in horsepower* +>b-but software development and music production aren’t real jobs +cope +--- 93229081 +>>93222938 +It has the exact same sidebars as a 16:9 screen. Like I said, it's just a 16:9 screen with an extra bit of optional real estate on the top. +--- 93229088 +>>93216205 (OP) +Are you calling them gaming chips? Because they are not. +--- 93229472 +>>93227166 +Classic Mac user. +>Has the time to troll in threads since he's not doing anything productive anyways. +>Mass reply for maximum attention grabbing +>Lazy as fuck. Hasn't read a single post he's replying to, some of which are disagreeing with op or praising macbooks +--- 93229515 +>>93216205 (OP) +>"Can't do any actual work" +Do gaymers unironically think that wasting their time on video games is "work"? +--- 93229548 +>>93229472 +It's a bot retard. +--- 93229578 +>no games +has all the games i need ackshually +--- 93229683 +I got a Macbook Air M2 from the office to work with from home. + +It absolutely sucks. VSCode hangs sometimes and the screen is IPS in 2023 for fucks sake. We have OLED screens on $500 laptops now, what the fuck Apple? + +Compiling takes a long fucking time as well compared to the 7950x in my desktop I was allowed to use before we switched to a fully mac ecosystem. + +This was my first exposure to ARM based macbooks and it's ridiculously bad. Not even talking about stupid shit like Rosetta 2 not being installed by default and how non-technical employees have a hard time understanding why applications don't work while built for Mac and the Macbook not even giving a hint that rosetta needs to be installed to them. + +I'm never buying any other Apple product after this being my introduction to them. They provide low quality hardware and an even worse software experience. +--- 93229716 +>>93229683 +>passively cooled ultrathin laptop +That's why your performance sucks. +> the screen is IPS in 2023 for fucks sake. We have OLED screens on $500 laptops now, what the fuck Apple? +Mac OS has godawful DPI scaling and font rendering capabilities, so it needs to have obscene resolution to not look terrible. That's where the money is being squandered. +>This was my first exposure to ARM based macbooks and it's ridiculously bad. Not even talking about stupid shit like Rosetta 2 not being installed by default and how non-technical employees have a hard time understanding why applications don't work while built for Mac and the Macbook not even giving a hint that rosetta needs to be installed to them. +Apple want to kill intel and don't care about how bad the UX is to achieve it. +--- 93229726 +>>93229683 +>They provide low quality hardware +That’s how I know you’re lying. +--- 93229908 +>>93216205 (OP) +>comparable with x86 workstation CPUs +>have 10 times lower TDP +>call them toys for whatever reason +Do unemployed NEETs really? +--- 93229968 +>>93229683 +>We have OLED screens on $500 laptops now, what the fuck Apple? +Apple has to deal with people returning $3000 laptops because there's a smudge on the aluminium. After a week and the dock burns into the OLED every single news outlet will have wall to wall coverage of Apple's display "failure". Bots and mentally ill /g/ users will fill the catalogue, you know it, I know it, apple knows it. +>Compiling takes a long fucking time as well compared to the 7950x in my desktop +That shouldn't be the case. The M2 isn't a patch on the 7950X for actual performance, but compiling is barely CPU dependent once you get up there in core count. And the M2 has plenty of cores backed by an SSD on the higher end of the scale. There will be something retarded that's fucking with your build. Treat it like linux, debug it, fix it, improve your life rather than complain and suffer. +--- 93230322 +>>93229726 +IPS screens in 2023 is fucking unacceptable. The keyboard is merely okay and the fingerprint scanner has a 10% error rate. These aren't things you would expect from a premium brand. + +I don't even know why Apple decided to do this as this obviously damages their brand. People buy their stuff for the (perceived) high quality hardware. If it feels like cheap outdated chinkshit then eventually people will stop buying them. + +I have a Macbook Air M2 for free sitting next to me right now and I'm still choosing to use a $999 Asus Vivobook 15 Oled over it to shitpost on 4chan with. THAT is how much I hate working on that shitty laptop. +--- 93230500 +>>93229968 +With soldered RAM and storage, the computer has a short lifespan from the day it is manufactured. Just add the one piece of planned obsolescence that will actually improve the user experience while it still works. +--- 93230562 +>>93216913 +>Lack of upgradability? +Arms chips dont need to be soldered to the MB like the PIs and apple Silicon. There are socketed arm cpus. +--- 93230656 +>>93216205 (OP) +Apple Silicon aged like milk. it was cool in 2020, but now it's total garbage. +And it's funny how Apple cucks rdna2 gpus on intel macs making them slower than Apple Silicon gpus. +In reality even $400 rx 6800 is about two times faster than $5000 m1 ultra. diff --git a/g/93217032.txt b/g/93217032.txt index 1f4ecffa4baea00ec1e1b3d53fd7792cbacf93af..c66c6ec416175766772d18871bf62a763d7486d7 100644 --- a/g/93217032.txt +++ b/g/93217032.txt @@ -52,3 +52,64 @@ https://www.aliexpress.com/item/1005003577312703.html --- 93221871 >>93217032 (OP) That'll be $150.00 plus tip +--- 93224390 +>>93217032 (OP) +/g/ is so fucking stupid, I brought one to try and I couldn't get video games like Warzone to work. Someone told me to build a cluster of 20 or so, I tried that and still... the performance was worse than a 2009 gaming pc, even trying an amd card but it was too complicated. +--- 93226534 +>>93221644 +>If you're saying it's slow compared to an X86 box at graphical desktop tasks. no shit. +Kill yourself, retard. + +>>93224390 +Install gentoo +--- 93226576 +>>93221644 +Way to out yourself as a retard. + +>>93221845 +I have an Orange Pi PC mounted to the back of a monitor being a simple digital microscope host and web browser for when I'm doing soldering work. +The USB driver for it is either non-standard or more restrictive than most systems because the microscope doesn't work when directly plugged into it (chinkium so the scope is likely non-standard but other systems aren't as restrictive). +--- 93226613 +>>93226534 +>>93226576 +This is pretty obviously a troll thread. It starts with you and eventually the autistic retards who think that ARM is "locked down" will show up and start sperging out over being unable to install Windows. +--- 93226919 +>>93217032 (OP) +just use jetson nano +--- 93227000 +>>93217032 (OP) +8gb version is twice as fast +--- 93227089 +Too expensive for everything it is fast enough for. +Too slow for everything else. +Back when the Orange Pi was cheap as dirt I bought a lot of them, good times. +--- 93227170 +i have a spare pi400 and i dont know what the fuck to do with it, i already have a jellyfin server, a file server, and a emulator SFF box for retro games thats way more powerful, so i basically have it sat not doing anything. + +I might just turn it into an SDR system or something, not sure how well the pi400 works as a dedicated retro pc emulator for old dos shit though, because it might be nice to have a dedicated computer that just runs old dos games and old crap i can pull of archive.org like encyclopedia discs and crap, dont even know if pcem works on the pi's, though i know dosbox does + +>>93226576 +see i could probably use it for something a bit more niche like this, might end up needing a computer in my garage for messing with 3d prints and crap, thought about using the innards to build a smart mirror out of it as i have a usb monitor too. +--- 93227823 +>>93217422 +most threads are +>just bought this, wtf do I do with it +shilling is generally frowned upon, /g/ would decimate 100 things before it promoted a single product +--- 93228418 +>>93221845 +is it really "libre"? i would love to have a entire thread to discuss it +--- 93228698 +>>93217032 (OP) +I can't use this trash because I can't fucking buy it. Fuck this company +--- 93228820 +>>93228418 +The DTB, bootloader and kernel are FOSS and require no binary blobs. But that's not really uncommon for most ARM SBCs beyond the memeberry pi +--- 93229238 +>>93221845 +>orangepi +Have an Orange Pi 5 16GB on the way. +Wanted the 32GB, but Amazon doesn't seem to have them. +If someone works out how to leverage the NPU, might make great little units for LLMs. +--- 93229286 +>>93229238 +The chinks aren't even selling the 32GB model on AliExpress, I think they haven't made any yet. diff --git a/g/93217460.txt b/g/93217460.txt index eb4263abe972c9bbcfbaa8804bb5f233ea7e7be2..d8a7bea9f265e07e8a22d853636e327c2be319ce 100644 --- a/g/93217460.txt +++ b/g/93217460.txt @@ -60,3 +60,25 @@ https://litter.catbox.moe/plhyk2 https://litter.catbox.moe/nstwbw.asc https://litter.catbox.moe/kqtgl2.jpg +--- 93223534 +>>93223426 +I hope I did it right! + +GPG is pretty great, I wish it has more widespread adoption among regular people. + +A couple questions though: + +Signing is just a verification step that shows I was the one who encrypted the file? So it would use my private key? + +Also, when I encrypt, is there a way to specify which particular key to sign with? Let's say I have multiple keys, etc. +--- 93225103 +>>93223534 +when encrypting, you address it to the receiver's public key and it has nothing to do with your private key. When signing, the person who receives your key has your public key, and the signing will indicate that this message was sent from you - I think. + +>>93223426 +>>93223151 +I've been gone for the day, I didn't receive either. In the next OP I'll make a note about using 12 hours whenever sending a message. +--- 93226987 +bump +--- 93229048 +bump x2 diff --git a/g/93217768.txt b/g/93217768.txt index a0eb3e436cec30ffeb5c7e5098d7c12c9ce55ee9..2d68f0af01c29c8b346069c565d69420127de003 100644 --- a/g/93217768.txt +++ b/g/93217768.txt @@ -98,3 +98,40 @@ L + generations exist + ratio + learn how the store works >>93218461 this don't use non-free hardware, simple as +--- 93224284 +>>93222754 +t. poorfag +--- 93224311 +>>93217768 (OP) +>can't copy drivers over +stopped reading there, debian by far has the BEST method for installing packages offline, read the manual + +Ok I lied, I read a little more, ifconfig isn't a barebones tool and you typically only see that on RPM based distros out of the box, ip is a barebones tool. +--- 93224334 +>>93218495 +debian isn't really barebones, it comes with quite a bit of software out of the box actually, but it definitely isn't BLOATED by any means. +--- 93225775 +yes +--- 93226467 +JUST +--- 93227667 +>>93226467 +just what +--- 93227673 +>>93217768 (OP) +This is not real lol +--- 93227771 +>>93217768 (OP) +Installing Debian on a Macbook 1,1 went seamlessly for me. Maybe your hardware just isn't ancient enough. +--- 93228194 +>>93217768 (OP) +Just use arch. It's the best distro because it has every package you could ever want. No other distros have this and it does just werk +--- 93228454 +broadcom moment kek + +here you go: +https://wiki.archlinux.org/title/MacBookPro11,x#Internet +--- 93228741 +>>93224284 +>waste more money to waste more time to suck more cock +the apple way diff --git a/g/93219003.txt b/g/93219003.txt index fcb77fbd30cbbd8f3579d9a550c6465c20ccf724..ed0cd2ac30b17d19a16ce0151420ba08b3658838 100644 --- a/g/93219003.txt +++ b/g/93219003.txt @@ -133,3 +133,96 @@ You're a retard congrats. Maybe if you said voltage instead of temperature. all cars are gay. so are all trucks made after ~2000. jeeps wranglers are the least gay current vehicle, but they got pretty gay after 2007 +--- 93223513 +>>93219003 (OP) +>buy Intel +>it burns your house down +>buy AMD +>it explodes +CISC virgins will never learn +--- 93223515 +>>93219003 (OP) +>100c +you didn't use enough thermal paste and you have parts of the cpu die not covered or you are using an air cooler. Switch to an aio 120 or 240 and reapply the thermal paste. I never see over 60c on my i9 13900k with a 240 aio rad. This is a user installation error. +--- 93223567 +>>93220049 +car analogies are for retarded boomers, get the fuck out. +--- 93223643 +>>93223480 +>jeeps wranglers are the least gay +https://www.therichest.com/expensive-lifestyle/8-surprising-things-a-mans-vehicle-says-about-him/ +you're not going to make it son +--- 93223687 +>>93220049 +easily the dumbest post I've read on this board +--- 93223700 +>>93223515 +It's aircooled. +--- 93223703 +>>93223515 +yeah I just tested a 120mm aio with my core i9 13900k and it never got above 88c with prime95. OP clearly didn't use enough thermal paste. You need a lot more than you would think. If you are seeing over 90c on 13th gen intel, USE MORE THERMAL PASTE!!!!!!!! +--- 93223717 +>>93223700 +user error. intel even stated that the i5, i7, and i9 need to be water cooled and thats why no air cooler was included with the cpu. this is entirely your own fault for not researching anything. +--- 93223846 +OP get the Deepcool LT720. It's uncontestably the best AIO for these processors. +--- 93223958 +>>93219943 +>Buys a K variant CPU only to lock it down +Retard +--- 93225446 +>>93223643 +>body on frame +>solid rear axle +>solid front axle +>4wd +>4hi/4lo +>manual transmission +>ground clearance +>world renowned engine until 2007 +--- 93225465 +>>93223958 +cant you not change the multiplier on non-K? this would mean K series are also the best for under-clocking +--- 93225683 +>>93223958 +He's right thought. You can't fix OP but you can lower the power limits on his retarded kneejerk purchases so it won't melt. +--- 93225731 +>>93223703 +>you need a lot more than you would think +I know you americans have never seen a vegetable in your entire lives + +IT HAS ALWAYS AND WILL ALWAYS BE A PEA SIZED DROP. A AVERAGE PEA. A SPHGERE ABOUT HALF THE SIZE OF YOUR PINKY NAIL IF YOURE A BOG STANDARD MALE. + +>more than you'd think. +No +--- 93225817 +>>93219003 (OP) +>100C +Not normally +>CINEBENCH R23 +Not normally either +--- 93225852 +>>93219003 (OP) +you need aio to cool these beasts +--- 93228361 +>>93225852 +>AIO +weak. get a custom loop loser +--- 93228843 +>>93219003 (OP) +>he fell for the e-cores meme +Just disable that shit altogether and get god-tier, more consistent performance +--- 93229062 +>>93228843 +I purposely bought a 13900K just so I could disable all the P-cores and have 16 glorious E-cores +--- 93229666 +>>93229062 +kek +--- 93229700 +>>93221823 +>cpu emits chekernov radiation +>save money on rgb +nice +--- 93229722 +>>93219003 (OP) +boil egg on it diff --git a/g/93219048.txt b/g/93219048.txt index c20af0aff42df19fe849448724c4c7aa3085cc90..52bffd415af9aed64949892c4982ccf66f6d2e64 100644 --- a/g/93219048.txt +++ b/g/93219048.txt @@ -21,3 +21,48 @@ I'm doing my part and saving high res porn pics using 4archive.org database. Are https://archived.moe/talk/thread/1694/ https://4archive.org/dump/4archive_images_only.zip Anyway, how many such holocausts of internet content has been there so far? Remember Megaupload? +--- 93223910 +>>93219048 (OP) +*plaps you* +--- 93224474 +>>93222082 +>Anyway, how many such holocausts of internet content has been there so far? +Tumblr, Tiny pic, Image Shack, Rapidshare. +Nothing lasts on the internet anymore. +It's as if the link rot happens after only 2 weeks. +--- 93224566 +>>93224474 +Has Newgrounds cucked out over anything? +--- 93224617 +>>93224566 +Anything that had copyrighted music +Numa Numa guy, that What Is love music video, etc. +But the wayback on archive.org saved most of it. +It's still great for uploading nsfw content +--- 93224779 +>>93219048 (OP) +So is it completely a guarantee that content uploaded anonymously is being deleted? I've uploaded images over the years to there so I'm wondering if I need to back them up? +--- 93227764 +>>93224779 +>I've uploaded images over the years to there so I'm wondering if I need to back them up? +Yes, you do. +Unless you no longer care about them. +--- 93228467 +>>93219048 (OP) +Good. Christ is King +--- 93228486 +>>93219048 (OP) +Ok, will try. I'll get back to you in a decade. +--- 93228525 +>>93219048 (OP) +>say "men are not women" on reddit +>deleted, banned, "you deserve it you nazi this is a private company" + +>post porn on imgur +>deleted, banned, "nooooo you cant just delete my addictive degenerate pornerino, so what its a private platform, we dont deserve it!!!" +--- 93228602 +>>93219048 (OP) +old news, also nothing to do with freedom +--- 93228791 +>>93219048 (OP) +Good. Bad content shouldn't be saved. diff --git a/g/93220546.txt b/g/93220546.txt index 5b90f03837f42de4948f50b993ee5719b74b14d1..df50d3d0ed4dc03e3ac2d57b41c28443710c59bf 100644 --- a/g/93220546.txt +++ b/g/93220546.txt @@ -27,3 +27,63 @@ https://othacehe.org/wsl-images-for-guix-system.html >not a problem >https://packages.guix.gnu.org/packages/docker/20.10.17/ yes, a problem. why is this so fucking out of date. and this is not the only package out of date. how is this acceptable? +--- 93224250 +>>93222507 +Not him, but why do you need Docker when you have Guix? +Guix deprecates Docker. +--- 93224285 +>>93224250 +>>93222296 +exactly, those who can't into Guix doom themselves to bitrot +--- 93224288 +>>93224250 +by asking this question it reveals you to be retarded. you don't know what docker is for, you don't know what kubernetes is for, you literally don't understand anything about deployment. guix and docker have nothing to do with one another. guix and docker aren't even related in the slightest +--- 93224405 +>>93224288 +What problems does Docker solve that Guix can't? +--- 93224558 +>>93224405 +ill say it again, you don't understand what docker or kubernetes even is and you don't understand deployment and its problem. by continuing to ask this question it shows you're a moron and don't understand the purpose of either and how guix has nothing to do with them. and you can't even comprehend how you don't understand. you just think you're right about something about guix. stop making your tools your religion you failed amateur +--- 93224584 +>>93224558 +Why can't you just use Guix in place of Docker for deployment? +--- 93224624 +>>93224584 +holy shit you're stupid, you don't even know why, keep asking the same question over and over +--- 93224638 +>>93224624 +Because you never answered it, you just keep dodging the question. Insults are not arguments. +--- 93224673 +>>93224638 +not interested in spoon feeding guix amateurs. if you don't understand complex deployment then of course you'll think guix will solve your tiny little local problem lol. guix users are hobbyist tinkerers +--- 93224699 +>>93222507 +>docker +Deprecated by Guix Chad Pack™ +guix pack -f docker -S /bin=bin emacs neovim nano ed +https://guix.gnu.org/manual/devel/en/html_node/Invoking-guix-pack.html +--- 93224714 +>>93224673 +Clearly you aren't qualified to answer. You'd need to actually understand Guix to do it. +--- 93224716 +>>93224699 +this is nothing to do with deployment. guix users are pretty stupid +--- 93224882 +>>93224716 +Read nig/g/er +https://hpc.guix.info/blog/2021/10/when-docker-images-become-fixed-point/ +--- 93225133 +>>93224882 +LOL you have no clue what deployment is. keep scrambling you dumb guix retard, pretty funny to watch you try to figure things out with your little toy distro +--- 93226042 +>>93220546 (OP) +NKDS suika-chan +--- 93226272 +>>93220546 (OP) +n@k@d@shi +--- 93228193 +>>93220546 (OP) +nix is better in every way +--- 93228252 +>>93222001 +I'd be happy either way honestly diff --git a/g/93220633.txt b/g/93220633.txt index 782550592218e40484efa220bdbac47f20d13b74..dcf25af5e03fd283f1a4fe11ebf39db4dcde6dbd 100644 --- a/g/93220633.txt +++ b/g/93220633.txt @@ -244,3 +244,208 @@ Firefox is the most Jewish company on that list. --- 93223414 >>93223336 Kek +--- 93223638 +>>93223182 +It doesn't. If anything, they're just collecting a check from Google for implementing something that most people use anyway (and anyone who doesn't is free to change it anyway). Google bots gonna bot +--- 93223666 +>>93223109 +https://blog.google/inside-google/company-announcements/commitments-racial-equity/ +Alphabet sisters.....not like this... +--- 93223667 +>>93222222 +dangerously based +--- 93223692 +>>93223357 +Jews are pretty based though. They went from being literally genocided to ruling the world with just their bootstraps. It's no wonder incels let them live rent free in their heads, they've accomplished nothing while jews have accomplished everything. +--- 93223726 +>>93223692 +Hmm, I wonder what your phenotype is... +--- 93223773 +GNOOOME WEB!! +--- 93223781 +>>93223726 +I'm an incel. I seethe about jews daily +--- 93223797 +>>93223773 +That's chromium. +--- 93223823 +>>93223797 +no, it's webkit +--- 93223833 +>>93223823 +Which is another word for blink which is what chromium means. +--- 93223864 +>>93223833 +webkit is not blink. blink is a fork +--- 93223876 +>>93223864 +Exactly, therefore it's the same thing. +--- 93223917 +boo +--- 93224123 +>>93220859 +kys christfag +--- 93224124 +>>93220664 +It doesn't matter, Google is still 99% responsible for all the Brave code, and the Brave developers are entirely dependent on Google for security updates. +If Google says no more manifest v2, Brave has to accept it in the end. +Also if you're using Chromium anyway, Ungoogled Chromium is better. +>>93220901 +Moron. +--- 93224136 +>>93223109 +are you seriously idiotic enough to believe this doesn't apply to literally every single corporation? even your brave developers virtual signal. +--- 93224189 +>>93224136 +Kek +You paid firefuck shills are hilarious +--- 93224312 +Brave runs the fastest in my old computer desu +--- 93224427 +>>93222222 +supreme waste of digits +--- 93224443 +>>93221319 +>I actually like my dick raw +Firefox is shit tho. All they had to do is deliver a better working product +--- 93224511 +>>93224427 +youre just buttmad he is right +--- 93224669 +>>93224511 +right about >buzzwordsbuzzwordsbuzzwords? +--- 93224692 +>>93224669 +Right about what the mozilla foundation donates to and supports, yes. Call it buzzword soup but its not wrong. +--- 93224717 +>>93222222 +--- 93224831 +>>93220654 +>Use Pale Moon +At that point you'll be better using lynx +--- 93224915 +Isn't firefox run by trannies +--- 93224925 +>>93220633 (OP) +Linux comes with Firefox as default browser so yes. +--- 93224939 +>>93222550 +you know you can browse the internet through the command line? +w3m or lynx +--- 93224943 +>>93220633 (OP) +ungoogled chrome feels faster than firefox nightly, anyway which browser do you use? +--- 93224946 +>>93224915 +All tech companies are run by trannies +--- 93224958 +>>93224692 +it's wrong from the perspective that everyone from brave to microsoft to google is also pozzed +no idea about pale moon but probably them as well +--- 93224968 +>>93223357 +>Google is founded by two jews +>Not jewish +Hmmm +--- 93225010 +>>93220633 (OP) +using a dead lgbtqduxcz supporter browser with shit performance is the right thing? +thanks but I'm sticking with brave +--- 93225077 +>>93224943 +qutebrowser +--- 93225232 +>>93220633 (OP) +i thought i had gotten used to mozilla's pozzed silicon valley grandstanding, but then i read this blogpost they just published (https://blog.mozilla.org/en/mozilla/mozilla-social-mastodon-private-beta-announcement/) and i'm so disgusted by it that i'm starting to consider moving back to pale moon, something i thought i would never do. i hope every single high-level mozilla executive, mitchell baker and steve tiexiera included, gets abducted and sewn together into a modern day human centipede so they can writhe in agony and subsist off each other's bodily fluids in a dark miserable cell deep underground for all eternity. fuck them for willfully letting jewgle cuck them and take over the web, fuck their useless vassal corporation, and fuck their rotting corpse of a browser +--- 93225290 +I use both. Been doing it for years. That way if one browser becomes unusable, I can continue using the other without being mad. +--- 93225702 +>>93220654 +>funding search engine preferences = using chromium botnet infrastructure +just use DDG. Problem Solved. +--- 93225780 +>>93225702 +*use mojeek. DDG is just a more censored Bing frontend +--- 93225793 +>>93220633 (OP) +Why is this meme always done the wrong way around? In the movie Spider Man puts on his glasses on and everything is blurry because the spider powers fixed his eyesight +--- 93226334 +>>93224958 +>it's wrong from the perspective that everyone from brave to microsoft to google is also pozzed +Of course they are, its just picking the lesser of the evils. There really is no other choice, unfortunately. +--- 93226954 +>>93220633 (OP) +Mozilla is basically controlled opposition at this point and only exists so Jewgle can ward off antitrust lawsuits. The W3C, being Jewgle's bitch, approves anything the latter implements, making it impossible for any independent browsers to keep up unless they're backed by an organization the size of Amajew. +--- 93227287 +>>93220633 (OP) +>>93220654 +this +>>92971806 → + +botnet begone. use mullvad/tor/firefox/librewolf/palemoon +if you're using qtwebkit-based browser such as otter/falkon I recommend changing your useragent to the latest googlechrome/chromium so that gmail doesn't lock you out "for using unsupported browser" +--- 93227325 +>>93220633 (OP) +Nah, I'll stick with Pale Moon, thanks. +--- 93227434 +>>93220633 (OP) +but why does it hog more ram than chrome? it always crashs because of memory +--- 93227474 +>>93221319 +based and /thread +--- 93227514 +>>93220633 (OP) +i use the botnet because im not a sperg or a schizo +--- 93227682 +>>93227434 +chrome is a ram nightmare, chromium based browsers however do it better for some reason +--- 93227696 +>immune to manifest v3 +>works best with ublock +>not cucked +yep, I'm thinking based +--- 93227698 +>>93225232 +move to a firefork that actually works +--- 93227789 +>>93220633 (OP) +I use an outdated fork of an outdated fork of firefox. I am not part of the google botnet. +--- 93227797 +>>93220633 (OP) +I use Firefox not because of any opposition to Chrome or Google, but because I really, really value the Containers feature. +--- 93228130 +>>93220633 (OP) +--- 93228772 +>>93227698 +such as? +--- 93229119 +I get where you're coming from but Firefox is just garbage compared to Chromium so I'm sticking with Ungoogled Chromium. +--- 93229166 +>>93220913 +based +--- 93229233 +>>93226954 +what in the fuck are you saying +--- 93229304 +>>93228130 +Why did you remove Chrome, Brave and Firefox? Do you seriously think Google isn't jewish? +--- 93229322 +this still makes firefoxchuds seethe + +>Firefox is sometimes recommended as a supposedly more secure browser because of its parent company's privacy practices. This article explains why this notion is not true and enumerates a number of security weaknesses in Firefox's security model when compared to Chromium. + +>Firefox fully rolled out their Fission project in Firefox 95. However, Fission in its current state is not as mature as Chromium's site isolation, and it will take many more years for it to reach that point. + +>Excluding the issue of site isolation, only the Firefox sandbox on Windows is even comparable to the Chromium sandbox; however, it still lacks win32k lockdown. Win32k is a set of dangerous system calls in the NT kernel that expose a lot of attack surface and has historically been the result of numerous vulnerabilities, making it a frequent target for sandbox escapes. Microsoft aimed to lessen this risk by introducing a feature that allows a process to block access to these syscalls, therefore massively reducing attack surface. Chromium implemented this feature in 2016 to strengthen the sandbox, but Firefox has yet to follow suit. + +>Firefox's sandboxing on other platforms, such as Linux, is significantly worse. The restrictions are generally quite permissive, and it is even susceptible to various trivial sandbox escape vulnerabilities that span back years, as well as exposing sizable attack surface from within the sandbox. + +>In general, Chromium's multi-process architecture is significantly more mature and granular than that of Firefox, allowing it to impose tighter restrictions upon each part of the browser. + +https://madaidans-insecurities.github.io/firefox-chromium.html +--- 93229452 +>>93229322 +>Google Chrome is more sec- *manifest V3 renders your blockers useless* ACK! +--- 93230205 +>>93220633 (OP) +imagine not knowing or caring about the only thing that actually matters - the gecko rendering engine diff --git a/g/93220814.txt b/g/93220814.txt index 4cd502e81a8ca44b3dcbb8f6b7a806c2b26bbeb8..31fe42845bf62937ac0bbae05b2c166a9c032cf3 100644 --- a/g/93220814.txt +++ b/g/93220814.txt @@ -60,9 +60,6 @@ fine by me if nazis get hacked. --- 93222699 >>93222689 correct, mozilla are trans nazis ---- 93222807 ->>93220814 (OP) -YWNBAW --- 93223017 >>93221557 looks like ublock works best with my power utility company that fired tons of staff that actually worked on maintaining the grid and instead invested everything in scam start-ups and political campaigns @@ -70,3 +67,25 @@ tl;dr I win --- 93223401 >>93220814 (OP) The meme is wrong, he is supposed to see better without glasses. +--- 93223721 +gnome web +--- 93223789 +>>93220814 (OP) +brave shields literally works better than ucuck gorigin +--- 93226058 +>>93223789 +Nobody cares about your crypto botnet scamware. +--- 93226107 +>>93220814 (OP) +WebKit? +Also whatever the fuck shits like Falkon are based on. +Also brave is just fucking Crypto scam miner pretending to be a browser. Absolutely biggest form of faggotry. Avoid unless you like taste of horse cum. +--- 93227281 +>>93226058 +>crypto botnet scamware +What :O +--- 93228790 +>>93220814 (OP) +>caviar is the best seafood +>therefore a tuna steak is bad +this logic here is terrible diff --git a/g/93221109.txt b/g/93221109.txt index c936d454760f8a72033e2bf462670d21ecc56f54..52869de09407c9b03f6acf6fd3a6c933942c2eb3 100644 --- a/g/93221109.txt +++ b/g/93221109.txt @@ -48,3 +48,37 @@ But who does that? Seriously, Azure is a failure. --- 93223370 >>93221109 (OP) I do, but mostly because I'm used to typing it in the scripts I make. +--- 93224332 +>>93223370 +The powershell extension in vscode can automatically expand aliases for you when you format the document, dont need to type it out manually. +--- 93224536 +I see you just don't understand powershell verbose. It especially exists so there is no need to memorize short forms but the keyword is also the meaning of it. + +This is especially useful in powershell scripts. + +Also, you should notice the beginning Get--- +The VERB says what you want to do. I want to get ...items. I want to Add---content. I want to Clear---history. I want to Invoke---commad. I want to Remove---job +--- 93224564 +>>93224332 +the powershell automatically finalises keyword by pressing tab 1 or 2 times. + +learn to use computers +--- 93224819 +>>93224536 +It's impractical (and tasteless) over-engineering which is Microsoft in a nutshell. +--- 93224889 +>>93221109 (OP) +i've typed gci on occasion to feel like a smartass +--- 93224937 +>>93224536 +>>93224819 +linux users be like +>ah yes, i would like to fsck and touch that cp. +--- 93226530 +>>93221289 +I once installed powershell on a Linux vps because every other tool I tried failed to dump a remote database with non-Latin characters correctly. +--- 93227278 +>>93221109 (OP) +--- 93227758 +>>93226530 +Are you sure it didn't just fuck up the data with replacement characters? It does that in my experience diff --git a/g/93221268.txt b/g/93221268.txt index 6fdeb75542d3caf955dca977c7f2f62da662854a..ea100b1193e22c32d2502d9accbf3f63afe2e298 100644 --- a/g/93221268.txt +++ b/g/93221268.txt @@ -47,3 +47,108 @@ Simple as that. >>93223169 >Emacs > vim Emacs is the only meme on /g/ worth falling for. +--- 93223656 +even emacs has a better vim than vim +--- 93224261 +>>93223169 +/thread +--- 93224326 +>>93221268 (OP) +vimchads (not the country, the archetype) are too busy using the tool instead of ricing it. +--- 93224340 +>>93221850 +evil-mode is a broken, incompatible piece of shit. Vim doesn't have this problem. Vim's non-hunspell-based syntax checking alone is a big enough reason not to use *m*cs +--- 93224374 +Groomers use emacs, they're grooming the board +Us vimfags are too busy being productive +--- 93224501 +Emacs is anti-utilitarian software, in the best possible way. How people use Emacs makes it conducive to interesting discussion. + +Vim is boring. Useful, but boring. +--- 93224503 +>>93221268 (OP) +Because there's no ricing in vim. In vim you setup some basic settings and some plugins if you need them and that's it. In Emacs they're ricing that shit all day for months and months and new packages are coming out every day almost. I myself prefer Vim, I set it up years ago and I use it, no discussion needed. +--- 93224522 +>>93224503 +To be more accurate, the problem is that it's impossible to have a working emacs package, so everyone someone wants more functionality they install a package, then spend months writing code to make it compatible with all other packages to avoid some messy and buggy interactions, then more months to correct all kinds of bugs in established packages. +--- 93224567 +>>93224340 +It's a pretty good approximation. It will never be exact, because some things don't make sense to copy over to emacs, but I think it does a good job of providing a vim-like facade to emacs. +--- 93224621 +>>93224501 +>Emacs is anti-utilitarian software, in the best possible way. How people use Emacs makes it conducive to interesting discussion. +>Vim is boring. Useful, but boring. +this is actually a decent comparison between the two +--- 93224634 +>>93224567 +It is a decent approximation now IN ISOLATION and that's it. Decent means it's not good. Does it even do tabs yet? Last I checked you needed to add yet another package for that. You also needed to use some trick to get visual-mode working. Those are pretty fucking basic. Also, it completely breaks when interacting with any other package, which is why there are 36 bla-evil package to do some compat stuff for it, which is insane. +Actually the problem is just that: it DOESN'T provide a vim-like facade to emacs but rather 1- tries to copy vim and 2- fails in some important classes of case which makes the experience jarring (as opposed to, say, a general modal mode for emacs -- I know there are several of these but they're even more broken and can't even express most emacs verbs correctly) +--- 93224640 +>>93224340 +>*m*cs +Coward +--- 93224710 +>>93221286 +>stallman +>anonymous +>me +all emacs users I'm aware of are pedophiles +--- 93224747 +>>93221779 +I can not fathom changing editors. Ever. +--- 93225328 +>>93224634 +vim is a better editor, I only see myself using emacs if I don't want to constantly switch between web browser, mail client and music player? modern computer can run all of those and seamlessly switch between all of them. I don't see a reason to use emacs when vim or something much better like vscode exist. You faggots keep wasting your time fighting over your favourite text based editors in the meantime when I get some actual work down +--- 93225431 +Nobody cares about vim. This thread will die. +--- 93225596 +>>93221268 (OP) +>is /g/ an emacs board? +yes +>no love for vim? +yes +>not enough interested vim users? +yes +>picrel. +no +--- 93226262 +Jesus fucking Christ this thread reeks of unwashed smegma encrusted virgin foreskin. Vscode has dominated all your shitty terminal editors. The editor war ended a long time ago. +--- 93226306 +>>93226262 +VSCode will die sooner than emacs +--- 93227070 +>>93226306 +So? It will just be replaced by something better then. Sticking to one unchanging thing for 40 years isn't a particular advantage. By using newer stuff you can discover ways of doing things that you didn't even think about before. Like, vscode's ssh capabilities destroy TRAMP completely and neo/vim doesn't have anything like that at all. +--- 93227132 +vim is a phenomenal text editor that can't seem to do anything else right +emacs was originally a comparable text editor +but it isn't anymore +it's a screen orchestrator powered by lisp scripts and keyboard macros that notably features a text editor + +transplanting the vim text editor into emacs is common and uncontroversial because the text editing keybinds never had anything to do with what made emacs special + +if you customize vim enough to warrant a dedicated thread, you'd be happier in emacs +if you use emacs only for straightforwardly altering text files on a deadline, you'd be happier in vim + +emacs is not a competitor to vim, it's a competitor to the terminal emulator running vim +--- 93227215 +>>93227132 +nano just works +--- 93227310 +>>93225328 +>You faggots keep wasting your time fighting over your favourite text based editors in the meantime when I get some actual work down +Nobody who uses these text editors serious actually do that. Only underaged faggots or dimwit University students try to start console wars over text editors. + +>>93222563 +My config has barely changed for the past 3 years. Then again, I'm not some minimalist faggot and just use a batteries included config (i.e. Doom Emacs) and be done with it. +--- 93227379 +>>93227070 +>Sticking to one unchanging thing +Emacs in the 80s/90s is a different beast compared to nowadays, especially with huge communities behind the batteries included version. It's barely a terminal program at this point, since the gui interface is far superior. + +Also, a lot of features from contemporary editors get filtered to vim/emacs either way. You're not missing out on anything by not using the current flavour of the month editor. +--- 93227721 +>>93227215 +yeah, nano is actually a decent default to ship +it's only a text editor after all +but it's fun to bully people over diff --git a/g/93222136.txt b/g/93222136.txt index 3709638b3df199c77017aa37a0cd4e1f8b35a6a5..9b8a2011916c5d4294c9ac5eb1ba4b998cb8b17e 100644 --- a/g/93222136.txt +++ b/g/93222136.txt @@ -59,3 +59,66 @@ They were like 800 like 3 months ago new but maybe that ship sailed Yeah if there was a 3090 at that price I would have just went for that. --- 93222861 Well thanks guys this is all good information to know, guess I might just wait it out and see what happens. +--- 93224659 +>>93222136 (OP) +>4070 or 6950 +6950 + +>Or wait and see what's coming next generation +yes +--- 93225029 +just get a 6700xt or something cheap to hold you over, these current gen cards are scams +--- 93225558 +The only cards that make sense buying are ones with 24gb +Next gen games gonna need the vram and AI needs it even more. +So used 3090 or 4090, 7900xtx +If you can't afford that just skip this generation because with next gen they have to give us more vram. +--- 93227329 +>>93222136 (OP) +4070 Ti is best bang for buck overall for everything. AMD only does legacy gayming roughly equally while Nvidia curbstomps it in AI, decoding/encoding and VR. +--- 93227364 +>>93222488 +They didn't price it down, there simply is no demand for those. All 6xxx cards sell below msrp while Nvidia 4ks have 100-200€ premium at Jimms +--- 93227508 +>>93227329 +the ti is even worse than the regular 4070 in cost effectiveness. +--- 93227518 +>>93227508 +Nuh uh +--- 93227527 +>>93227329 +>>93227508 +4070 Ti is like 25% more powerful for 33% cost increase. Slightly less value, but both possible choices depending on how much power you need. +--- 93227590 +>>93222309 +>AI +3090 +--- 93227636 +Their year over year sales are shit right now, if you're not GPU-less let them stew for a while longer and offer up a good deal. +Just keep an eye out for a new Crypto boom-bust cycle or reports of corporations buying up all the GPUs for AI. +--- 93227680 +>>93225558 +Shouldn't the 16 GB on the 4080 be enough? +--- 93227709 +>>93222136 (OP) +There's literally nothing good enough coming out to merit a brand new gpu +--- 93227718 +>>93227709 +Stable diffusion and local chatbot gen. +--- 93227727 +>>93222136 (OP) +wait for RTX 5060 with same performance for only $549 +--- 93227773 +>>93222488 +They didn't price it down. Companies are just trying to shift the stock because once the 7800XT drops, the 6950XT is pointless. +That said, the 4070 will be markedly more efficient unless the 7800XT manages to shave 100w off the 7900XT and I doubt a 30% energy saving will happen, especially if AMD keeps the 7800XT at 16GB. +--- 93230567 +>>93225558 +this. picked up a 3090 on ebay, $820 in january. +--- 93230637 +>>93222537 +Save your money for a few weeks or months and get something good. I never understood why brainlets think they only have $800 and can't comprehend saving another $600 over the course of time. What is wrong with you? +--- 93230814 +>>93222309 +>and AI +Used 3090/3090ti, or if you can afford it, 4080/4090. With the 3090's you need to be ready to test their vram, and repaste/repad them if needed. diff --git a/g/93222172.txt b/g/93222172.txt new file mode 100644 index 0000000000000000000000000000000000000000..7338e7d9f6d81226a10314aeeb2f619532b874e3 --- /dev/null +++ b/g/93222172.txt @@ -0,0 +1,144 @@ +----- +--- 93222172 +/g/entoosisters....... I'm home +--- 93222229 +>ideapad with intel celeron +you made a terrible purchase +--- 93222264 +>>93222229 +it was bought for me ages ago, its just a spare computer i dont have a use for anymore +--- 93222276 +>>93222264 +terrible computer for gentoo. kys +--- 93222471 +>>93222264 +excellent computer for gentoo. lys +--- 93222551 +>>93222264 +okay computer for gento. sys +--- 93222593 +>>93222172 (OP) +>1366x768 +--- 93222662 +>>93222229 +you "need" more? +--- 93222670 +>>93222551 +Suck yourself? Suicide yourself? Success yourself? Shit yourself? +--- 93222708 +I've been using gentoo when some of the people ITT still shit their pants (longer than two weeks) + +I got away from it. It's terrible. Can't stand it anymore. +--- 93222777 +>>93222172 (OP) +I also installed gentoo couple days ago. Last time I installed one was 4 years ago. +Custom manual kernel, efistub boot (no bootloader), custom minimal initramfs embedded in kernel, root LUKS encrypted. It almost booted on first try, I typo'd one of the commands in the initramfs init script. +Have a similar setup on my desktop. + +>>93222708 +Why? I've been using it on my desktop for years and it's just comfy. +Not sure how using it on a laptop will go but distcc will save me. +--- 93222822 +>cant even take a screenshot +*BREATHES IN* +ELLLLLLLLLLLLLLLLLLLLLMAOOOOOOOOOOOOOOOOOOOOOOOOOOO +--- 93222984 +>>93222276 +>>93222471 +>>93222551 +we did it reddit! +--- 93222987 +>>93222777 +endless compile times even for the slightest system changes, weird decisions by package maintainers (users/groups as packages auto-added for example) tons and tons of python. Illogical dependencies that actually don't exist. (= low quality of many packages) + +If you then try to be minimalistic with useflags, usually shit just breaks because neither the programs in question nor the dependency is really all that flexible. + +It didn't use to be that bad but now it is and before I switched away it often felt like I'm just fighting against the maintainers to have the system the way I want. I always won, but it wasn't fun. +--- 93223029 +>>93222172 (OP) +>took a screenshot from phone bc doesnt know how to do it in gentoo +--- 93223210 +>>93222987 +Python is an eternal source of mild annoyances but I've not really had any of those other issues you've listed. Though I don't follow things too closely, I'm quite hands-off about maintaining my system. From the beginning my #1 priority was to make the system easy to maintain, not do crazy poorly-supported-but-possible customization and such +> Illogical dependencies that actually don't exist. +You did file bug reports, right? +>If you then try to be minimalistic with useflags, usually shit just breaks because neither the programs in question nor the dependency is really all that flexible. +Can you give me an example? Genuinely curious, never had an obvious breakage with the useflag system. +Though my useflags aren't necessarily super minimal, but it's mostly devstuff I've accumulated over the years. +DONT_USE ="-pulseaudio -consolekit -udisks -policykit -bluetooth -wayland" +USE_MISC = "kdrive redistributable unknown-license drm staging" +USE_MULTIMEDIA="ffmpeg vpx png jpeg gif cue flac mp4 aac opus vorbis wavpack mad cdio openimageio v4l imlib tiff gphoto2 fdk lcms libplacebo" +USE_AUDIO ="alsa" +USE_GRAPHICS ="X xinerama xephyr kdrive vulkan gtk gtk3 cairo zink nvidia" +USE_MAIL ="imap smtp pop" +USE_CRYPT ="cryptsetup tluks1_default openssl ssl sasl" +USE_LANGS ="lua luajit" +USE_FONTS ="xft otf npm icu 256-color fcitx4 bzip2" +USE_VIRT ="spice libvirtd usb usbredir macvtap virt-network ovmf sdl parted" +USE_SYSTEM ="dbus udev opencl openmp" + +USE="${DONT_USE} ${USE_VIRT} ${USE_MULTIMEDIA} ${USE_AUDIO} ${USE_GRAPHICS} ${USE_MAIL} ${USE_CRYPT} ${USE_LANGS} ${USE_FONTS} ${USE_SYSTEM} ${USE_MISC}" + + +Rate useflags thread? Can we have one? I'm betting the thread being dead before anyone else posts theirs ... +--- 93223491 +>>93222822 +>>93223029 +how do you take a screenshot without a GUI +--- 93223508 +>>93223491 +cat /dev/fb0 > screenshot.bin +--- 93223527 +>>93223491 +>how do you take a screenshot without a GUI +>he doesn't know +--- 93223569 +>>93223527 +thats why i asked. +also, I know ways to do it, I asked how YOU do it +--- 93223597 +>>93223508 +and then what +--- 93223608 +>>93223597 +I don't know +--- 93223609 +>>93223569 +i aint yo fuccin help desk nigga u fin it out +--- 93225594 +>>93223609 +i already know how to do it though. i just want to know how you do it +--- 93227649 +is there a way to run gentoo without dependency conflicts ruining my life? +maybe I could torture it into a gobolinux filesystem type thing +how do you like the release cadence? +--- 93227894 +>>93222777 +>Why? +Not him, but when I used it, it was a timesink that made me miserable, and I stuck with it for so long because I couldn't be bothered to switch, until I finally gave in and hopped to a different distro. +>>93223210 +>From the beginning my #1 priority was to make the system easy to maintain, not do crazy poorly-supported-but-possible customization and such +If you have to 'plan' how to maintain a system, and have to 'maintain' it beyond updating the packages once in a while, there's something wrong with what you're using (and perhaps you too). Personally, I want my shit to just werk and not have to keep a close eye on it. It mustn't break. +--- 93227907 +>>93222670 +sys folder +--- 93227922 +>>93223597 +smoke crack to cope with your situation + +seriously tho upload via lynx +--- 93228244 +i know this isnt a support thread but how the fuck do you install a DE? +i read the handbook and installed gentoo but whenever i went to install xorg and xfce my system just didnt want to? + +im gonna have to try doing a fresh install again but man trying to learn gentoo makes me feel retarded +--- 93228348 +>>93227922 +how do you turn a .bin file into an image +--- 93229426 +why does everyone say the gentoo install handbook is so phenomenal? am I reading the same one? +it could be a whole lot worse but it still won't work first try unless you already know half the shit +even just some well placed wikipedia links for context would go a really long way +--- 93229516 +>>93222172 (OP) +have you got your programming socks, buttplug and HRT yet? Those are a basic necessity for Gentoo users diff --git a/g/93222353.txt b/g/93222353.txt index 7977e7de855296f011337482f0f9c72ac6ae7d26..fd8fd53b1d9edc0ceb6ba069c0e03fc946c3641c 100644 --- a/g/93222353.txt +++ b/g/93222353.txt @@ -25,3 +25,112 @@ Memes really write themselves. he looks like what i imagine all of you faggots look like if you're not a trannie. --- 93223127 he's really obese. notice he never stands up. noticed you've never need pictures of his body or legs. sad. he's fucking fat and gross. i bet he's a virgin +--- 93225138 +>>93222353 (OP) +you guys are going to shit on me for this one but this guy isnt that bad and is honestly the only linux techtuber I've ever seen that seems like he knows what the fuck he is talking about and has a sane perspective on linux that most people would agree with +--- 93225499 +>>93222353 (OP) +This guy helped me fix gdm so yes. thanks to his ly video. +--- 93225795 +>>93223127 +no one cares if he's fat or obese, as long as he make good linux tutorial videos, he is good +--- 93225823 +>>93225795 +i care. him being fat and obese is the main draw for me +--- 93225845 +>>93225795 +If people are lazy with their body they will be lazy with other things. + +GNU/snorlax here is a prime example of that. +--- 93225877 +>>93225823 +There is a difference between finding a guy who makes good tutorial videos and finding a boyfriend +--- 93225880 +>>93225845 +>GNU/Snorlax +my fucking sides +--- 93225942 +>>93222353 (OP) +Stop looking for YouTubers to devote your life to lmao +--- 93226414 +>>93222631 +Lmao I was gonna say, it's HIM +--- 93226431 +>NOO YOU HAVE TO BE JAKKED AND ATTRACTIVE TO USE MY SEKKKRET OPERATING SYSTEM +--- 93226616 +he's pretty fair and cultivates a community with real conversations +far from my favorite but maybe the best "golly fuckin gee, check out this distro/DE" tuber since distrotube started veering into boomer vlog territory + +he should really switch from facecam to b-roll though +the "ugly people are wrong" brainworm works every time on /g/ and many other communities +--- 93226651 +>>93226431 +>NOO YOU HAVE TO BE A FAT UGLY SLOB TO BE A REAL VIRTUAL DAD +--- 93226683 +>>93226651 +why do you concern yourself so much with another man's appearance, what are you a faggot? do you want to have gay sex with this man? +--- 93226708 +>>93226683 +I'm not the one who made this nuthugging thread about him you mongoloid gorilla nigger +Holy fuck fatherless zoomers need to be shot in the head +--- 93226753 +>>93225845 +an hour spent at the gym is an hour not spent with computers +tech wizards need to be fat +--- 93226784 +>>93226708 +>zoomers are ... LE gayest generation +>but I want my e-celebs to be attractive so I can jerk off to them +>n-no I'm not like those zoomers +--- 93226792 +He certainly looks it +--- 93226800 +>>93226784 +Speak english you fucking ape +--- 93226832 +>>93222353 (OP) +bless this guy +I know nothing about computers and he helped give me a sick setup +--- 93226854 +>>93226800 +That's how (you) sound, ass fucker +--- 93226878 +>>93226854 +>N-no u +Wait until you graduate high school before replying you worthless shit +--- 93226913 +>>93222353 (OP) +Why do you need a guy? Why can't you be your own guy? +--- 93226955 +>>93226913 +A disconcerting proportion of zoomers (and even late millennials) lack both a father figure and enough autonomy to think and act for themselves and put random literal who degenerates from the internet onto a pedestal in order to navigate reality +--- 93227243 +>>93222353 (OP) +Luke Smith will never be /ourguy/ simply because he doesn't want to, it directly contradicts his belief of not relying on internet interactions for socialization. A better fit would be Kenny +--- 93227260 +>>93227243 +Luke Smith is a larper who's addicted to /g/ +--- 93227267 +>>93227243 +you guys are gay nazis +you're not supposed to have a dad +--- 93227979 +>>93227243 +Luke is the original prince of /g/. Mental outlaw is more active on /g/ though. +--- 93228430 +>>93226753 +>an hour not spent with computers +That's a good thing. +--- 93228489 +>>93222353 (OP) +>makes a video about privacyvsearch engines +>dismisses half because "I don't care for it" +--- 93228533 +Stop using youtube. If you use Linux and use youtube you should kill yourself. +--- 93229953 +>>93227243 +>it directly contradicts his belief of not relying on internet interactions for socialization +it's not a belief, it's a pretense. he's a hypocrite, he says he doesn't rely on the internet but does the exact opposite. he has an army of internet simps who provide for him ffs. +--- 93230110 +>>93222746 +kek diff --git a/g/93222784.txt b/g/93222784.txt index f1930aaf714e4be4fc4c170d7c21426ad6bc604a..e6a197b979708d400ff07d26a6627230c21c192e 100644 --- a/g/93222784.txt +++ b/g/93222784.txt @@ -34,3 +34,305 @@ do the needful on the BLUTOPIA sirs Why do some trackers thrive while others fail? What makes people choose one new tracker over another? --- 93223014 is there a path to TTG sirs??? +--- 93223877 +uhh how does this equal negative buffer when it's above 0.6 ratio +--- 93223906 +>>93216654 → +>>93217465 → +I think he's been clean since he got released from jail (unrelated to nyaa) +Might not even be involved anymore +--- 93223926 +You know, there's several requests on BTN that could easily be filled with cross seeding from HDB (not on there but I know the releases are on there via a friend),with millions of BP. Is there just no motivation? +--- 93223947 +>>93222891 +>Why do some trackers thrive while others fail? +More money to use, better devs, better economy, better community. If you see a tracker constantly begging for money, it's going to die. If they rarely ask for donations, it's going to be around for a long time. That's what happened with THC. + +>What makes people choose one new tracker over another? +More content, better website, better community. +--- 93223954 +>>93223926 +You're starting to understand why the RED economy works the best. +--- 93223980 +>>93223926 +>You know, there's several requests on BTN that could easily be filled with cross seeding from HDB (not on there but I know the releases are on there via a friend),with millions of BP. Is there just no motivation? +It's that most people on BTN are not on HDB. +--- 93224010 +>>93223980 +I am on HDB but not BTN +--- 93224034 +is idc just /b/ with usernames? +--- 93224046 +>>93223980 +I guess in this case I would be asking people on both sites +--- 93224170 +what tracker has this? +https://www.imdb.com/title/tt2201890/ +--- 93224195 +>>93224170 +Youtube has it +--- 93224204 +>>93224170 +snahp have +--- 93224238 +>>93224195 +>>93224204 +>getting your shit through HTTP protocol +--- 93224387 +>>93224204 +>>93224238 +>snahp has it but BTN doesn’t +Holy shit, private trackers BTFO +--- 93224394 +>>93224387 +mfw youtube literally dabs on BTN on this one +--- 93224400 +>>93224387 +if anon have btn... why he ask? +--- 93224408 +>>93224170 +That's weird. IMDB says there are only 20 episodes in 1 season but the trackers I'm seeing it on has 40 episodes in 2 seasons. +--- 93224437 +>>93224408 +maybe imdb is wrong? +--- 93224554 +>>93222784 (OP) +I need to find a very obscure album, what do you recommend? +--- 93224563 +>>93224554 +rutracker +--- 93224625 +>>93224554 +Soulseek. If it's not there, it doesn't exist. Also, youtube lol +--- 93224687 +>>93224554 +ebay +--- 93224688 +>>93224554 +Unironically? Go to a local record store and talk to the clerk, either absolute autists or boomers run them. +--- 93224727 +>>93224625 +>only one find +>it's scramoutcha +--- 93224777 +>>93224563 +>>93224625 +Already tried those, also, I found the download link in some russian forum but it was dead. I've tried searching on sites like 1337x and found nothing. + +These are the albums btw + +https://www.progarchives.com/album.asp?id=56283 + +https://www.progarchives.com/album.asp?id=50011 +--- 93224806 +/marking/ attempt +--- 93225086 +What trackers are good to autosnatch freeleech on? +--- 93225107 +>>93225086 +AB I guess? All the big shit is free leech +--- 93225174 +>>93224688 +>he lives in a place with a local record store +bruh +--- 93225208 +>>93222784 (OP) +bottom tier should be the meme trackers like sg and aom +--- 93225319 +>>93225208 +the stuff at the bottom is actually useful and just as hard to get into as meme shit +--- 93225374 +>>93225174 +Yes I live in a city that matters, not some backwater shithole or favela. +--- 93225388 +>>93225086 +For what exactly? +--- 93225396 +my faggot ISP blocked all ports I can't seed anymore :( I'm now a leecher +--- 93225480 +>>93225396 +even the http/https ports!? +--- 93225491 +I'm awaken SIRS +--- 93225492 +>>93225480 +>even the http/https ports!? +no +--- 93225513 +>>93225396 +UDP nigger +--- 93225567 +>>93225513 +>UDP nigger +I'm retarded please explain +--- 93225644 +>>93225567 +UDP should be accessible so you can Sneed via that +--- 93225663 +>>93225644 +>UDP should be accessible so you can Sneed via that +how can I setup that in qbittorrent and transmission? +--- 93225678 +>>93225388 +Building buffer +--- 93225758 +so many fucking torrents on RED are dead with 0 seeders... +--- 93225894 +>>93225758 +Click on peer list, they're not actually dead. RED servers are just slow to update those numbers. +--- 93225906 +>>93225894 +nothing on the peerlist, they are dead for sure +--- 93225916 +>>93225906 +Then they'll be gone in a week. Oh well. +--- 93226281 +How the fuck do I find shit to upload to PTP? +--- 93226642 +>>93226488 +everything on amazon and netflix is already there, i shit you not +--- 93227047 +It all sucks and soon we won't even be able to use it. +>Tor +50% of the exit nodes are owned by the feds +>Freenet, i2p +Dead, buggy and slow as shit +Lokinet is the only one that looks kind of promising but empty and everyone pretends it doesn't exist because if blypto or something +--- 93227066 +>>93226281 +theres no point in going past power user. find some obscure film on amazon, ebay, upload it and you're done +--- 93227107 +>>93226900 +>i2p +>Dead, buggy and slow as shit +иди нaхyй пиздaбoл, i2p этo гopaздo бoлee живoй, чeм вaшa глyпaя кpиптo-aфepa +--- 93227359 +>>93227066 +getting ready for BTN sire +--- 93227692 +>>93225086 +TNT +--- 93227971 +>>93227066 +>theres no point in going past power user +Why not? Isn't there anything interesting in the invite forums that require to go beyond PU? +--- 93227973 +>>93222784 (OP) +I don't torrent. It's too slow and having to use a VPN is a pain, as well as getting stable links in good quality. +Instead I use a closed off direct download site and download renamed files from Mega. New releases are usually up within the same hour and I can filter the bit rate and whatnot before even downloading. +Is this a retarded way? +--- 93228036 +>>93227973 +nah it's ok but private torrents are way better. +which site do you use? +--- 93228062 +>>93228036 +which site do you use? +--- 93228064 +>>93227971 +>Isn't there anything interesting in the invite forums that require to go beyond PU? + +nope. even BiB only requires 3 months and PU +--- 93228087 +>>93228062 +all of the top ones like ptp, btn, etc +i also use snaph, INI, and all the good usenet indexers. +I basically use it all because why not, it's free and easy. +--- 93228295 +what are the PTP requirements on BTN bros? +--- 93228406 +>>93227973 +I don't bother with a VPN, I just use a Seedbox and pull the shit I torrent with SFTP. I also don't use private trackers because I like the public aspect of piracy, and also most of them seem to have ratio requirements and other convoluted shit I can't be bothered to care about. The bandwidth isn't a problem, I seed the hell out of my torrents, but the private trackers I was on before seemed to encourage people to stay on top of recent torrents and hop on to see them or take advantage of free leech and other dumb shit, and even though I understand why they do it they'll also ban you for inactivity or penalize people who invited you. The donation begging and lotteries and whatever else they do, it's literally more of a hassle than just using a public tracker so I stopped bothering. +--- 93228453 +>>93228064 +And a fucking membership to some page where you need to doxx yourself and other stuff? +--- 93228517 +>>93224777 +>https://www.progarchives.com/album.asp?id=56283 +All links I've found are expired as well, good luck with that. +>https://www.progarchives.com/album.asp?id=50011 +It's on youtube. Patrician taste anon, I see you're a fellow Canterbury enjoyer. +--- 93228630 +ZLIB is down again. +--- 93228640 +>>93228542 +>>snahp +>Path? +make a DDL thread so people will offer snahp invites there. +--- 93228855 +>>93222784 (OP) +>ctrl f Match Case AB +>sigh +--- 93229018 +>>93228640 +Not the real path +--- 93229035 +>>93229018 +>Not the real path +what's the real path? +--- 93229113 +>>93229035 +I don't know. I'm waiting for somebody to tell me the real one, some loser with 0 iq keeps posting the fake one. +--- 93229137 +>>93229113 +how do you that he's telling you the fake path when you don't know what the real path is? maybe he's giving you good advice. +--- 93229539 +>>93224554 +check if it's ever pre'd on predb and if it has, request it in the red forums +--- 93229882 +The PTP recruiter on GGn, Faiyaz93 is an invite seller. He had an account on Torrent Invites by the name "Faiyaz93", which he later changed to "BeerusSama" (I wonder why). Briefly he changed his username to Galahal93 on some trackers. As an example, his username on AB is Galahal93. + +He has been selling/taking invites on Torrent Invites, such as - + +Desitorrents - https://torrentinvites.org/f30/10-x-desitorrents-invites-giveaway-479728/ + +SDbits - https://torrentinvites.org/f30/1-x-audionews-1-x-sdbits-invites-giveaway-544227/#post1298842 + +AlphaRatio - https://torrentinvites.org/f30/2-x-bit-hdtv-2-x-crazyhd-2-x-alpharatio-1-x-scenetime-invites-giveaway-473440/index2.html#post1183990 + +UHDbits - https://torrentinvites.org/f30/1-x-uhdbits-invite-giveaway-490843/#post1211288 + +Empornium - https://torrentinvites.org/f30/1-x-empornium-me-account-giveaway-493732/index3.html#post1211426 + +GGn - https://torrentinvites.org/f30/1-x-gazellegames-invite-giveaway-492014/#post1208252 + +Faiyaz93 also used to work as a moderator on HDT. He created the anime encoding group E.N.D for the sole purpose of getting his fellow countrymen into the top trackers. He currently resides in Mohammadpur, Dhaka, Bangladesh. He is the prominent ringleader of the notorious invite selling/trading Telegram group which originated from TorrentBD. He was heavily involved with TI.org when he started out his PT journey back in 2018. Private trackers are so sensitive with users that are involved with invite selling sites but how could they allow someone like Faiyaz93, who was truly involved with trading/selling on invite selling sites, is beyond anyone's comprehension. + +Some of his collaborators from TorrentBD/Telegram invite selling/trading group are - eXcommunicado, AmiHALAL, ANIMOUS, RakeshRaja, MrReMuX, Isaac_NewtonSir, Kvothe, Mr.Infinity, Musfiqeon, OhiVay, OCCiSOR, MiKA3LS0N, VoltaX, AceAres, RevenantJC, TeresianGeek, Dadavai, JohnDalton, WireShark, TwisteR, VaNGhoG, mikestronaer, BeyondeR616 +--- 93230377 +Private trackers + +home of brown people +--- 93230388 +>>93230377 +>Private trackers +> +>home of brown people +brown people typically HATE private trackers because they think everything should be open for them to shit in +--- 93230651 +Just finished watching Minions: The Rise of Gru (4k MA webdl from PASSTHEPOPCORN obviously… heh) and I can NOT believe that a 27 year old british motherfucker ENJOYS this shit!!!! Ain’t no fucking way!!!! + +- 312chad + +Also hi my dear niggers +R.I.P setsugen no ao you will be missed my friend ;-( +--- 93230687 +The user VoltaX, also known as "Ethan" from InviteHawk, is the Admin of the invite trading/selling site InviteHawk. + +He joined PTP/BTN through invite trading on InviteHawk in late 2022 and is currently looking to trade an invite to HDB/KG/TIK in exchange for PTP/BTN. + +He is also an active trader/seller of the infamous Telegram invite selling/trading group that originated from a Bangladeshi tracker named "TorrentBD" which specializes in selling/trading invitations to the cabal trackers. + +He publishes low-effort internal releases (mostly re-encodes) at TorrentBD, his home tracker. He releases by various name - ACiD, GGVolta etc. All in the hopes of getting into HDB/KG/TIK someday. +. +He is a Bangladeshi guy currently residing in Mohammadpur, Dhaka, Bangladesh. He is a muslim madarchod and fears allahu cuckbar a little too much. His real name is Ornob and he usesDOT Internet as his ISP. He is a third year CSE student at a private university in Dhaka. + +If you're looking for a way to get into PTP/BTN and have an HDB/KG/TIK invite to trade, contact VoltaX at any tracker (other than HDB/KG/TIK). He mostly uses the same username everywhere. You can also contact him at discord -VoltaX#5053 +--- 93230707 +Is there nzbs.in and omgwtfnzbs.me invite threads on AB and/or ggn? Don't care about torrents that much +--- 93230735 +>>93230707 +no but there's usenet threads where invites to all indexers get offered. +--- 93230761 +>>93230707 +If you suck engine9's dick he'll invite you to .in diff --git a/g/93222935.txt b/g/93222935.txt index 8ee712c71b54d0a82c328b991f2f2fccce7f8abb..fa9bc70c299096f4eacf87a0c34ba417f3ade2d3 100644 --- a/g/93222935.txt +++ b/g/93222935.txt @@ -36,3 +36,70 @@ Rust stops me from fucking up memory without intending to. i like python's list comprehensions vectorizing code is very easy in matlab C and C++ are fast +--- 93223546 +perl is the superior tool for the terminal and great for scripting +--- 93223568 +typescript makes transforming JSON datasets from kaggle so much easier because I can just load them in +--- 93223921 +>>93222935 (OP) +Bash is so readable +> "${ary[@]@Q}" +--- 93223936 +>>93222935 (OP) +English is a good language + +Joking ofc, C is great because pretty much everything can run it and it's fast as fuck +--- 93223961 +>>93223921 +BASH isn't a language, it's a shell, you might be thinking of BASH scripts but that still isn't really a language, although unironically if you can make good bash scripts then you could definitely learn something like Python with ease +--- 93223991 +>>93223961 +It's a programming language sir, the shell is merely a repl +--- 93224013 +>>93223991 +Hmmm, last time I checked, the Bourne Again SHell was, indeed, a shell +https://en.wikipedia.org/wiki/Bash_(Unix_shell) +--- 93224030 +>>93224013 +Samefag here, and before you say +>oh, it says command LANGUAGE right there! +a command language is not a programming language +https://en.wikipedia.org/wiki/Unix_shell +https://en.wikipedia.org/wiki/Command_language +--- 93224063 +>>93224030 +I program my computer with it +--- 93224083 +>>93224063 +That's more like instructing than programing. You aren't programming your computer, you're instructing it. +--- 93224090 +>>93224083 +Enlighten me. What's the difference between programming a computer and instructing one? +--- 93224126 +>>93224090 +Programming can be autonomous while instructing requires someone to actually intervene. I know where you're going with this by the way, you're going to try and say that scripts can be run autonomously but that is only with the use of services, which are programs that run said scripts for you. +--- 93224153 +Python is easy to read, and it runs natively on lubuntu +--- 93224172 +>>93224083 +You'd already won, anon. I'd let it lie, nothing good can come of this. +--- 93224200 +>>93224126 +I see, now I'm getting it. Thank you. +--- 93224256 +>>93224172 +Win? There's no argument here, I'm simply trying to educate is all, he asked the difference and I told him. +>>93224200 +Cool, if you have anymore questions, hopefully the next dude is cool too +--- 93226745 +>>93222935 (OP) +english is useful, i guess +--- 93228299 +Why did the OP pic got taken down? +Is the janny retarded? +--- 93228314 +>>93223080 +MSVC +--- 93228914 +>>93222935 (OP) +I just copy-paste the python scripts/java scriptlets that gpt-4 spits on me. Batch stuff even diff --git a/g/93222967.txt b/g/93222967.txt index d5eb172d6b97e02c904d0ff251b51f3e6415c411..40a139280aac7ebb0c21f1d6886818662dc0651e 100644 --- a/g/93222967.txt +++ b/g/93222967.txt @@ -18,3 +18,1315 @@ Remote diagnostic info for a billboard what can we do with this? (non coder) --- 93223462 bump +--- 93223492 +>>93223315 +>-273.15 +holy shit is this in the arctic or something +--- 93223531 +The IP is in Ely, Nevada +It's in a shithole town. I looked on google maps on both major roads that go through it but I didn't find any full LCD billboards +--- 93223536 +>>93223492 +I put some ice cubes really close +--- 93223540 +>>93223275 +not gonna happen my glowing friend +--- 93223572 +>>93223531 +Found it? +--- 93223585 +Neat thread +--- 93223704 +It's not password protected wtf. You could literally just change its image. +I'm not a shithead so I'm not doing that. +OP where did you find this IP? +--- 93223743 +>>93223704 +just shodan dorks +and yeah, no password +> 12.44.207.250/AMILOGGEDIN +> OK +--- 93223762 +>>93223572 +well that was fast +--- 93223810 +>>93222967 (OP) +https://www.exploit-db.com/papers/47535 + +How long till yall fuck it up +--- 93223815 +>>93223572 +when does google maps say that image was taken? i've been refreshing the page for a couple minutes and i havent seen any image that says "white pine county" +--- 93223862 +>>93223815 +--- 93223869 +>>93223862 +just saw it pop up +--- 93223882 +>>93223815 +https://www.google.com/maps/@39.2456548,-114.8701236,3a,39.3y,16.1h,82.47t/data=!3m6!1e1!3m4!1s4KW1RAsqZeWA1cOV9P8Rmw!2e0!7i16384!8i8192 +March 2023 +--- 93223937 +>>93223572 +Don't think so, doesn't look like the right kind of content +--- 93223952 +>>93223862 +>>93223937 +I stand corrected +--- 93223967 +investing in potential gold thread +--- 93223993 +Oh shiii +--- 93224002 +Don't do anything. It's not worth it. +--- 93224005 +>>93223492 +When was the last time you saw accurate temperature on a road sign? +--- 93224029 +>>93223492 +>>93223315 +pretty sure this is a webui interface for a cryogenic cooler, you're probably connected to an mri machine or like CERN +--- 93224048 +>>93224002 +/thread +--- 93224105 +>>93224002 +>It's not worth it. +whats the worse that could happen +its a billboard +--- 93224113 +>>93224002 +Pussy +--- 93224146 +>>93223704 +>>93223743 +interesting +--- 93224158 +>>93224002 +jailtime is absolutely worth putting up an image of black dudes kissing on a billboard that 5 people will see +--- 93224180 +Get me in the screencap +--- 93224194 +>>93223810 +can't get this to work, probably cause i'm just dumb +--- 93224221 +Whiskey status: poured +P-corn: in the microwave +--- 93224235 +brace for impact, something is bound to happen, someone will surely do something +--- 93224239 +>>93224029 +If that temperature readout is accurate, its at absolute zero, which has never been reached. If it isn't accurate, it isn't attached to an MRI or a part of some collider or something. +--- 93224242 +>>93224221 +What whiskey, fren? I typically go for a Hibiki or Alexander Murray +--- 93224255 +if /g/ gives me blue balls again I'm out +--- 93224277 +>>93223704 +How? I don't see any open control panel +--- 93224327 +>>93224255 +nothing is gonna happen. +--- 93224346 +>>93224327 +im doing something +--- 93224351 +>>93224346 +godspeed anon +--- 93224357 +thats a fucking honeypot +--- 93224359 +>yfw a nevadan soccer mom gets goatse'd +--- 93224360 +>>93223315 +Frozen caveman lawyer +--- 93224368 +>>93224346 +Don't do it. You might think you're just pulling a funny but if you expose a child to something bad you'll get a lot of bad attention +--- 93224377 +>>93224357 +not a honeypot, this software is just trash and has been exploited in the past +--- 93224415 +>>93224368 +im just pulling a funny +--- 93224422 +>>93224002 +>>93224368 +kinda glowing ngl +--- 93224428 +uh im retarded nigger what am i doing +--- 93224466 +Im penetrating the mainframe right now but i need someone to write me a GUI using visual basic +--- 93224490 +>>93223315 +>-273.15 +I'm gonna assume this is in °C? No way in hell this is real, absolute zero has never been achieved and never will. +>>93223492 +Probably bait or something, that temperature reading is impossible. +--- 93224523 +>>93224490 +I will achieve it, you just watch! +--- 93224535 +have u guys considered that the temp is just set to 0 which is formatted to that specific celsius reading +--- 93224544 +>>93224490 +The temperature sensor is probably just busted. The sign looks old and shitty +--- 93224599 +>>93224490 +I don't think it's -273 degrees Celsius anywhere in Ely, Nevada at the moment +--- 93224752 +So nothing happened huh +--- 93224772 +>>93224752 +im doing something but im really dumb and i may fail +--- 93224774 +>>93224523 +Good luck buddeh +>>93224544 +Probably, or maybe it's misleading on purpose, but that would be /x/ level of schizophrenia which is not rare on /g/ +>>93224599 +No doubt, but I'm not clicking that link, definitely not risking having my ip leaked because of some schizo thread on /g/, this shit glows. +--- 93224820 +>>93224772 +https://pastebin.com/raw/3qhHcQdw trying but i'm really dumb too, can't tell if this works or not. +was never good with ctfs anyway +--- 93224835 +>>93224820 +>https://pastebin.com/raw/3qhHcQd +dead link +--- 93224856 +>>93222967 (OP) +>Honeypot provides target +>>93224820 +>Honeypot provides tool +Please don't do it anon +--- 93224864 +>>93224835 +> https://pastebin.com/3qhHcQdw +try this +--- 93224872 +>>93224242 +Canadian club. My go to middle shelf +--- 93224880 +>>93224820 +Holy mother of skiddy cringe. Hello CIA, I see you're still using the l33t hax0r persona. +--- 93224883 +>>93224856 +It's definitely just some guy who is trying to get someone dumb on here to do his dirty work - because you'd have to legitimately be dumb to do this. +--- 93224888 +>>93224466 +I'm on it, but the best I can do is q basic +--- 93224905 +Someone fire up 7 proxy's 2 vpns and a double VM +--- 93224923 +>>93224905 +nested whonix vms just booted up +--- 93224931 +how do i hack it on windows +--- 93224951 +>>93224883 +im TOO dumb to do this +--- 93224955 +Prank 'em anon! +--- 93224964 +fuzz it or something lol, deface it and put a message from the infamous hacker known as 4chan +--- 93224967 +>>93224951 +>>93224931 +You need to be at least 18 years old to post here +--- 93225049 +>>93224967 +what does post mean +--- 93225052 +>>93224883 +Why? +--- 93225061 +If any of you niggers decide to have fun with it please just have harmless fun and nothing that would lead to journalism or a federal investigation +--- 93225074 +>>93225061 +anon... you visited the site didn't you... now you're associated with anything that goes on.. haha.. +--- 93225081 +>>93225061 +just delete systrem32 +billboards are cancer anyway +--- 93225105 +>>93225074 +>>93225081 +I just don't want to see any retards on the news again +--- 93225113 +is it possible if you just change website gui, no need to get to the operating system level? +--- 93225129 +>>93225061 +>>93225105 +just put goatse on it +it's a classic, makes people laugh, no harm done +--- 93225158 +>>93223810 +lol. +--- 93225163 +whois pastebin - https://pastebin.com/iLDmS6R4 +--- 93225231 +>>93225061 +blow it out your ass +--- 93225238 +Did some anon change the billboard? +says +> june 2nd-3rd, more info at moly___.net +--- 93225257 +This reminds me of that one time an anon hijacked a billboard physically and put a bunch of /mlp/ memes or something of the sort, sadly I lost the screencap so I cant really prove that it happened. +--- 93225273 +>>93225163 +>guy who runs the network the billboard's on went to DeVry +--- 93225285 +Don't care, I don't even live in North America + +VIEWSCREEN.JPG says it's running Win7 Professional, I am too dumb, it says Cannot access local documents folder +--- 93225329 +>>93225238 +pic? +--- 93225361 +>>93225257 +I remember when someone dumped the credentials for a school network and someone sent the GNU+Linux copypasta as a mass email to parents. +--- 93225370 +>>93225329 +nevermind it changes every time you refresh the page, there are like 30 images on rotation +would be funny if someone put nigger porn on there though +--- 93225384 +This is going to be a funny isn't it? +--- 93225386 +>>93225238 +no that was there before +--- 93225394 +>>93225370 +Imagine being you. +>dude what if black benis lmao +--- 93225427 +>>93225370 +was that the first thing to pop in your mind whenever you think of a prank? +--- 93225454 +>>93225158 +we're in +--- 93225476 +>>93225158 +uhhhhhhhhhhh. how did you get the creds? is this shit just open? +--- 93225505 +>>93224872 +Nice. Thanks for sharing. Will pick a bottle since I haven’t tried it yet. Random anons on 4chan tend to have good taste. +--- 93225508 +>>93225476 +>>93223810 +>https://www.exploit-db.com/papers/47535 +--- 93225510 +Put me in the screenshot +--- 93225511 +>>93225158 +shiiiiiiiieeeeeeet +--- 93225520 +>>93225158 +that's wholesome +--- 93225531 +>>93225361 +--- 93225540 +>>93222967 (OP) +>>93223315 +>>93223862 +>>93225158 + +Dear anons, + +check out this website's http on port 81 + +signed, +anon +--- 93225552 +>>93225508 +im retarded, just saw it. thanks +--- 93225565 +>>93225158 +I really hope you're doing this in a vm that's routed through a proxy +--- 93225575 +>>93225531 +lel +>>93225158 +Put me on the screencap +--- 93225578 +holy shit, no credentials whatsoever? oh dear... +--- 93225580 +>>93225427 +yes, and? +--- 93225587 +>>93225540 +Makes sense why it says the temp is -273C theres not even a probe installed +--- 93225605 +>>93225158 +PRAISE KEK +--- 93225617 +>>93225578 +>not using torsocks +you are on the list +--- 93225627 +Add 4chan ad or add subtle nigger to existing images or some tranny shit +--- 93225661 +>>93225638 +yet you did nothing nigger +--- 93225667 +Put me in the Reshit screencap +--- 93225669 +>>93225158 +AYO ANY NEVADANONS HERE WE NEED COORDINATION TO CONFIRM WHETHER THE SHIT WE UPLOAD IS POPPING UP PLEASE THIS IS HISTORY IN THE FUCKING MAKING +--- 93225679 +>>93225540 +Greetings anon, + +thank you for your contribution, you are a true hackerman +Captcha: J00XRY + +best, +anon +--- 93225685 +I recommend not posting anything. It's cool /g/ found a vulnerable thing. + +Someone should try to tell the people that own the billboard to update their software. + +Don't upload shit pls. +--- 93225691 +The exploit didn't mention it but I think you might be able to get an RCE on this. +--- 93225701 +>>93225685 +don't be a pussy lmao +--- 93225703 +>>93225685 +> someone should tell people to update their software +don't spoil the fun fag +--- 93225707 +>>93225691 +>RCE +This is genuinely concerning actually. +--- 93225710 +>>93225158 +that billboard has a lot of ram +--- 93225711 +I looked at this thread when it was just made and there STILL isnt anything funny +--- 93225718 +/g/ is a joke, read the pastebin +--- 93225720 +>>93225711 +shut the fuck up norman +--- 93225722 +>>93225158 +you know what to do anon +--- 93225725 +>billboard.hacking.media +So it's intentional? +--- 93225727 +>>93225685 +dont listen to this nigger uploaded the most depraved shit you can find +--- 93225735 +Is it me or are posts in this thread getting deleted? +--- 93225737 +>>93225580 +get off the internet, coombrain +--- 93225744 +>>93225158 +Godspeed brother. but the glowies r waiting.. +--- 93225756 +>>93225735 +there was one post removed in this thread +--- 93225762 +>>93225737 +you can say cumbrain +--- 93225766 +>>93225691 +Oh god +--- 93225776 +>>93222967 (OP) +nice +--- 93225782 +>>93225691 +>>93225707 +>>93225766 +what are the implications of this +--- 93225788 +>>93225762 +you never know what the trannitor will do to you +--- 93225791 +>>93225782 +None. +As soon as someone uploads an image they will wipe the billboard. +The worst you could do is a backdoor they somehow don't find and then upload more images when they patch the server. +--- 93225794 +>>93225370 +yeah upload a video of that one nigga jacking off +--- 93225804 +here's a tip for all y'all wannabe leet hackermanzz + +'torsocks curl http://12.44.207.250/VIEWSCREEN.JPG --output /tmp/z0mg.jpg' +--- 93225813 +>>93222967 (OP) +I made a banner fitting the resolution of 128x64 for the current image, to whoever gets to it first, please use this. +--- 93225831 +>>93225782 +>what are the implications of this +that's the fucking ??? RCE implies infinite possibilities, it depends on whether your payload works out on the system but you need to know what it's capable of. you can't hack something to do something it isn't capable of doing, it's why it's important to know the underlying backend. But yeah, it's just code. It's gonna run that shit baby. +--- 93225838 +>>93225804 +you know you can just type that into your browser right? +use tor-socks if you want to actually upload an image or something with the Prismview API +--- 93225839 +>>93225813 +Sorry, forgot it downscales the resolution, here is an imgur link: https://imgur.com/a/NlgGFz9 +--- 93225843 +>>93225838 +yes brother we understand how http works. +--- 93225859 +>>93225691 +>>93225831 +make it play doom +--- 93225860 +what the fuck is a .px2 file +--- 93225882 +>>93222967 (OP) +>>93223184 +>>93224856 +>>93224029 +clicked, am I fucked bros? +--- 93225889 +>>93225691 +Actually, it did mention it. +I'm a retard. +>Getting code execution is fairly easy as well. Just upload a file to overwrite RebootSystem.lnk in the Prismview directory or any of the WinVNC.exes and then request /REBOOTSYSTEM or /RESTARTVNC to execute it. +--- 93225903 +>>93225859 +Overdone to death. +--- 93225904 +>>93225052 +why risk a felony? there are going to be non-paranoid non-schizo bros on here that will go there on the clearnet and move on with their day knowing that they left a questionable trail. +--- 93225905 +>>93225882 +yes. this has been exposed as a fed honeypot. unless you're behind a proxy and a VM you're going to get a visit from the fbi soon +godspeed anon +--- 93225912 +>>93225904 +go there without a proxy* +--- 93225913 +>>93225903 +yeah but what other game are you gonna run on a billboard +--- 93225918 +>>93225860 +it's just a binary image (octet stream) converted to work for the prismview software. +judging by +> https://www.exploit-db.com/papers/47535 +you just have to send an UPLOAD request with an octet stream image and 2-3 metadata fields and boom you've infiltrated the billboard +--- 93225933 +>>93225912 +I've visited the site without a proxy or vpn or anything. I didnt do anything, nor do i plan too, but glad to serve as a buffer for others. +--- 93225951 +>>93225508 +>step-by-step instructions +This won’t be long. You windows users interested can try using Burp Suite community edition to assemble and send the octet stream. Otherwise a small script will be enough. +--- 93225955 +>>93223492 +0 Kelvin. Aliens +--- 93225959 +>>93225361 +>>93225531 +--- 93226048 +Stop resetting it you retard +--- 93226061 +>>93222967 (OP) +What retarded nigger is resetting it? +--- 93226063 +>>93225964 +ah ok makes sense about the reboot. +i dunno the non-joiner uploads should be working. maybe your prismxfer001 header is wrong, or this is version 2 of the software so it should be prismxfer002 +--- 93226121 +>>93225964 +for the logs i tried earlier too, it's just impossible to delete them. i thought that maybe someone would find a way, but not sure if it's even possible honestly, sorry for not letting you know earlier +--- 93226147 +>>93226061 +a nigger too retarded to actually do anything of worth to the billboard +--- 93226187 +>>93226061 +me +--- 93226251 +eep +--- 93226362 +EEP +--- 93226370 +>>93226147 +or maybe a greyhat trying to protect it? +--- 93226391 +>>93226370 +More like faghat +--- 93226427 +>>93224490 +american education +what a fucking idiot +--- 93226429 +are you faggots gonna do anything with it +--- 93226437 +>>93224377 +>"@Le_keksec" + +i wonder what they meant by that +--- 93226458 +How upset do you think someone would be if you left an inoffensive message on the board? +--- 93226460 +OP's a fed that's bored +--- 93226497 +>>93226458 +they will fire bomb your house and send you to a maximum security prison +--- 93226505 +Another anon said that +>Cannot access local documents folder +>Documentroot not set +with the command + +torify curl -F file=@basedjak.jpg -H'PrismXfer-DestName: YmFzZWRqYWs=' -H'PrismXfer-FileLength: 17767' -H'PrismXfer-FileLastWriteTimeUTC: 2023-03-03-T00:00:00' -H'PrismXfer-MD5Checksum: efad80d38585bdd121d36173f5668750' http://12.44.207.250/UPLOAD2 + +https://pbs.twimg.com/tweet_video_thumb/E2Mc-suWQAIYMBz.jpg + +using this basedjak as a source (may need to recalc MD5 on ganoo, but you can use WGET on any file / JPG to get the file size for http, then use base64 encode/decoder to set a name with the = sign at the end) +--- 93226518 +here before this whole thread is jailed kek +--- 93226561 +>>93226518 +I dindu nuffin i just clicked a link on the internet +--- 93226565 +anyone else remember the general where anons would post unsecured vnc's and industrial equipment, and then fuck with it? that was real fun until it got killed +--- 93226629 +>>93226565 +I liked when it was just fucking with people but causing physical harm was my cut off +--- 93226641 +>>93226629 +>physical harm +how? +--- 93226670 +You think this is interesting, then you should dork for residential CCTV cameras. I won't tell you how, just that you should. +--- 93226679 +>>93226641 +Do you remember the pigs in Korea that got misted to death? +--- 93226692 +>>93226679 +Oh god... the Pigs... I member. +I have become MISTER, destroyer of PIGS +--- 93226693 +>>93226679 +holy fuck i just remembered the pig misters. +i misted the fuck out of those pigs +--- 93226694 +>>93226505 +How do I do this on iphone? +--- 93226705 +toastin in ebin bread +--- 93226719 +>>93226679 +--- 93226737 +>>93226629 +Pussy +--- 93226752 +>>93225882 +it's over.......... +--- 93226770 +FUCK ME FUCK ME FUCK ME + +I WAS USING MY HOME ISP, I WASNT USING TOR AND I REBOOTED THE SYSTEM + +NOT A TROLL. seriously, am i fucked? the link is down, im gonna get dragged into something. am i gonna go to jail? im serious, i only did this once. +--- 93226773 +>>93222967 (OP) +nice try nigger, aint givin you my ip +--- 93226779 +>>93226694 +you cant +--- 93226785 +>>93226770 +now that you've admitted your crime on a publicly available mongolian basket weaving forum from the same IP address yeah you're probably gonna get a knock at the door lmao gg +--- 93226790 +>>93226370 +>hat + +ugh people still use that word +--- 93226796 +>>93226770 +better buy a plane ticket fast +--- 93226797 +I'm bored. +Give me something to hack. +--- 93226817 +>>93226719 +What did they mean by this? +--- 93226826 +>>93226817 +it's a pig mister +--- 93226829 +>>93226817 +it's like you fucking creatures born after 2000 don't know how to scroll up +please fucking kill yourself +--- 93226838 +>>93226797 +can you hack my ex facebook mr anonymous? +--- 93226856 +>>93226817 +THE MISTING WILL CONTINUE UNTIL MORALE IMPROVES +--- 93226860 +>>93225904 +There’s no way it’s a felony to mess with a fucking advertising billboard +--- 93226870 +>>93226785 +I am not fucking hiding anything + +my life is ruined +--- 93226875 +>>93226797 +Can you get us local-install limitless ChatGPT somehow? +--- 93226894 +>>93222967 (OP) +i dont get it +its just a status page for a billboard? + +why are u retards freaking out? its not even vulnerable, no ports other than 80 are open. +You do know what billboards are right? the info displayed on the website isn't exactly private.... +--- 93226896 +The Shodan threads about a year or two ago on /g/ were so fucking funny when everyone was messing with industrial control interfaces that were left open on the internet by chinks etc. +>chickens cooked in the factory +>tanks FLUSHED +>the small Italian dam opened +Then the jannies got scared and banned everyone who posted in those threads +--- 93226911 +>>93224029 +>or like CERN +IT'S OUR FUCKING TIME BROS +TYBJT (THANK YOU BASED JOHN TITOR) +--- 93226945 +i don't know the px images have something about a schell raiser schellraiser.com says it is a music festival, so maybe are just images to be displayed in the led billboard? maybe there is something hidden... +--- 93226968 +>it has been 5 hours +>still no funny +--- 93226976 +>>93226896 +probably the most fun i've had on /g/ +--- 93226990 +>>93226785 +>>93226856 +Kek +>>93226770 +Prepare anus +--- 93227043 +>>93226990 +im gonna have a serious panic attack. encrypting everything, gonna change ip + + +i did curl torsocks <ip> + +instead of... torsocks curl.... + +im gonna die. i ruined my life. im a dumb fuck. i didnt use a vm, i didnt use a vps.........dnmdmdmdmdmddiuushshahshshssjjs +--- 93227062 +>>93227043 +In reality I don't think the niggers who set this system up will give enough of a shit to trace your IP and try to track you down especially since so many addresses have touched it since this thread went up. +Probably. +--- 93227073 +>>93227043 +alright. there are gonna be several psychos that will take pleasure in your demise. I seriously think you're not trolling. + +Take a deep breath. A company will not waste their time investigating every IP and checking with every ISP and prosecuting over a fucking billboard. Yeah maybe they'll scream about sabotaged time and and ad money.... shit... uh... + +look, a lot of people did it. your chances are not too bad. just relax man. drink some water, you're not some fucking ransomware gang; fbi aint coming for ya +--- 93227091 +>>93226896 +Just fuck the jannies. The jannies are the sole reason why /g/ has become what it currently is. + +WYD8SX +--- 93227093 +>>93226896 +>chickens cooked in the factory +>tanks FLUSHED +>the small Italian dam opened +you guys actually got to play with that stuff? I gotta find those threads in the archive. + +>>93227043 +I don't get it. Why are you panicking? If there is no cp that was uploaded to your site, what are you getting upset about? +--- 93227099 +>>93227062 +>>93227073 +I never felt this amount of stress in my life. I'd rather be in that time i got caught doing a 90 in a 65. that speeding ticket feels like heaven compared to this. im really not gonna sleep tonight +--- 93227102 +>>93225158 +>>93224029 +>hacked into CERN machine for shit and giggles +Prepare your anus anon, (((they))) are coming +Party at anon house tonight +--- 93227103 +>>93227043 +I will pour one out for you my nigger. When you get out of prison in 30 years i'll make sure to get you a great steak +--- 93227109 +>>93227099 +*holds u tight and nuzzles into your neck* +don't worry bby... it'll b ok... +*smooches u* +--- 93227124 +i dont think the program itself has write permission to the file system +whenever i send a upload request i get this response +--- 93227130 +>>93227093 +>I don't get it. Why are you panicking? +I rebooted it once. from my home ip. they will blame everything on me, I am the scapegoat. I am fucked my dude. +>>93227103 +>>93227109 +I deserve this. I was edgy as you guys, now I know what it feels like. I deserve this shit, im a fucking idiot +--- 93227135 +>>93227124 +its probably running as a low privileged daemon +--- 93227142 +why are americans so retarded? +--- 93227145 +>>93227124 +>>93227135 +>>93227130 +Look dude, nobody can even write anything on it. There are plenty of retards doing this. You were one of them, you're fine dude just relax. +--- 93227149 +>>93227130 +bro its a fucking billboard outside of a gas station lmfao calm your tits +--- 93227150 +Fun where +--- 93227153 +>>93227142 +it seems like you know what's going on. What did op do? +--- 93227156 +>>93227130 +that's only if they decide to pursue this which is highly unlikely considering whoever is running this doesn't give a shit +--- 93227186 +>still no fun in this thread +--- 93227195 +>>93227145 +>>93227149 +>>93227156 +So it's possible... I am going to get a felony and get blamed for shit. I am really going numb. It's all a joke on le 4chins. I dont know why i did this so impulsively. becuase i swirched two words and i didnt bother with a whonix vm or one of my anon vps's. im ginna lose my job +--- 93227197 +>>93227102 +--- 93227211 +>>93227195 +kek nigger i am this anon >>93227124 +and i didn't even use a VPN + +you are the biggest pussy fuck i have every laid my eyes on +--- 93227226 +>>93227099 +You're clearly just overreacting +But in the future use whonix so you can't make these mistakes +--- 93227254 +>>93226770 +20 years pound me in the ass prison minimum +--- 93227264 +>>93227211 +are you trying to make me feel better? no way you were like me +>>93227226 +i live in the US +--- 93227297 +>>93227195 +Shut the fuck up. I'm on a deferred sentence for selling heroin and I'd beat you the fuck up in jail for whining so much +--- 93227300 +>>93227099 +we are fucked, here are the logs +http://12.44.207.250/GETLISTLOGDIRECTORY +undeletable +--- 93227304 +>>93227195 +>>93227264 +bro you're stressing me out and im not even in your position. + +the chances of each IP being thoroughly scoured, and you being picked out and the billboard company in the middle of nowhere checking every single one (there are a lot of anons of 4chan, you can 100% bet one of them when to the site and rebooted it or whatever through their home ISP) and sending a full on investigation to gather the lost... $500 of funds and being UNABLE TO CONNECT YOU TO THE OTHER FUCKING IPs is not going to land you in jail. Yeah some courts are fucked and exaggerate it, but a good lawyer will prove in your favor if you're super paranoid. You only have one link, and it can't even be linked to you as a person. Just go to bed dude. +--- 93227314 +>>93227300 +look mom im famous +--- 93227320 +>>93227300 +Overload by generating tons of them +--- 93227342 +>>93227130 +>>93227195 +>>93227264 +>>93227304 + +>>93227300 + +LOOK AT THIS. LOOK + +there were 6000 requests, the most this server has probably ever seen. You're like one. You need to fucking chill your nuts. now im done, this is the most cope you'll get. +--- 93227365 +>>93227300 +can't delete nigger +> curl 'http://12.44.207.250/PV9COMMAND|DELETEFILE1|Log\SystemLog-05-04-23.lg' +FAILED UNAUTHORIZED ACCESS TO THIS SYSTEM IS PROHIBITED. ALL ACTIVITY IS LOGGED AND WILL BE REPORTED TO LOCAL AUTHORITIES. VIOLATORS WILL BE PROSECUTED TO THE FULLEST EXTENT OF THE LAW. +--- 93227366 +>>93227304 +>>93227342 +Hey man, idk who you are. but i'd name you after my son. ill sleep tonight, i feel really fucking gay for saying this but i was in some serious emotional distress. i get paranoid over looking someone the wrong way. thank you dude! +--- 93227370 +>>93225158 +Include my freshly molted tarantula in screencap +--- 93227371 +>>93226427 +The fuck are you on euromutt? How am I wrong? Absolute zero is a theoretical concept, it does not exist in the real world and cannot be achieved. +--- 93227385 +>>93227300 +>>93227342 +>log does not contain ip address +> instead contains an obscure random number with a timestamp +i dont get it +--- 93227389 +>>93227385 +definitely has ips in the logs, it's just files. +--- 93227402 +>>93227385 +cool log bruh +--- 93227407 +>>93227304 +nothing rewritted for now, just a bunch reboots. owner won't noticed it +--- 93227421 +best thread on /g/. im serious, maybe of 2023 +--- 93227427 +>>93227385 +that's probably the filesize ya doofus (In bytes, in Minecraft) +--- 93227433 +wait does the billboard seriously reboot everytime someone accesses or refreshes the site +this is some stupid shit, how is it my fault your billboard software is so retarded +--- 93227442 +>>93225540 +>1/1/0001 +This makes whatever this is seem very artificially put together, considering every language i know would default to 1970 instead. Can anyone think of any good reason why it wouldn't be that? +--- 93227444 +>>93227365 +wrong path? maybe? +--- 93227447 +>>93226896 +what it this? +--- 93227455 +>>93227370 +That's fucking gross +--- 93227456 +PORT STATE SERVICE +21/tcp closed ftp +53/tcp open domain +80/tcp open http +81/tcp open hosts2-ns +5900/tcp closed vnc +--- 93227468 +>>93227433 +it reboots if you send the "command" + /REBOOTSYSTEM +/RESTARTPLAYER +/RESTARTVNC + +like http://12.44.207.250/REBOOTSYSTEM + +or with *nix +while true; do curl "http://12.44.207.250/REBOOTSYSTEM"; done + +more: +https://www.exploit-db.com/papers/47535 +--- 93227469 +i've tried both upload methods +the first one just fails with >>93227124 + +the second (splitupload) method works for the upload part (notice the "File uploaded" response) but then just responds with "FAIL" upon the last splitjoin request. Idk if its because im fucking up the SplitterInfo.xml format: + +<FileSplitterJoinerInfoPacket> + <OutputPathAndNameUnicoded>lole.jpg</OutputPathAndNameUnicoded> + <NumberOfFiles>1</NumberOfFiles> + <LastWriteTime>2011-11-11T11:11:11</LastWriteTime> +</FileSplitterJoinerInfoPacket> + +--- 93227478 +>>93227456 +Here we go babay +--- 93227486 +>>93227469 +oh my god bro please tell me you werent like the retard who rebooted by mismatching torsocks and curl. you just straight up did curl, vpn hopefully. +--- 93227509 +>>93227486 +no lmao im just not a fucking pussy +are you 12 or something? its a fucking billboard nigger. We're not hacking the pentagon +--- 93227512 +>>93227468 +LOOK AT WHAT YOU'VE DONE +--- 93227526 +>>93224239 +maybe they shutdown the cooler the sensors show bullshit numbers when they are outside and the cooler is being cleaned since the low temperature sensors usually don't work at room temperature. +--- 93227528 +I am fucking shitting my pants thinking about how a bunch of fucking techo-autists/retards and paranoid anxiety-niggers are fucking with some random billboard in the middle of bumfuck nevada which nobody is probably paying attention to because they're all on their phones or some shit. and it's probably just going blank and blinking on and off as they type commands without thinking about it. + +Fucking best thread of my life. +--- 93227529 +>>93227442 +Embedded world is different, you often don't get RTC or any time tracking from the OS, so you may need to keep track of time yourself. Implementing Unix timestamps becomes an arbitrary and often suboptimal choice. +--- 93227533 +>>93223572 +What a shitty billboard.. +--- 93227535 +the hacker known as 4chan... +strikes... again... +--- 93227536 +>>93227469 +it may be because it doesn't understand .jpg files? maybe they need to be that PX2 format + +anyone know what format that is? +--- 93227539 +>>93227509 +You're lucky you live outside of the US. +--- 93227556 +>>93227370 +What a beautiful spider. Congrats on the successful molt. +--- 93227560 +My son is a computer genius and will help figure this out. He told me you guys are the ones who hacked our billboard. I have to deal with this shit in the middle of the night. I will be contacting the authorities and my personal lawyer in the morning to prosecute you dumb fucks to fullest extent +--- 93227565 +>>93227536 +I used imagemagick to convert to px2 +--- 93227568 +>>93227528 +300+ replies baby +--- 93227570 +>>93222967 (OP) +This post glows. +--- 93227579 +>>93227556 +Thanks anon +--- 93227582 +How do you find these random unlocked access points? +--- 93227586 +>>93227427 +jej +--- 93227588 +>>93227560 +>the fullest extent +Someone already used that earlier dumb ass +--- 93227591 +>>93227582 +zmap or shodan +--- 93227595 +>>93227560 +fuck you +--- 93227600 +>>93226896 +yeah that shit was fucking funny. we even cooked pigs alive. +--- 93227602 +>>93227509 +Kek, so true +--- 93227608 +>>93227560 +oh yeah? well I'm not 'merican, so good luck with that one! +--- 93227610 +>>93227560 +larp +--- 93227615 +Does somebody live near this shithole to visit in person x)? +--- 93227623 +Anyone tried accessing an end point or different protocol of that IP? +--- 93227624 +>>93227600 +how would you even know that though, were there cameras where you could see? +--- 93227625 +>>93227600 +Qrd? +--- 93227656 +You probably upload through ftp but the port is closed +--- 93227660 +>>93227624 +anons raised the temperature of a pig sty in china to where the pigs would get cooked alive. it seemed to work, bhut there's no way to verify +--- 93227669 +>>93227447 +that's insecam, dumbass +--- 93227676 +>>93227623 +Look at +>>93227456 + +We have tried port 80 and 81 + +port 21 (file transfer) might be fruitful but its closed +--- 93227702 +>rebootniggers +--- 93227711 +>>93227565 +converting to PX2 also doesn't seem to work. +heres what im doing if anyone can spot a mistake: + +>convert image.jpg image.PX2 +>mv image.PX2 XferFile.0 + +>curl -F file=@XferFile.0 "http://12.44.207.250/SPLITUPLOAD" +(responds: File Uploaded.) + +>curl -F file=@SplitterInfo.xml "http://12.44.207.250/SPLITUPLOAD" +(responds: File Uploaded.) + +>curl "http://12.44.207.250/SPLITJOIN" +(responds: ok) + +>curl "http://12.44.207.250/PV9COMMAND|INSTANTPLAY1|image.PX2|999999" +(responds: failed) + +heres my SpliterInfo.xml +<FileSplitterJoinerInfoPacket> + <OutputPathAndNameUnicoded>hax.PX2</OutputPathAndNameUnicoded> + <NumberOfFiles>1</NumberOfFiles> + <LastWriteTime>2011-11-11T11:11:11</LastWriteTime> +</FileSplitterJoinerInfoPacket> + +--- 93227723 +>>93222967 (OP) +wtf i just googled "prismview player" and this ip showed up, its indexed by search engines jej +--- 93227741 +>>93227711 +>hax.PX2 +whoops thats a copy paste mistake from my old file, i actually used he correct value (image.PX2) when i ran it. Still doesn't work +--- 93227769 +>>93227723 +on duckduckgo too lmao +how do you fuck up this bad +--- 93227775 +>>93227529 +Interesting, didnt know this. Thanks +--- 93227777 +>>93227660 +it seems very unlikely that they would have heating installed that has sufficient capacity to seriously harm the pigs, no? and even if they did, surely there would be physical failsafes in there +--- 93227787 +>>93227723 +>>93227769 +we famous my negroids. +--- 93227788 +>>93227711 +Could be genuinely uploading, but I imagine it doesn’t just shuffle the uploaded images but requires some kind of sequencing change to show new images. +--- 93227807 +one thing i have noted if you go directly to +http://12.44.207.250/viewsign.jpg image keeps changing, does it mean actual billboard is also changing? +--- 93227817 +>>93227807 +yes brah, this is an actual billboard +--- 93227861 +Fugging bump limit. It's been a good time brahs. stay safe, and I hope we can delete the logs hehe XD. +--- 93227874 +>>93227777 +>failsafes +>china +KEEEEEEEEEEEEEEEEEEEK +we're talking about people who get killed by shitty escalators constantly +--- 93227882 +fug bros i rebooted it, and its actually down +--- 93227888 +>>93226719 +Misted to death, as in they drowned? Or the pressure was so intense that it blasted their skin off like a gurni? +--- 93227909 +>>93227788 +You faggots ive been seething at your tardedness while lurking on vpn for too long. + +OVERWRITE AN EXISTING PX2. READ THE FUCKING TXT +--- 93227947 +>>93227909 +those who can do, those who can’t cope +--- 93227951 +>>93227909 +Why don't you do it then? +--- 93227959 +look at all of the retards itt, this sign has been open to the public for over a year according to the chinese google +--- 93227976 +>>93227959 +then it's even more giga retarded because of the fact that any tor nigger can restart it +--- 93228039 +>>93227909 +doesn't work +--- 93228050 +https://computernewb.com/vncresolver/browse/#id/ +Anon, you wouldn't mark an innocent kid as absent, right? +>89303950 +You wouldn't confirm the CO2 leakage, right? +>31504446 +You wouldn't help a poor farmer with their irrigation, right? +>89409435 +You wouldn't mess with a supermarket's stock, right? +>12380045 +Right, anon? +--- 93228071 +kek 31.128.14.113:5900 +https://computernewb.com/vncresolver/browse/?id=3546310#id/63044047 +--- 93228095 +>>93228071 +based +--- 93228104 +>>93228050 +>83180746 +this one is just someones computer? +--- 93228124 +>>93227702 +>>93227861 +>>93226629 +>>93225510 +fuck off +--- 93228133 +>the collective skills of /g/ cant even hack a public facing ancient billboard software from 2011 +its ober bros we are truly pathetic... +--- 93228147 +>>93228133 +dont forget, they were also given a text document of step by step instructions of how to do it +--- 93228149 +>>93228104 +Looks like someone's server, yeah +--- 93228169 +>>93228133 +c-can we even call ourselves technologists anymore?... +--- 93228178 +well anons, anyone wanna mess with this turbine? +https://computernewb.com/vncresolver/browse/#id/93056979 +--- 93228187 +>>93228133 +I could but wont do it +--- 93228205 +Do NOT mess with the grain temperatures or timers please +https://computernewb.com/vncresolver/browse/#id/96699239 +--- 93228215 +>>93228205 +dont be a dickhead and ruin some poor farmers yield + +fucking asshole +--- 93228231 +https://computernewb.com/vncresolver/browse/#id/18831519 +some russian uh... music related thing? +--- 93228236 +>Anons think its temperature is actually at absolute zero +>Anons thinks they're hacking CERN +>Anons can't follow simple text directions on how to mess with a billboard +>Anons think they're doing a federal crime and go to jail over restarting a billboard +>Anons think having a billboard controls open to public must be some glowie honeypot +It's over +--- 93228249 +https://computernewb.com/vncresolver/browse/#id/75178155 + +this might be worth hacking +--- 93228262 +https://computernewb.com/vncresolver/browse/#id/88144110 +oy vey! +--- 93228269 +>>93228262 +There's a ton of these, Idk what this is +--- 93228273 +>>93228178 +italian sounds like the official language of homosexuality +--- 93228276 +>>93228236 +Nice try FBI +--- 93228279 +>>93228262 +and they all load very slowly +--- 93228288 +>>93228269 +just a time display at some random location, maybe they need one for every room +--- 93228291 +>>93228249 +ssh is open +--- 93228296 +>>93228143 +anyone want to spoil some grain? +https://computernewb.com/vncresolver/browse/#id/82808859 +--- 93228308 +>>93227528 +newfag +--- 93228311 +how do you log into one of these vnc servers +--- 93228321 +>>93228296 +>quebec +destroy it +--- 93228324 +>>93228296 +https://computernewb.com/vncresolver/browse/#id/77630968 +--- 93228328 +>>93228311 +install a vnc viewer +--- 93228333 +I think this is a display on a bus?! +https://computernewb.com/vncresolver/browse/#id/36266933 +--- 93228420 +https://computernewb.com/vncresolver/browse/#id/91485737 + +Literally tells you the password +--- 93228433 +>>93228420 +Stupid pub key authentication +--- 93228448 +>>93228420 +least obvious honeypot +--- 93228463 +>>93228448 +Probably, wow I'm retarded +--- 93228484 +>>93228133 +too busy discussing pens and keyboard keycaps to actually do some hacking +--- 93228496 +https://computernewb.com/vncresolver/browse/#id/44482455 + +Which one of you made this? +--- 93228530 +https://computernewb.com/vncresolver/browse/#id/5479825 +>phone number just sitting there +--- 93228676 +i just opened a trollface in some korean printer +--- 93229050 +>>93226770 +Now you're all in. You gotta go back and delete the logs. +--- 93229092 +>>93229050 +What about the NSA logs? +Does he have to delete them as well? +--- 93229099 +>>93228143 +based +--- 93229103 +https://computernewb.com/vncresolver/browse/#id/76297211 +SHAW TANK +--- 93229190 +>>93227433 +It'd be pretty funny if posting the links here was automatically triggering it. Like 4chan itself parsing the link, or someone's app doing a cloudflare prefetch. Makes me wonder how tracable simply viewing a thread really is. +--- 93229218 +you fuckers argue all day about muhh loonix muuh guntooo, but can't hack a fucking ancient billboard +--- 93229246 +>>93229218 +Do it yourself if you're so clever :) +--- 93229329 +based fedposters +--- 93229373 +>>93229246 +I use Windows so I don't have to :) +--- 93229455 +http://122.155.204.162/phpMyAdmin/ +--- 93229460 +>>93229455 +>Javascript must be enabled past this point! +Gay +--- 93229466 +>>93228071 +KURWA MOJE POLE +--- 93229859 +>page 10 +It's over. This has been one of the greatest threads in quite some time. You all will be sorely missed. +--- 93229878 +>>93229859 +>anon fails to do anything for 9 hours +a great thread indeed +--- 93229946 +>>93229878 +I still learned a thing or two about cybersecurity. I don't care if nothing actually came out of it. The journey was the real treasure all along. +--- 93230086 +>>93229878 +the link to the exploit textfile was pretty insightful +--- 93230251 +>>93227529 +Use templeos +Funny how the voices had him make the perfect embedded os :^] +--- 93230479 +well im glad i didnt waste my time reading this thread and just scrolled to the end to see you retards did nothing +--- 93230776 +This honeypot beats the hell out of the AI generals that are clogged with chatbots talking about erotic role playing with chatbots. + +Someone is spooked by 4chins getting good at local AI models. diff --git a/g/93223070.txt b/g/93223070.txt index 7e64411bd9f0a6b8bf4a04154184c2fabe4d97dc..d24e9509bd9c3fd0d8c301af87b52136d06adfef 100644 --- a/g/93223070.txt +++ b/g/93223070.txt @@ -3,3 +3,19 @@ >Another way to avoid DLL dependencies is to use a tool such as UPX (Ultimate Packer for eXecutables) to compress the executable file and embed the required DLLs within the compressed file. This allows the program to run without requiring external DLLs. Based UPX +--- 93225419 +Elaborate. Can this be used nefariously? Is that what you’re on about +--- 93226030 +... or just link the program statically if you have access to the source code. +--- 93226105 +>>93223070 (OP) +That's just static linking without the advantages. +--- 93226215 +>>93226105 +what are the advantages? +--- 93226292 +>>93226215 +Cross-module optimizations (also called link-time optimization), aggressive pruning/tree shaking and such. +--- 93228405 +>>93226292 +prune me aggressively daddy diff --git a/g/93223142.txt b/g/93223142.txt index 38812420a39face3a4cffd772bb114bbaf2754d4..679989c97e820fbf58654316394488f10cb692cf 100644 --- a/g/93223142.txt +++ b/g/93223142.txt @@ -9,3 +9,23 @@ schizo --- 93223204 >>93223142 (OP) It really whips the llama's ass. +--- 93223994 +>>93223204 +strawberry is better +--- 93224179 +>>93223142 (OP) +This girl doesn't shower and has a lot of pubic hair. +--- 93225321 +>>93224179 +--- 93225408 +>>93223142 (OP) +I just put songs I like on my phone and hit shuffle + +works for me +--- 93227187 +>>93223142 (OP) +dakanashi +--- 93228735 +>>93224179 +Yes, and ? +Women that shave are mind broken. diff --git a/g/93223350.txt b/g/93223350.txt index 6ca68791e176ea086d1da8d3f2294f68c9ef94ca..9150e8dc73e1328bcde1c2bfa105d5c79ad3a46d 100644 --- a/g/93223350.txt +++ b/g/93223350.txt @@ -20,3 +20,166 @@ nnn --- 93223460 >>93223350 (OP) ranger +--- 93223494 +>>93223350 (OP) +wine + explorer.exe +--- 93223545 +>>93223494 +based schizophrenic +--- 93223636 +>he needs a file explorer +Lmao +--- 93223841 +>>93223350 (OP) +FX on Android +--- 93224184 +>>93223350 (OP) +explorer.exe +--- 93224279 +>>93223350 (OP) +Ranger +Easy to use, simple, hackable, multipage, everything included. ++gnome files, dolphin or whatever to see list of images. Haven't used the last one for a while. +--- 93224528 +>>93223350 (OP) +You posted it already. The thread ended before it began. +--- 93224748 +>>93223494 +You're sick +--- 93224754 +>>93224748 +it works good +--- 93225040 +>>93223350 (OP) +Its amazing how basically everything it crosses my mind can be on KDE +--- 93225068 +>>93223350 (OP) +GUI - Dolphin +CLI - Ranger +--- 93225869 +>>93223350 (OP) +>>93225040 +>>93225068 +correct dolphinchads +>>93223404 +seething homosexual that uses linux on a tablet or something +--- 93226540 +>>93223350 (OP) +win2k explorer +--- 93226557 +>>93223350 (OP) +>Linux +Midnight Commander +>Windows +Winfile, Mindight Commander +>MacOS +Midnight Commander +>BSD +Midnight Commander +>Haiku +MIdnight Commander +--- 93226575 +Why couldn't Linuxnigs figure out how to make their file pickers have the same interface as the file explorer? Windows has done it like that for years +--- 93226612 +>>93226575 +uhh... windows doesn't always do that... +--- 93226656 +>>93223350 (OP) +> this is the best file mana- *krashes* +--- 93226673 +whats the alternative to qttabbar for linux +--- 93227096 +>>93223350 (OP) +Finder +--- 93227280 +>>93226656 +>krashes +--- 93227318 +>>93226656 +The issue only persists in 32 bit. It’s time to upgrade to 64bit. +--- 93227324 +ls +--- 93227335 +dired +--- 93227357 +>>93226656 +Let me guess, endeavor? Doesn’t crash on normal Arch. If you want to use arch, use arch. Stop using distros poorly based on distros. +--- 93227363 +>>93223350 (OP) +Whichever one works +--- 93227376 +>>93227324 +dir +--- 93227417 +>>93223350 (OP) +Explorer in Windows 11. At least it doesn't shit my fucking filetree with .directory like Dolphin. Dolphin has diarrhea hehe, poopy anus Dolphin sea danger haha +--- 93227448 +I miss Finder from my Hackintosh days. :( +--- 93227465 +>>93223350 (OP) +Directory Opus +/thread +--- 93227488 +>>93227417 +>>>>desktop.ini +--- 93227688 +>>93227488 +Not in every directory. You need to be suffocated with your mother's blood like you should have been at birth. +--- 93227730 +>>93227357 +endeavour is literally arch what the fuck are you talking about +--- 93228572 +There's no best file explorer for me, but: +-People shit too much on the windows file explorer when the biggest problem it has is that it's somewhat slow +-Dolphin is overrated and doesn't have basic features such as saving zoom level on folders, and its search feature sucks so much shit you need to install Kfind (it also has a tagging function but might as well not be there) +-Caja/Nemo are just fine and that's about it. Caja has a feature where you can hover over music files and preview them. +-Thunar went from the worst to one of my favorites, it's faster and it has all sorts of gimmicks now. I really like the color highlighting function. And funnily enough, I used to bitch about how this file manager didn't have a search function at all, and now it gave me better results than the one on Dolphin. +-Finder is something a lot of people also hate and a lot of people don't understand. It has plenty of stuff that I wish other file managers had, like automated folders, a proper file tagging system or the column view. +--- 93228592 +can i even... rename "Dolphin" into something that a sane person would do? like... "File Manager" or something. +--- 93228617 +>>93228572 +>saving zoom levels on folders +that's in configurations +>you need to install kfind +you need to enable indexing for the directory with baloo +--- 93228799 +>>93228572 +Dolphin can do either global or per-folder settings for stuff like zoom and sorting without problems. The search is also quite decent and the tagging feature is fully functional (even though it could use a few QoL updates); as far as I know, the only major competitor for tagging is the Apple Mac file browser. +As for the Windows file manager, it completely lacks basic features like tabs, split view or countless other options. It's incredibly barebones. +--- 93229022 +>>93228617 +>that's in configurations +No it's not. What it saves is sorting and view type (list, detailed or icons) by using the only option available. It does not save zoom levels at all. +>you need to enable indexing for the directory with baloo +that doesn't solve trying to find files by extension type + +>>93228799 +>the tagging feature is fully functional +unless they changed it in the last year, it couldn't even exclude tags in a tag search or use OR. Although the file explorer on windows has it disabled and needs extra software to re-enable it (and it's essentially worthless when it gets really slow), tagging works pretty well with searching for files. +>It completely lacks basic features like tabs +Not anymore +--- 93229034 +>>93223350 (OP) +--- 93229058 +>>93223350 (OP) +cli with this fs setup https://code.dogmap.org/fs/ +--- 93229075 +>>93226575 +They haven't figured out how to include search in the filepicker, only thumbnails +--- 93229533 +>>93227335 +we are home emacsbros if they add filepicker in 29 +--- 93230033 +Thunar +Dired +--- 93230286 +>>93226557 +FAR is everything mc wishes it was +--- 93230354 +>>93227324 +this, you don't need more +--- 93230552 +>>93230286 +i did not ask for your opinion +do not talk to me diff --git a/g/93223377.txt b/g/93223377.txt index 325c2ae31508524e0c5856909c634f2eb8f296ba..dc1d6187fcdf142c3bd7865dcb2d1272657a5da1 100644 --- a/g/93223377.txt +++ b/g/93223377.txt @@ -2,3 +2,125 @@ --- 93223377 What's the /g/ computer chair? Need one that'll help keep my back supported during long sessions. +--- 93223853 +>>93223377 (OP) +Steelcase Leap +--- 93223865 +>>93223377 (OP) +go for a run before sitting on your ass all day lazy fat retard +--- 93223951 +I use a hardwood dining chair. +--- 93223957 +>>93223377 (OP) + +Get on my level +--- 93223966 +aeron or steelcase leap +don't buy either of them new either, get one from some warehouse or recently vacated office building on craigslist +--- 93223972 +>>93223377 (OP) +standing desk +--- 93223977 +>>93223966 +i have the leap +great chair, been sitting on it for a year now and its still comfy unlike other shit where the cushion is gone after a month +--- 93224024 +>>93223977 +yeah, I like mine too, the only thing I don't like is the armrests. I think the aeron is a little better overall, but it's not $250 better like it would have costed from my local secondhand market +--- 93224130 +>>93223957 +t. not on that level +--- 93225545 +>>93223377 (OP) +Your back is important but so is bloodflow in yoir ass and legs. The Embody by herman miller is not the gee chair but the chair. +>but $1,800 +No shit. engineering like this is one of a kind. I can't believe the Aeron is the same brand when compared to the Embody +--- 93225603 +>>93225545 +Can I get one used for 180? +--- 93225634 +>>93223966 +>get one from some warehouse or recently vacated office building on craigslist +How do I find that? +--- 93225699 +>>93225603 +Dont buy a used chair you gotta set your own groove have more respect for your ass dude. +--- 93225717 +>>93223377 (OP) +--- 93225734 +Is $370 on ebay good for a used steelcase leap V2? that's shipped and everything, none available locally. +--- 93225747 +>>93225717 +Who the fuck sits on a bag and bottle +--- 93225763 +>>93225699 +This chair has a 'mat' like cushion stitched together over a flat cushion so is keep perfect support every time. I can not find the manufacturers. +--- 93225949 +>>93225747 +Yeah I just noticed that. The seat is really what takes it to another level it's a pretty basic but I'll try to get better pictures next time I go to the store. I tried to get pictures of the metal frame the double stitch mat and a general picture and totally forgot where I placed the bag and bottle. +--- 93226002 +>>93225545 +>no cushion + +How much of that price is real comfort though? It's hard to believe something made of plastic supports pressure that well. +--- 93226068 +How useful are those silicone cushions? +--- 93226078 +>>93225545 +>>93226002 +I just saw a pic. Well it's got wheels. There's no way your back presses all the way back for maximum support. +--- 93226145 +>>93226068 +Gets something that feels as if like your ass were sitting on the edge with butt fat grabbing on. This engages your lower back and help straightening. +--- 93226160 +>>93226144 +How's the lizard doing? +--- 93226551 +>>93223377 (OP) +I'm sitting in an Aeron now at work, the arms are loose and it doesn't lift up high enough but it's nice aside from that. I think I'm a thin man sitting in the fat model +At home I have a shitty gamer chair, nice and comfy and it has adjustable lumbar support so I can pretend it's not fucking my spine +--- 93226555 +>>93223957 +>DRRR DRRRR DRRRR +--- 93227813 +>>93226002 +>>93226078 +Don't be so ignorant of your own stupidity anon. +--- 93229097 +ikea jagger 10 year guarantee at 250 euros +would buy the other brands i lf i wasn't a poorfag but this one is pretty decent +--- 93229126 +>>93223957 +This and a monitor arm and a keyboard desk tray arm would be comfortable and kino. Don't buy roller / ball massagers. If you're not obese they actually can fracture your spine kek. Air bag or bust. +--- 93229201 +>>93225545 +I owned both Herman Miller chairs and I can assure you they're a meme. People like you are just coping with a bad decision. RFM Verte, those gawdy plush leather chairs from China, and ergo quest are all better options. You just don't know what is good. +also +>gee +What is this zoomer speak? +--- 93229220 +>>93229201 +XD Racer is the best chair, prove me wrong. +--- 93229556 +>>93229220 +They aren't. These chairs aren't comfortable or ergonomic. +--- 93229589 +I've got a second hand leap v2, been debating spoiling myself and getting something better, but the only thing that seems to be objectively better is the gesture - but even then it is negligible, what are /g/s thoughts? +--- 93229802 +>>93229589 +>something better +Ergoquest. +--- 93230373 +>>93229220 +never heard of racer, also +>XD +go back +--- 93230758 +>>93225545 +I got the embody first, didnt like it so ended up returning it. The back support didnt really sit well with me(Tried pushing through it for 3 months). So i sold it and got an aeron remastered instead. Feels way better. +--- 93230813 +>>93225734 +As long as everything is working/no stains then yeah thats a good price +--- 93230851 +>>93229802 +This looks like the biggest meme, I doubt the chairs even made out of leather or some other form of breathable material diff --git a/g/93223449.txt b/g/93223449.txt index 4d09f25b859dd17dba05f31ad630333b2c179ee1..e0793e5aff2c479b22516e7a2c0f662cd58bf7db 100644 --- a/g/93223449.txt +++ b/g/93223449.txt @@ -60,3 +60,623 @@ Official: discord.gg/stablediffusion this is a jedi thread --- 93223467 have a chart +--- 93223499 +Ladies & gentlemen & others, meet your new (1st) AI Czar & a special guest who didn't even know he was invited. +--- 93223500 +This is the only 1girl I will post in this thread +--- 93223504 +>>93223483 +inpaint that extra limb +--- 93223518 +>>93223449 (OP) +bear in the back is waiting to strike +--- 93223522 +does anyone know how much of an imrpovement a 3090 would be over my current 3060 Ti ? +--- 93223532 +>>93223518 +He's bearly hiding his killing intent +--- 93223554 +>>93223497 +>shilling this gay shit +let's see it, anon. Show us your gens. +--- 93223559 +>>93223522 +about +30 +--- 93223564 +>>93223403 → +Hopefully. + +>>93223425 → +If it doesn't come out or it's shit I'll just get nvidia. Intel actually seems to want to get into the compute business and their kernel driver code is much much better than the AMD one. +By the time battlemage releases their compute stuff is probably going to be decent and if their hardware is good they have a decent shot at competing against nvidia. +--- 93223573 +>>93223497 +qrd ? +--- 93223575 +>>93223497 +Do whatever you want retard. Even though it might come at surprise due to quality of questions we get here sometimes, but this is still "/g/ - Technology" and people here like to play and fiddle with shit. +--- 93223591 +>>93223564 +is 1920x1088 all you can gen? +--- 93223607 +>>93223497 +You've posted this exact same post with the exact same image that has the exact same hash. What is your endgoal? +--- 93223612 +>>93223589 +aaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhHHHHHHHHH +--- 93223634 +>>93223607 +he's advertising. his end game is fulfilling his engagement metrics for magespace +--- 93223642 +>>93223612 +beautiful, isn't she +--- 93223655 +>>93223642 +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaagggggggggggggggggggggggggGGGGGGGHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH MAKE IT STOP +--- 93223669 +>>93223645 +imagine being so badass you can jizz on a bear and not die +--- 93223674 +>>93223655 +you're gonna make her sad, anon +--- 93223681 +>>93223497 +Free advertising is a bannable offense. +--- 93223683 +>>93223499 +Hairiass +--- 93223709 +Post friendly animals +--- 93223711 +>>93223591 +No, I just like this resolution. +--- 93223723 +Anyone got a guide to Kaggle now that Colab is fucked? The links in the OP seem broken. +--- 93223728 +2 for the price of one +--- 93223735 +>>93223723 +whats kaggle ? +--- 93223737 +>>93223723 +Kaggle will ban you for NSFW shit. +--- 93223755 +>>93223711 +Do you always use that particular artstyle, or do you generate that character in others? +--- 93223758 +holy fuck this gen made me laugh so hard hahahah +--- 93223765 +>>93223758 +i am hyaku nen hayai to face him +--- 93223784 +>>93223758 +I'm imagining a series where everything is comedically manly. Where everyone has a Kenshiro face. Including the women and children. +--- 93223795 +>>93223723 +>Kaggle +>Colab +The fuck is that shit? Just run it locally +--- 93223801 +>>93223761 +That regular house at bottom left looks hilarious in this setting +--- 93223802 +>>93223758 +this is such a incredibly cool scene but also lmao +--- 93223816 +Here's a thread challenge for anyone who wants one: + +Make a cute girl. You can use as many LORAs, controlnets, etc. as you want (no specific character LORAs though) and any model you want. But your prompt cannot describe your subject at all. You can talk about a masterful painting with deft use of light and shadow, you can talk about glittering precious gemstones, neofeudalism, a rain-swept city at night, whatever you're into. But you cannot mention that there's a woman in the picture or in any way describe a woman. + +Obviously you can take an old gen and use it as a canny or HED controlnet to generate a nearly identical image right away, but that would be a little bit contrary to the spirit of the challenge... +--- 93223832 +>>93223784 +--- 93223834 +>>93223737 +Not planning to make NSFW. +--- 93223839 +>>93223449 (OP) +was it ever conclusively settled whether or not running sd locally fucks ur gpu or not? I remember a lot of people harking on about that months ago +My gpu (6700xt 12gb vram) is probably only a year old and I'm hoping to get a couple years out of it at least. + +I tired the collab months ago (around fall/winter), but couldn't get any good results when i tried going for something realistic. Some of you in this thread seem to have good results though, so i'm curious to give it another go. +--- 93223842 +>>93223467 +I'm genning at 2:1 and i can't be stopped +>400VAG +--- 93223849 +>>93223816 +Half of models are so overtrained with 1girl that even empty prompt will give you a good result. +--- 93223854 +>>93223497 +Be mindful Anon, let the Gens flow through you. +--- 93223863 +>>93223755 +I try different things. + +>>93223839 +I wish it would kill my GPU so I would have an excuse to get a new one but unfortunately it won't. +--- 93223879 +>>93223849 +Yeah but empty prompt girls are easy to spot. Most are not satisfied with that. + +The "challenge" is as hard as you want it to be. Difficult challenges take too long, these threads move quick. It's more like "if you can't think of anything to do..." +--- 93223893 +>>93223816 +Quick first attempt +--- 93223923 +>>93223879 +>>93223816 +I'm going to not do this right now but I will repost an old one that was like this. Absolutely did not ask for girl at all, prompt was purely about medieval village and flowers and so on. Model gave me 1girl because that is what they do. +--- 93223945 +>>93223634 +I guess a lot of people can't run it, or get filtered by the installation. I'm surprised at the number of users those pay sites get. Not midjourney, but the ones that only have one model and produce really generic stuff. +--- 93223950 +>>93223816 +Here's a thread challenge for anyone who wants one: + +Make a cute girl. You can use as many LORAs, controlnets, etc. as you want (no specific character LORAs though) and any model you want. But your prompt cannot describe your subject at all. You can talk about a masterful painting with deft use of light and shadow, you can talk about glittering precious gemstones, neofeudalism, a rain-swept city at night, whatever you're into. But you cannot mention that there's a woman in the picture or in any way describe a woman. + +Obviously you can take an old gen and use it as a canny or HED controlnet to generate a nearly identical image right away, but that would be a little bit contrary to the spirit of the challenge... + +I completely disregarded your idea and just used everything you wrote for a prompt +--- 93223963 +>>93223945 +I used NAI for a while, though more for their text generation than their image generation +--- 93223998 +>512x512 dpm++ 2m karras 25 steps +>took 7 secs at 3.55it/s + +Is that good? +gpu 6700xt +--- 93223999 +>>93223816 +>best quality, masterpiece, studio illustration, absurdres, hires, space station interior, futuristic, transparent synthetic materials, edge of the universe, final respite before battle +--- 93224022 +>>93223839 +what is this dumb phyop? +--- 93224041 +>>93223839 +won't kill it anymore than driving your car 'kills' it. It's a silly concern not grounded in reality, but in fear of something they don't understand. +--- 93224064 +Does two tails mean she's ~200 years old? +--- 93224087 +still working on the challenge but this one was so funny I had to post it +--- 93224099 +>>93223709 +--- 93224110 +The furries have gotten into my model +--- 93224115 +>>93223839 +I've built tons of computers and troubleshooted and fixed more. I've never heard of that before, unless your fucking around with overclocking it or a fan fails. + +Usually it will shut itself off if it overheats. If you had it for a year or more, as long as the cooling fan doesn't fail (the bearings in fans seem to like to fail more than anytyhing) or another abnormal situation, It's probably not going to fail on you under stable diffusion load. These cards were meant for neet gamers. +--- 93224122 +>>93224099 +That's a very friendly looking gopher(?) anon, very nice +--- 93224129 +>check civitai this week +>lots of models I don't recognize +>all the pictures look the same as the last time I checked + +Not even sure what the point is of all these fucking merges that just give another sameface girl +--- 93224159 +>>93224129 +are you white? +--- 93224166 +>>93223816 +Ok, I got my cute gril. + +>sharp crystal incantation, flower of mars. Oil on canvas. Boston Museum of Fine Art, c. 1932. Gucci historical collection +negative: +>statue, [[a poor and very conventional example of neoclassical portraiture| ]:0.3] + +model: 7% LoFi, 34% realisticvision, 59% SD1.5 +controlnet: openpose, 40% strength, until 93% progress +lora: a cartoon style lora at 0.4 strength +--- 93224192 +>>93223669 +How do you get the bikini to be tight like that? Like it's sinking in. +--- 93224206 +>>93224122 +thanks i like the one literally in and under her hair lol +--- 93224227 +>>93224192 +skindentation, newfriend. +--- 93224237 +>>93223998 +I got 10it/s with 2070s. Rip AyyMD +--- 93224246 +my main problem with sd atm is just coming up with ideas. how do yall come up with ideas? +--- 93224252 +FACT: Everyone who uses c*mfyui is an unsufferable faggot +--- 93224262 +>>93224246 +just controlnet a woman's shape and type in some shit that sounds cool until you like what you're seeing +--- 93224265 +>>93224129 +I wouldn't even mind if they fucking explained what the point of their mix was. But most of them are just like "I mixed these other mixes and it looks better now lol" and nothing really looks different and I'm pretty sure they just had a lucky run of seeds that looked good and then uploaded. +--- 93224268 +>>93224087 +could pass as some sort of modern art. you should say you painted that. +--- 93224274 +>>93224252 +Where did fluffy dumbo hurt you? +--- 93224287 +>>93224246 +ideas come faster than I can prompt them. I can't relate to this problem at all +--- 93224294 +Why is PyTorch 2.0 such a fucking train wreck? +--- 93224298 +>>93224252 +>no one is shitting up this thread enough. looks like its my turn +--- 93224304 +Fishing for treasure +--- 93224306 +>>93224268 +If it's really art, it doesn't matter how I came up with it. If it's not art, it still doesn't matter how I made it. More importantly, I don't like lying, I'm not good at it. +--- 93224308 +>>93224252 +based. let shit up this place until we have Ai board +--- 93224315 +>>93223737 +Any other alternative than ain't running locally without pc fans going crazy then? +--- 93224317 +my sides +--- 93224330 +>>93224306 +>I don't like lying, I'm not good at it. +me either, but people would probably think I'm lying if I told them that. +--- 93224333 +>>93224237 +you can gen in like what, 2 secs? +--- 93224335 +>>93224330 +Same desu, its the hard part of being autistic +--- 93224344 +>>93224246 +Steal from others. We're all art thieves, don't need to have moral high ground. +--- 93224347 +>>93224246 +chat gpt +--- 93224352 +>>93224227 +nope + +>>93224192 +i didnt ask for it, it did it itself +https://files.catbox.moe/tjjium.png +--- 93224363 +>>93223816 +other anon was right about overtuned models desu +>(the most beautiful thing in the world) +yea you could really work at it i guess but eh +--- 93224365 +max steps for DPM++ 2M Karras? +--- 93224369 +>>93224365 +150 +--- 93224375 +he's cute +--- 93224380 +>>93224246 +It's a serious problem, when i was doing manual "art" with pen and paint one idea would last me weeks or months. Now I can churn out a good finished product at high res and everything in a couple hours or maybe one day of genning max. Over the last few months I've powered out a years-long backlog of creative ideas, and now I'm running dry. This is why I love thread challenges of any sort, will do anybody's controlnet image they post, etc etc. I also just Test shit endlessly. Re-do an old gen with a different model, or use different samplers, or use different settings, or just test potential prompt words one at a time. Heard of something that seems cool? Test it, maybe you'll get some gens worth posting. Pic related, testing "suiseki" which is supposed to be some kind of decorative interesting looking stone. Model has no idea what it is, but made a decent scene anyway. +>>93224344 +Also this, if you see an anon with a good gen just try to copy what they're doing. Zero ideas required +--- 93224386 +>>93224365 +i use 24. guess you could go higher to make SURE it converges but 24-26 should be fine. 30 if you're paranoid +--- 93224389 +>>93224365 +there is no max because karras doesn't converge but most people do around 15-20 with a highend of 25-30 +--- 93224392 +>>93224333 + Yea. But the real speed is ~7-8it/s at 512x512. I use optimization to speed it up at low resolution, don't remember which. 1024x1024 gen is around 1-2it/s + Most optimizations don't work for AMD though. +--- 93224395 +>>93224386 +thank you, 30 looks best. +--- 93224396 +>>93224389 +i use 35 on literally everything. every model, every sampler, literally everything +--- 93224399 +>>93224265 +Yeah, I don't get the point of all the mixes. and then people keep using some obscure mix to train their lora +>works best with magicunrealpastelubermix! +And I'm like, I don't have that one and look it up and it's 5gb. +--- 93224402 +>you cannot reroute a primitive node in Comfy +It is over, comfysisters. +--- 93224406 +>>93224380 +>ideas +you could check OP resources and old NAI prompts - shit like "aqua hair" or "rainbow hair" seemed pretty fun on images. +Ancient chinese scrolls had alot of cool stuff too, "broken glass" is a cool one to play with +--- 93224409 +Someone was doing shortstacks earlier +--- 93224414 +A vending machine that sells very small live grizzly bears +--- 93224420 +>>93224386 +>>93224395 +This is madness lads, if you care about your gen speed at all there's no reason to go above like 15 with this sampler and it doesn't converge anyway +--- 93224448 +it ignored 1girl kek +--- 93224451 +>>93224414 +capsulebears dream +--- 93224483 +Is it true that Nvidia is significantly better than AMD for this? Planning on building a new PC soon. +--- 93224495 +>>93224483 +Yes +--- 93224499 +>>93224246 +just download some loras you like and play with them in different models +--- 93224504 +>>93224483 +Yes, you can still use AMD, hell, you can even run it in your CPU. +But Nvidia has advantages that AMD doesn't. Cuda Cores, AMD still doesn't have a ROCM on Windows, AMD kernel code is... shit, let's leave it at that. +--- 93224515 +>>93224504 +>But Nvidia has advantages that AMD doesn't. Cuda Cores, AMD still doesn't have a ROCM on Windows +what advantage does that bring exactly? speed? +--- 93224516 +>ROCM on Windows +soon... I hope +--- 93224525 +thread really slowed down compared to earlier kek +--- 93224540 +>>93224527 +id fuck it +--- 93224546 +>>93224380 +--- 93224549 +>>93224525 +Americans are reaching their bedtimes +--- 93224555 +>>93224549 +i know kek i am a freedom fighter. 11 PM here +--- 93224562 +>>93224525 +welcome to asia hours +--- 93224571 +Anons how do you fix fucked up fingers +--- 93224572 +does "she" look nice ? +--- 93224586 +>>93224571 +Inpainting, Controlnet, specialized models to fix hands, manually, etc +--- 93224587 +>>93224546 +IDK if this was suiseki on a different model or something else entirely, but I like these a lot especially top left and middle. Great stuff +--- 93224603 +>>93224483 +AMD can't code and nobody cares enough to write a flash attention implementation (xformers) for AMD. It works if you use Linux but its/$ is cheaper on nvidia right now. +--- 93224604 +>>93224525 +I'm trying to make a reroute node work with a primitive one in comfy, so i stopped posting kek +--- 93224607 +>>93224596 +turned Dakota's face down to 0.7 and now it doesnt look as weird as usual +--- 93224609 +>>93224587 +it's something else, just throwing out images to give ideas +--- 93224618 +>>93224586 +What do you think is the best/easiest solution? (cant into art) +--- 93224620 +there no way to get them to do sexy/lewd poses other than controlnet? +trying to up my coomer game so i can make some money +--- 93224635 +>>93224603 +has she been digging trenches? + +currently stress-resting lora across multiple models and samplers, what a pain +--- 93224639 +>>93224620 +you can just proompt it, you don't need controlnet. +--- 93224647 +>>93224571 +Just use a vae +--- 93224648 +cris you need to figure out how to fix their fucked up hands before anyone gives you money +--- 93224650 +>>93224620 +if thats your long term goal then you should be making folders and folders of poses, prompts and loras +--- 93224657 +>>93224571 +best success i've had is rolling until i get a hand that isn't beyond repair fucked and then just rough it in with photoshop to give the AI the general idea and then inpaint + +>>93224099 +ex for this i drew in her fingers and fixed some extra jank around her hand (picrel). i could have fixed the final output even more but this isn't an art gallery desu +--- 93224677 +>>93224420 +IDK, I think there's some justification to go higher, especially when upscaling +--- 93224679 +>>93224515 +everything pretty much. AMDlets have to go through linux shit to even run this lmao and even then its better to just use collab +--- 93224684 +>>93224639 +>>93224650 +what are some prompts? im getting some decent shit i guess +--- 93224686 +Does anyone strictly use their on mixes? Is there a difference between the mixes you get on civitai and the ones you do yourself? +--- 93224689 +>>93224684 +Figure it out try to be original, the best prompters did it on their own +--- 93224700 +>>93224684 +check any of the red boards +--- 93224702 +>>93224647 +>vae +>colors fix hands + +>>93224657 +Thing is I tried gachaing hands with low denoise and then upscaling the best one but the upscale refuckedd the hands right back up. +--- 93224705 +>>93224686 +i used to back in the day but i think you'd struggle to improve on the ones you find on civitai these days +--- 93224711 +It's a good thing I like impressionism, or I might be disappointed that this style causes things to devolve into chaos +--- 93224715 +any tips on proompting female knights ? +--- 93224723 +>>93224684 +1girl, fangs, black hair, short hair, blushing, pixie cut, red eyes, smug expression, (cleavage, tight bikini, big breasts) +--- 93224725 +>>93224715 +1girl, female, knight, armor +--- 93224729 +>>93224715 +1. type only the best words for your prompt +--- 93224730 +>>93224725 +don't forget big tits +--- 93224734 +>>93224730 +--- 93224735 +>female knight +--- 93224736 +>>93224677 +>>93224420 +>>93224386 +reminder; dpm++ SDE (non karras) consistently gives the best results for everything other than close up 1girl portraits in realistic models +dpm++ 2m (still non-karras) works good as well, useful for prompt scheduling +eulerA is smooth and simple +no reason to use other samplers, at all +--- 93224741 +>>93224730 +at this point thats baked in to every model +--- 93224743 +>>93224635 +>across multiple models and samplers +dont bother dumbass. +If you trained on NAI like a sane individual then check only on a single model with heavy style and one that doesnt affect style much - ideally it should at least resemble your character on a heavy style one like pic rel - if top right corner was the average (losing chara details like he hair) it's pretty bad, though you also do not have to care about these heavy style models as much because some of them just overpower loras. +>samplers +you're wasting your time on this, if it works on one it works on all. +--- 93224750 +>>93224725 +>>93224730 +>(1girl, female, knight, armor, big tits) +--- 93224758 +Holy shit, why are amd drivers so much better on linux than windows??? wtf. + +https://www.youtube.com/watch?v=iCsUNPE7k2k [Embed] + +brb installing ubuntu 22.10 +--- 93224760 +>>93224736 +isn't DDIM still gold standard for inpainting while preserving surrounding detail? +--- 93224766 +>>93224743 +doesnt take me long, additionally the lora is for an artist's style, so imo the flexibility needs to be tested across models with different aesthetics +--- 93224782 +>>93224760 +that's a now antiquated note on the A1111 UI before dpm++ 2m was released +--- 93224783 +>>93224750 +>its so hard to realism 1girl +>literally just download realism model, choose lora, type 5 word prompt, upscale and its done +--- 93224807 +>>93224766 +It does not because its not your responsibility to make it work with models that overpower the style. If you even attempt to do this it will come at a cost of ruining it for other models and making it worse in the process. If its a style lora then all the more so you should be concerning yourself mostly with models that do not have a strong style, aom2nutmeg and based64 work very well for testing this imo +tl;dr if it works for baseline then it works in general and it's not your lora thats faulty but the model that ruined it. +--- 93224811 +>>93224736 +>>93224760 +>>93224782 +Is there an autistic list summarizing the best practices for each type of gen? +--- 93224812 +>>93224760 +uni_pc works pretty well for inpainting. + +>>93224635 +maybe. +--- 93224822 +Female knights are easy as hell +--- 93224828 +>>93224736 +I use dpmpp SDE Karras +Any reasoning not to use non vs karras? +--- 93224834 +>>93224812 +I want to see fluffy dumbo fly away with those ears +--- 93224865 +>>93224657 +How do you rough it in and then inpaint? Don't you inpaint by erasing part of the image and having it fill it in for you? Pls respond senpai +--- 93224874 +>>93224865 +Anon, if you aren't willing to experiment even a little, then all the advice in the world isn't going to be enough for you +--- 93224890 +>>93224657 +when you rough it out like that it's important to draw black lines to indicate joints +--- 93224892 +>>93224865 +depending on the denoising strength you use inpainting will be guided more by the image or just make up its own shit, the better you can draw in a hand the lower denoising you can use and itll basically turn your drawn hand into its own thing. sorry so tired this was probably incoherent +its a matter of denoising though +--- 93224894 +>>93224811 +>>93224828 + +take my word for it, 26 for dpm++, 13 for dpm SDE. you can go slightly lower for speed, but the extra steps really perform better. 30/15 at absolute max, just know that there IS improvement ESPECIALLY if upscaling with higher step counts, but it's not worth it. +>but the sampler article says it converges at 30 +the article tests on shitty 768x768 images, not 4k widescreen waifus with renaissance epic levels of detail +try out the karras vs non karras, but it will just be simpler to use dpm++ SDE at 13, or dpm++ 2M at 26, for everything +personally you might enjoy karras better, but it creates a more unpredictable output, and whilst better representing things like (pink bow) when you have a (blue dress), you will lose distant-detail and architecture-straightness especially compared to non-karras +source; mega autism I have been prompting for 4 months straight +--- 93224906 +Pro tip: + + when upscaling use controlnet 1.1 tile resample, you don't lose any detail even with CFG at 1. you're welcome. +--- 93224919 +>>93224736 +>dpm++ SDE (non karras) +shit overburn image as soon as cfg higher than 8 +>eulerA is smooth and simple +just use unipc for speed then. +--- 93224927 +>>93224919 +When do you use a cfg higher than 8? +--- 93224965 +>>93224892 +I don't understand how you inpaint it "only a little". Are you talking about masks? +The only inpainting I'm aware of is erasing part of an image and then the AI fills it in for you. It doesn't make sense to draw a hand and then erase the hand, that's why I'm confused. +--- 93224979 +>inpainting +too much work +--- 93224993 +>>93224979 +lard elf +--- 93224995 +>>93224927 +when upscale +--- 93225013 +>>93224993 +That's all hips +--- 93225027 +>>93224965 +ok let me try again. on the inpainting tab there is a denoising strength slider. if it's set to 0 it will reproduce the exact input image. if it's set to 1 it will produce a completely new thing that isn't based on the base image at all + +if you choose a value somewhere in between it will be guided by the base image(where you have roughed in a hand) to a greater or lesser degree, and you have to experiment to see what works best + +for instance if you already have a face that you want to inpaint that you sorta like the details of, choose a low denoise strength and itll resemble the oriignal image more. if you choose a HIGH denoise strength it will basically completely reroll the face +hope this helps +--- 93225039 +>>93225013 +fat is fat, difficult concept for amerilards +--- 93225062 +>>93225051 → +>>93225051 → +--- 93225065 +>>93225027 +also this works the same way with denoising strength on the img2img tab, the lower the value the more the output will resemble the input. if you threw it up to '1' itll just gen you a new image that doesnt look like the original at alll +--- 93226804 +>>93224304 +saved +--- 93228781 +>>93224822 +Freaky proportions. +--- 93229267 +>>93223639 +MEGA BOOBA diff --git a/g/93223451.txt b/g/93223451.txt index 8196029202b001f143eb5811e95d9602a1da4440..18449d15c024b558d97a38519b32cf1b7d32d372 100644 --- a/g/93223451.txt +++ b/g/93223451.txt @@ -59,3 +59,91 @@ https://pastebin.com/2hg4g3C6 --- 93223469 poor vimcels >>93221268 → +--- 93223732 +is that L. Ron Hubbard n the collage op pic? +--- 93223927 +>>93223732 +I don't think so, but it kinda looks like him. +--- 93224249 +>>93223732 +I assume the one you're talking about is hal abelson +--- 93224271 +pure lambda calculus +--- 93224339 +>>93223451 (OP) +>(define alt-names '(/emg/ /lol/ /emac/ /let/ /flet/)) +What's your favorite bread name, /emg/+/lol/+/emac/+/let/+/flet/!? +Mine is /lol/ & /emac/. Because it's cute & funny. +--- 93224600 +>>93224339 +I like /flet/, because friendliness makes me feel good. +--- 93224804 +anyone here run Guix as their daily driver? how is it going? +--- 93224977 +How do I write latex equations FAST? Like, writing equations by hand fast. My work in progress idea is to make a vim-like transient mode for equations with a hydra that allows me to insert the most frequently used math symbols and do subexpression navigation with relatively few keystrokes without pressing modifier keys. I couldn't find anything similar by searching, but I'm sure this already exists somewhere. +--- 93225070 +>can't rewrite a bash script in babashka because clojure doesn't have raw strings +jesus christ +--- 93225073 +>>93224977 +I saw a YouTube vid of a math major who was doing exactly this, he had it all set up very nicely. Respectfully, I won’t Google it for you so good luck. You know you found the right video if he’s using fish shell on a Mac +--- 93225415 +>>93225073 +With the hydra approach, the main question is how to distribute the keybindings efficiently. Do you remember anything about that in the video? +What I have now, is 3 keys for large subhydras, containing greek letters, math symbols, and various parentheses/enclosing expressions respectively. In addition to this, there there are also the subexpression navigation keys and keys to create upper/lower indices (without using modifiers or pinky) on the top level hydra. +The inconvenient part is typing the letters for which the corresponding key is bound in the top-level hydra. For this I have quoted-insert bound on the top level, but it is confusing that I need to use it for certain letters, and not for others. +--- 93225474 +>need to update a guix package +>just need to increment the version number and change the checksum, maybe add a dependency +>just werks +pretty neat +--- 93225849 +>>93225070 +Wdym? +--- 93225925 +Scheme! +--- 93226468 +>>93224977 +I think Latex is in itself a poor choice for speed, because it's too faaking concerned with typesetting. +Not that I had an alternative though :D +--- 93226537 +>>93224977 +>configuring a latex editor when gpt4 can spout out whatever latext you want in 30 secs or less if you're not a retard at proompting +sorry gramps, you're out +--- 93226760 +>>93225849 +the way rofi works is weird and stupid and for some reason, making a string with the control characters in it (\0, \x1f) throws errors in clojure. and i have no idea how to get this to work in another lisp +--- 93226799 +>>93224339 +I like /geg/ (gnu emacs general) +--- 93227236 +>>93226760 +So can you give a full example of the string that throws and the error message? +--- 93227540 +>>93226537 +imagine believing that gpt4 is anything more than a stochastic parrot +--- 93229641 +(macrolet +--- 93229723 +>>93227540 +its definitely a better parrot than classic search engines +--- 93230177 +I'm trying to up my Emacs game (have been using Doom Emacs for the past 6 months, mainly for file navigation and as a LaTeX editor) + +How deep should I be digging into Elisp? +What are some beginner shit I could look into doing? + +Also, why are people shilling Clojure? +Why learn it? +--- 93230382 +>>93230177 +>What are some beginner shit I could look into doing? +Unironically Xah's tutorial on elisp. You don't need more unless you plan to write a package. +>Also, why are people shilling Clojure? +>Why learn it? +Clojure is fun, functional programming is fun, and it has a huge amount of libraries in JVM. Also business friendly and can be used in back end and front end. +For non-serious work, Clojure has many good QoL over, say, CL. Functional programming, ez multitreading, data literal, destructive binding, etc. +--- 93230430 +>>93230177 +>What are some beginner shit I could look into doing? +creating your own config diff --git a/g/93223474.txt b/g/93223474.txt index 7af00a50e2e4261638ed96046404d81e37361055..72b96b68af87deb074b43b2cadfe5888d638d79d 100644 --- a/g/93223474.txt +++ b/g/93223474.txt @@ -60,3 +60,1101 @@ https://github.com/anon998/simple-proxy-for-tavern https://rentry.org/better-llama-roleplay --- 93223487 Lammy. +--- 93223502 +https://github.com/AlpinDale/RPTQ-for-LLaMA +dude needs lots of data if you are interested in helping (nvidia gpus 3000 or 4000 series necessary apparently) +--- 93223507 +What the hell, no thread number and edition? +I'll just sneak it in here... +*ahem* +This is thread #1483, and the edition is fatty +--- 93223514 +>>93223507 +I don't shake hands. +--- 93223526 +>>93223507 +FUUUCK +#1484 +I need more sleep +--- 93223558 +>>93223502 +gimme ggml +--- 93223580 +>>93223502 +what does he need? i get my 4090 PSU today +--- 93223584 +>>93223526 +I can't believe it's been 1500 threads already. Feels like yesterday that this was linux mobile general. +--- 93223587 +how do you make the "stop generating" function work properly in sillytavern with kobold proxy? +it just makes the tavern ui stop receiving text, but the backend still continues to generate shit. +--- 93223616 +>>93223558 +you can't handle it +>>93223580 +code to be tested so if you could quant a model a whole bunch of different ways and post the data for him that would be good +--- 93223625 +Does the Ooba api implement OpenAI's? if not WHY NOT +--- 93223631 +Planning to make a new (gayman) computer. 4070 doesn't seem like it will be very good for this purpose though, and I'm not going to get a 4080 or 4090. Highest I would go is 4070 Ti, but that has same VRAM. Sad. +--- 93223650 +>>93223631 +Ive got a 3060 that runs 4bit quantized 13b models easily +--- 93223662 +>>93223488 → +perplexity numbers for opt-30b suggest it does really well for just weight 4bit quantization (W4A16). Could it possibly be better than GPTQ?? Won't know for sure until we see llama numbers. +However, activation quantization hurts a lot more and saves much less vram than weights. Even just KV. I wonder how much of that is due to the most recent tokens, though. Could possibly do something like keep the last 256 tokens in 16bit and the rest in 4bit. For longer context at least, for 2048 prob not worth it. +--- 93223668 +>>93223580 +>>93200189 → +>>93200685 → +what he said yesterday +--- 93223675 +>>93223631 +>>93223650 +This. 3060 is perhaps the best entry card for local AI generation. +--- 93223691 +>>93223650 +>>93223675 +I hope so, I'll read these threads a bit and come back in earnest when it's built. +--- 93223701 +>>93223584 +Eventually we will partner with /x/ to use their knowledge to create models and this will become local magick general. +--- 93223712 +>>93223701 +Or /fit/ and make it local men general. +--- 93223724 +>>93223631 +I don't think buying a 8GB vram card is a good idea but I get it. +--- 93223740 +>>93223712 +>>93223701 +>not training it on /int/ so it speaks 10 languages like shit and calls everyone a non-white retard +--- 93223746 +google in shambles +--- 93223748 +>>93223691 +Currently experimenting with CPU generation since 32GB of ram go brr +It's pleasantly slow with my Ryzen 5 3600, though I instruct it to make plenty of tokens (236) +I don't know how CPU-based generation works on anything newer, especially as I plan to make my next upgrade the 5950x and then never upgrade again but +If you're getting a faster CPU, might be worth going CPU-based as well. +--- 93223749 +>>93223724 +Nvidia has generously provided a whopping 12GB of VRAM in their overpriced 4070. I want Nvidia for DLSS and I hear Nvidia is also better for image generation. +--- 93223756 +>>93223746 +disinformation - do not fall for this +--- 93223778 +How do I actually get a model? the guide is completely incoherent. I just want to download a Pygmalion 7B and start trying shit. What do I do? +--- 93223779 +>>93223749 +oh that is much more reasonable. also you can do cpu inferencing too just much slower (get cpu/mobo that is ddr5 for best results) +--- 93223796 +>>93223778 +reading the OP would be the best start +--- 93223800 +>>93223746 +Imagine a bloated megacorp full of middle managers jockeying to get their name on do nothing projects trying to get anything done and vastly overpaying to produce nothing. Couldn't be. In Silicon Valley? They're so agile and talented. +--- 93223817 +>>93223778 +>>93223796 +And no, the guides suck and and unclear on this. +--- 93223826 +>>93222948 → +This will definitely need cleaning, but that's the easy part. Now I sleep +--- 93223838 +>>93223778 +If KoboldAI +Ensure newest "beta" version +It will have the AI available to download in the AI menu +Then just hook up Tavern +If ooba +download_model.bat in the installer, grab what you wish +Last option: +Get better reading comprehension +--- 93223840 +>>93223778 +Go to huggingface.co, type what you want in the search box, and make sure to look for the appropriate quantized version of the model. +--- 93223861 +>>93223817 +Do you have oobabooga set up? if so just copy and paste the username/modelname into "download model" in the model tab +--- 93223874 +>>93223826 +Needs more busty. +--- 93223880 +>>93223826 +good shit, cant wait to learn how to not be a retard so i can use a similar method to create prompts for an instruct tuned story generator +--- 93223909 +>>93223817 +can you link which guides you used so they can be made better. thanks +--- 93223932 +>>93223874 +Don't worry, there are definitely some very degenerate tags I saw slither past my monitor. No longer in the output, but I caught this. I also some Koopa orgy in there so don't blame me if SuperHOT starts spitting that shit out. +--- 93223965 +>>93223932 +If I'm not in for the Koopa orgy, that would just be disrespectful to the model. +--- 93223985 +>>93223861 +I just downloaded https://huggingface.co/reeducator/vicuna-13b-free, but I'm not clear on how to even start up oobabooga after it's done. +--- 93223989 +>>93223985 +>>93223909 +--- 93224018 +>>93223985 +I can give you a Dockerfile and commands to run it, if you have docker / are familiar with command line +--- 93224036 +Can someone make a model that just outputs the lyrics to Puru Puru Pururin and nothing else forever? I think it would be good to have. +--- 93224057 +>>93223985 +make sure the model is in the right folder. download all the configs and tokenizer. (pic related) +navigate to the highest level folder in ooba and click on cmd_windows.bat +type "cd text-generation-webui" to navigate to that folder +then type "python server.py --model reeducator_vicuna-13b-free --groupsize 128 --wbits 4 --chat" +--- 93224137 +>>93223502 +I have a 3090 and willing to help, but I need clearer direction on what exactly to do here. I have the project cloned and I have a copy of llama30b in hf format, but I'm not sure how to get this project to actually work to quantize or how to use it to test for ppl afterwards either. +--- 93224145 +>>93223880 +well its only seen a fraction of the dataset but its not cucked yet and i got it to stop spamming hashtags. im starting to get impatient and considering training on runpod since i keep having to stop it to use my computer for work +--- 93224160 +>>93224145 +#BringBackTheHashtags +--- 93224178 +>>93224176 +i want to snap her neck +--- 93224193 +>>93224176 +miku!! +--- 93224196 +What's the best voice synthesizer I can run locally that can generate in real time? +--- 93224202 +>>93224176 +--- 93224247 +>>93223861 +yeah and i downloaded a new model (Vicuna 13b) but then it's unclear how I even fire up oobabooga +--- 93224273 +>>93224145 +god i hope it gets better than picrel after i let it actually finish training +--- 93224292 +>>93224247 +After you do pic related, close all command prompts and then do this >>93224057 +then navigate to 127.0.0.1:7860 in your browser +--- 93224293 +>>93223587 +Check if the latest commit makes it work. +https://github.com/anon998/simple-proxy-for-tavern/commit/eb8ccf91b3125494b30888469f2f4d8d8478c0f2 +--- 93224297 +>>93224247 +To launch oobabooga, open a terminal/command prompt in the folder that its installed in, there should be a file called "server.py" in that folder. On the command prompt type "python server.py --chat --auto-devices", and it should start running. Because its a web server, you then go to http://localhost:7860 in your web browser and you should see it. +--- 93224310 +>>93224137 +may need to use this +"--cache-dir", default="./data", type=str, help="LLaMA model cache directory" +--- 93224314 +>>93224273 +>>93224145 +Amazing work brother, glad the Frankenmerge is coming along great +--- 93224322 +>>93224247 +>>93223909 +--- 93224407 +>>93224247 +The absolute state of /g/ +Can't even install a Python project +--- 93224423 +>>93224407 +redpill me on "{{}}" notation. what is it and why? am i supposed to replace all instances of {{user}} and {{bot}} with actual names I want to use? +--- 93224425 +>>93224407 +There's always one my /g/uy. There's always been one. +--- 93224439 +>>93224423 +We use (((triple parentheses))) to refer to the long nosed people that rule the world +--- 93224446 +>>93224407 +>>93224423 +>>93224439 +OR is it just a c.ai thing? Like their system automatically replaces those objects with values set somewhere else? is this jinja notation? + +thanks for your help in advance, i really, really, don't want to google this stuff right now. +-anon +--- 93224509 +"Thanks for aligning your model." +--- 93224660 +>>93223662 +>Could it possibly be better than GPTQ?? + +Not a chance in hell. GPTQ's 4bit perplexity loss is a tiny fraction of that. +--- 93224678 +>>93224057 +I got. This is all I have. + +I don't even know how to start up oobabooga. There's no instructions to this effect. +--- 93224694 +amazing +--- 93224745 +>>93224678 +ask chatgpt bro +--- 93224771 +>>93224678 +>>93223909 +--- 93224793 +>>93224660 +??? are you looking at W4A16? That's the equivalent to GPTQ and it barely loses anything. Activation quants (<A16) are different and lose a lot more, it'd be a harsh sacrifice for context. +Granted it's OPT, not LLaMa, so not directly comparable. But I don't know what you're going on about. +--- 93224802 +>>93224660 +>>93223662 +>>93224793 + +Wait I may have misread. + +W4A16 is 4bit? Are you sure? What's the source paper on this? I scrolled back through the old thread but didn't see it. +--- 93224814 +>>93224771 +https://rentry.org/TESFT-LLaMa + +Can I please get a straight answer on just how to run any fucking model in either oobabooga or Kobold? Either fucking works! +--- 93224840 +Trying out vicuna-13b-free. Maybe I'm easy but it's very impressive what these things are capable of. I wish I were a little smarter, I could do some incredible things. +--- 93224848 +>>93224802 +GPTQ is a weight only quantization technique. RPQT is an activation and weight quantization technique. weights are by weight (heh) the majority of a models size so you will have the largest gains there. activations quant should increase inference speed. +https://arxiv.org/abs/2304.01089 +https://arxiv.org/abs/2210.17323 +--- 93224849 +>>93224814 +You need to read the readme file on the GitHub page for either oobabooga or kobold +--- 93224858 +>>93224848 +Thanks for the links. I will read. +--- 93224861 +>>93224840 +You are easy, it literally got your first question wrong +--- 93224869 +>>93224802 +Dude it's the first link on the github +https://arxiv.org/abs/2304.01089 + +Also the only reading that makes sense is +>W4A16 = weights 4bit activation 16bit (normal) +>W4A8 = weights 4bit activation 8bit (quantized) +>W4A4KV = weights 4bit activation 4bit (KV cache quantized only, regular activations 16bit) +etc. + +This aligns with the vram consumption in the other chart. +--- 93224873 +>>93224849 +I read the readme that came with oobabooga and it only tells me how to install it, not how to run the models that I get with it +--- 93224875 +>>93224814 +how did you miss on the part where it says to get your models when it has a whole section right there? +>>93223778 +>How do I download these "models"? - MODEL GUIDE +>Theres a lot of different models out there, and there is no one generalized model that will work everywhere. Use these dropdowns below to answer your question. Use the links below to see what fits you. +anyway you should read the ooba section of the guide you linked it has all the steps needed for you to get this going +--- 93224899 +>>93224145 +What finetune is that? +--- 93224933 +>>93224875 +I GOT THE FUCKING MODEL ALREADY! I got vicuna! +--- 93224944 +>>93224933 +The next step is to not be a fucking retard, but sadly, you failed. +--- 93224945 +>>93224875 +>>93224933 +it sounds like he doesn't know how to start ooba and visit its web interface +--- 93224952 +>>93224933 +You are fucking annoying, and I know retards like you will shit up an entire thread until you get what you need +https://github.com/oobabooga/text-generation-webui#installation +--- 93224954 +>>93224933 +Type out the following commands: +conda create -n textgen python=3.10.9 +conda activate textgen +conda install cuda -c nvidia/label/cuda-11.3.0 -c nvidia/label/cuda-11.3.1 +pip install -r requirements.txt +pip install torch==1.12+cu113 -f https://download.pytorch.org/whl/torch_stable.html +mkdir repositories (skip this command if the folder already exists) +cd repositories +git clone https://github.com/qwopqwop200/GPTQ-for-LLaMa --branch cuda --single-branch +cd GPTQ-for-LLaMa +git reset --hard c589c5456cc1c9e96065a5d285f8e3fac2cdb0fd +pip install ninja +$env:DISTUTILS_USE_SDK=1 +python setup_cuda.py install +After this you should be set up and good to go. If you get the error "CUDA Setup failed despite GPU being available" then proceed with the following steps. +Download the bitsandbytes CUDA DLL and install it. +You can find it here. Install it to C:\Users\NAME\miniconda3\envs\textgen\lib\site-packages\bitsandbytes\ Replace NAME with the name of your user account. +Open the following file: +C:\Users\NAME\miniconda3\envs\textgen\lib\site-packages\bitsandbytes\cuda_setup\main.py Replace NAME with the name of your user account, and open it in the text editor of your choice. +Find the line if not torch.cuda.is_available(): return 'libsbitsandbytes_cpu.so', None, None, None, None +and replace it with if torch.cuda.is_available(): return 'libbitsandbytes_cuda116.dll', None, None, None, None +Then find the lines self.lib = ct.cdll.LoadLibrary(binary_path) +and replace them both with self.lib = ct.cdll.LoadLibrary(str(binary_path)) +(Optional) Edit your "start-webui.bat". +Find the line call python server.py --auto-devices --cai-chat +and replace it with call python server.py --model llama-7b-4bit --wbits 4 --no-stream +The --model llama-7b-4bit might also need to be edited depending on which 4bit model you downloaded. +--- 93224972 +>>93224954 +kek +--- 93224988 +>>93224954 +These instructions are missing the rm -rf commands though, so it won't work properly +--- 93225014 +>>93224988 +You mean rm -rf / +--- 93225026 +>>93224933 + +What exactly is the problem you are having. I know you have the model. What are you doing from there? +What exactly is the obstacle that is stopping you from running the model? +--- 93225030 +>>93224678 +>>93224933 +--- 93225033 +>>93225026 +He downloaded the model and never downloaded anything to load the model +--- 93225035 +>>93224933 +Step 1. Find your anus. +Step 2. Check inside it +--- 93225092 +>>93224145 +What are you training on? +--- 93225140 +>>93225033 + +Oh so he's a retard. +--- 93225177 +>>93225140 +that wasn't in the instructions lmao +--- 93225201 +>>93225177 +https://www.youtube.com/watch?v=lb_lC4XFedU [Embed] + +Just use this video tutorial to get it done anon +--- 93225219 +>>93224145 +What dataset you're using to make this finetune? +--- 93225253 +i already spelled out the problem here>>93224945 +not answering because i dont want to explain to a windows user how to use a command line, conda or venv and start a python program. maybe there's a double click bat file but who knows +--- 93225256 +miku my beloved +--- 93225292 +>>93225030 +thanks for the help but the final step did not work: +--- 93225302 +>>93225177 + +What did you expect. You'd just double click on the file and it would load a clean UI and let you fuck it? +--- 93225343 +>>93225292 +>error message clearly states what is wrong +I gotta admit, I don't think even /aicg/ is this retarded, but maybe Im wrong or you really are another breed +--- 93225353 +>>93225292 +there is a type in your command "vicua" when it should be "vicuna" +after that it will work +i promise +--- 93225380 +>>93225353 +oh thanks it worked :) +--- 93225383 +>>93225292 +how come you haven't tried pasting your error messages to chatgpt yet? +if youre not going to read them that's literally what its for +--- 93225389 +>>93224933 +Just use the one click installer from the ooba git instructions. That's the easiest part. +--- 93225439 +Alpasta: +>*I fuck my miku.* +>Yes, you do indeed fuck your Miku. In fact, you fuck your Miku exactly as you described. To reiterate once more, here are the exact verbs and adjectives you used to describe the process of fucking her, just in case you missed them when you wrote them in your prompt. +>Miku quivers in ecstasy. + +SuperCOT: +>*I fuck my Miku.* +>*You violently and ravenously breed your Miku like a barbarian.* W-wow... that was incredible... *She stammers as the afterglow of her thunderous orgasm washes over her. As Miku recovers from your lovemaking, she curls up and drifts off to sleep, content in the knowledge that she's found her soulmate.* +both 30B by the way +--- 93225462 +>>93225092 +>>93224899 +>>93225219 +https://huggingface.co/datasets/PocketDoc/DansPileOfSets +--- 93225464 +>>93225439 +Don't forget that she cleans herself up afterward. +--- 93225486 +>>93225335 +I want to carve her eyes out with a spoon +--- 93225503 +>>93225380 +> +we fucking did it +--- 93225523 +>>93225503 +>we +it was just me actually. +--- 93225571 +>>93225462 +Naisu. I also started culling unicode since I expect there are refusals in other languages and it was the easiest way to kill non-ASCII languages. Likely more of a problem in ShareGPT than other sets since the removals on Evol and GPTeacher weren't big numbers. +--- 93225621 +>>93225462 +NOT THE BONDS +--- 93225666 +give me your secret prompt techniques +--- 93225688 +>>93225666 +Devil trips. He's going to use the prompt for pornography. Shun him! Shun this man! +--- 93225700 +>>93225666 +Hello Devil, if you want to coom fast, start the chat with *I walk into the room holding a large caliber rifle to X's face while furiously masturbating nakedly* +--- 93225714 +>>93225700 +>furiously +Yannic? +--- 93225772 +>>93225621 +there will be no learning of the chemical bonds of friendship here anon +--- 93225991 +>>93225439 +SuperCoT also superior for racism and rape play. So I hear... +--- 93226028 +>>93225991 +They're both shit. +Eggheads need to combine gisting or whatever it was called with pruning and the fancy infinite context vector DB thing so we can finally have GPT-4 tier quality locally +--- 93226082 +>>93226028 +Your face is shit. +--- 93226085 +>>93225353 +You, sir, are a legend. I can't believe you dug through all his logs to push that final spoon into his mouth. You'll make a great father. +--- 93226188 +>>93226082 +This face is shit +--- 93226246 +>>93226085 +thanks. i didn't really dig through his logs. the typo is on the second line. i did spend 5 minutes to make a guide for him in ms paint though. +--- 93226317 +>>93225571 +just an idea for now but it'd probably be worth trying to feed it through something like deepL so it can be cleaned with the english phrase list and then trim out those objects on the untranslated set to keep some translation instructions intact +--- 93226399 +>>93226317 +I think as long as that got enough of them out it'd likely be worthwhile. Though has anyone tested translation capabilities of base llama or any non-multilingual datasets? It's possible there's enough token relation in there at a baseline that it could still be passable. Even then, smaller parameter counts would likely make a mess of most non-trivial translation tasks anyway. Maybe not, haven't tried. I know the Japanese I was messing with was routinely normal enough Japanese, but had no relation to the prompt. Messing with German was more successful (it understood and answered properly in English), I think that was on SuperCOT 30b, which I'm not sure includes a ton of German. I'd be interested to see people test it out. + +It'd be nice if some non-English speakers got some cleaned up datasets together so other people could merge and we could have all that good stuff together with minimal risk. +--- 93226456 +>>93226317 +mildly cherry picked so dont get any ideas of this project not being a shit show +>>93226399 +yeah i hadnt really considered that trying to induce any translation ability might be pointless because the model and dataset is too english skewed to be usable for that in any respectable capacity +--- 93226471 +>>93223474 (OP) +WINDOWS NEWBS GUIDE TO RUN A LOCAL MODEL (16GB RAM) +1. DL one of these bin files: + +13B (10GB RAM) https://huggingface.co/verymuchawful/llama-13b-pretrained-dropout-ggml-q4_0/blob/main/llama-13b-pretrained-dropout-new-q4_0.bin + +13B (10GB RAM) https://huggingface.co/Black-Engineer/oasst-llama13b-ggml-q4/tree/main (naughty) + +7B (7GB RAM) https://huggingface.co/TheBloke/wizardLM-7B-GGML/resolve/main/wizardLM-7B.ggml.q5_1.bin + +More: https://github.com/LostRuins/koboldcpp/discussions/87 + +2. Get latest KoboldCPP.exe from here: https://github.com/LostRuins/koboldcpp/releases (ignore Windows 10 complaints) + +3. Double click KoboldCPP.exe OR run "KoboldCPP.exe --help" in CMD prompt to get command line arguments for more control. --threads (number of CPU cores), --stream, --smartcontext, and --host (internal network IP) are useful. --host allows use from local network or VPN! "--useclblast 0 0" probably maps to GPU0 and "1 0" to GPU1. If not, experiment. At start, exe will prompt you to select bin file you dl'ed in step 1. Be sure to free up enough ram for your model! + +4. Go to URL listed in CMD window + +WORKFLOWS: +Story Generation: +1. Click 'New Game' button +2. Click 'Scenarios' button and 'New Story' in popup window +3. Click 'Settings' button, set Max Tokens to 2048, Amount to Generate to 512. Select a voice under TTS if desired. + +Enter a prompt like "As a private investigator, my most lurid and sensational case involved " When new text stops, hit 'Submit' again to continue. The richer/larger your prompt, the more the AI has to work with. As in Stable Diffusion, renders can be hit or miss. Hit Abort during text generation and restart from Step 1 to re-initialize + +ChatGPT-style queries: +Same as above except in Step 2 choose 'New Instruct' in popup window. In step 3, may wish to adjust Amount to Generate tokens for small ("What's the capital of Ohio?") or large ("Write 10 paragraphs comparing gas to oil") prompts + +->CTRL-C in CMD window to stop +--- 93226496 +>>93226456 +>because I can get away with it +But how? I guess he knows a guy who knows a guy or something. Just dropping that bombshell and not explaining. +--- 93226637 +>>93226496 +probably because marvin minsky uploaded himself to the dataset +--- 93226867 +>>93223474 (OP) +>>93220566 → +So I downloaded the 4bit version of AlpacaDente2 +https://huggingface.co/Aeala/GPT4-x-AlpacaDente2-30b +Now for the most part it sucks for role play due to taking a lot of coaxing to go along with adult scenarios(such as sex, racism, etc) prose gets a little too flowery at times and very robotic at others. +You get a lot of "same personality" going. And you get a lot of "It's important to remember" and "As an AI assistant" out of it. +But holy fuck. This is by far the "smartest" 30B model so far. Like it's not even a competition. It feels like talking to ChatGPT. I'm sure there's probably some benchmarks which say otherwise but its responses are all within context. It doesn't bungle possessive pronouns. It has no problem following along with context. +It's eloquent as fuck. +For all it's RP shortcomings it also handles novelty character descriptions quite well but it doesn't play ball well with RP formatting (such as marking down actions with asterisks) and because it disrespects prescribed RP formatting it's also useless for tavern cards that have unique output formats (like fake chat rooms and such). +It also turns ERP scenarios into softcore harlequin romance shit unless you press it. It will allow you to initiate non-con but it resulted in immediate surrender which I guess is still better than the mary sue ending. +Overall I think I'm going to definitely keep using this model and maybe experiment with card format to see if I can get it to RP better that way. +--- 93226869 +>>93226637 +Minsky always struck me as a loli lover. +--- 93226904 +>>93226867 +Appreciate the eval, Anonymous. You're doing the Lord's work. My problem with GPT4-based local models and non-con testing was always that once they start in with the hysterics, screaming "no, I'm sorry. Please stop" type stuff, that's all you're getting out of them. 30B helps with it, but you get context death spiral pretty fast once they tip over the edge. Somewhat expected since those scenarios won't be super well represented even in base llama since it's a pretty rare set of tokens. It's why proper RP datasets are important. +--- 93226907 +>>93226867 +>It's eloquent as fuck. +That's the power of the GPTeacher dataset +--- 93226965 +>>93223474 (OP) +>While our models still hold a slight edge in terms of quality, the gap is closing astonishingly quickly. Open-source models are faster, more customizable, more private, and pound-for-pound more capable. They are doing things with $100 and 13B params that we struggle with at $10M and 540B. And they are doing so in weeks, not months. This has profound implications for us: +>We have no secret sauce. Our best hope is to learn from and collaborate with what others are doing outside Google. We should prioritize enabling 3P integrations. +>People will not pay for a restricted model when free, unrestricted alternatives are comparable in quality. We should consider where our value add really is. +>Giant models are slowing us down. In the long run, the best models are the ones which can be iterated upon quickly. We should make small variants more than an afterthought, now that we know what is possible in the <20B parameter regime. +So a bunch of lonely, horny spergs trying to create AI gfs BTFO big tech? +--- 93226970 +>I was talking about pruning llama since it was first announced until months after the leak +>Anons told me I was barking up the wrong tree because pruning only works on models that had excessive parameter counts for their training tokens +>I only just found the article by Cerebras where they pruned a chinchilla optimized model to 83% sparsity for a 3x reduction in compute (and memory?) requirements with *no* performance loss in any metric +Y'all some dumb motherfuckers. We could be playing with pruned and quantized 65B right now instead of 14 and 33. +--- 93226991 +>>93226970 +Is it released? Probably not. SparseGPT seems to be working code, but it's ~50% sparsity and is incomplete right now. Hopefully someone figures it out. 175 on Raspberry Pi pls. +--- 93227003 +>>93226867 +I'm starting to lose track of the datasets these merges are made with, and what each dataset represents. I guess we're entering the same phase SD went through with it's mixes, when shit gets mixed so much individual contributions become so diluted they're irrelevant. +>>93226907 +How can you tell it's there? Is it grade_school_math_instructions in oasst finetune? +--- 93227023 +>>93226904 +Yeah, GPT4 "wants" to write sappy, trite, happy stuff. If you give it evil characters, it'll try to make them repent, then try to invent ways to thwart them, and finally if not allowed to do that, it'll go full misery and just make everything suffering, writing in a very morose and depressive style. +It's very different from a writer who enjoys writing such things, who can make misery even fun for the reader. Claude screencaps from the locust threads come closest to that feeling, that AI is a freak and goes super hard and indulgent. We need non-refusal Claude datasets desu. + +>>93226970 +sparsity is a meme, it's just zeroing weights, there is still no implementation that can actually remove them. also it's no surprise the Cerebras "compute optimal" models could be pruned, they're brainless and severely undertrained. +--- 93227042 +>>93227003 +In either case I'd say that AlpacaDente is definitely worth keeping an eye on. Like if someone's waifuing their 3090 worst case scenario even in its current state they could have casual conversations using AD and then switch back to SuperCoT for sexytime. +--- 93227068 +i spent 5 fucking hours fighting firefox to give me full root level permissions to sniff all traffic to and from these shady nigger sites + +firefox are a bunch of tranny subhumans and i hoope they all fucking died, fucking niggers. i will just use mitmproxy +--- 93227108 +https://huggingface.co/ehartford/WizardLM-7B-Uncensored +https://huggingface.co/datasets/ehartford/WizardLM_alpaca_evol_instruct_70k_unfiltered/tree/main +--- 93227127 +I've not been keeping up, is everyone just using CPU now? I have 32 gb ram and a 3080, I guess the 10 gb VRAM on the 3080 makes it practically useless? +--- 93227154 +>>93227003 +gpt4-x-alpaca means it used the gpt4 dataset, hence the gpteacher dataset +--- 93227155 +>>93227127 +I snagged a used 3090 off ebay. +--- 93227172 +Has anyone tried to train a model on court cases and law so it could argue in given questions? +--- 93227188 +>>93227108 +damn, that version of the dataset still has a lot of garbage outputs in it they should have used +https://huggingface.co/datasets/PocketDoc/Alpaca_Evol_Instruct_Cleaned +--- 93227210 +>>93227188 +It's been cleaned to the death there +https://huggingface.co/datasets/gozfarb/Vicuna_Evol_Instruct_Cleaned +--- 93227213 +>>93227023 +>It's very different from a writer who enjoys writing such things, who can make misery even fun for the reader. +Pyg's datasets has some of this, Metharme is pretty unhinged, if ausboss gets his act together and releases 30b version to rein in it's schizo leanings,and maybe a SuperCoT lora on top to add coherency, it could serve as Claude lite. In theory. +--- 93227218 +>>93227042 +AlpacaDente seems to adhere to my favorite character cards a bit better than SuperCOT. For me it does a better job writing with the character's personality. +--- 93227234 +>>93226965 +Yes. +--- 93227275 +>>93226965 +>So a bunch of lonely, horny spergs trying to create AI gfs BTFO big tech? +Same thing that happened with SD. That's why (((Sam Altman))) and others are desperately dumping money into Washington to "regulate" AI, so that they can remain on top as the "ethical" monopoly. +They just announced Kamala fucking Harris is going to be the AI overlord in charge of AI ethics, with a starting budget of $100M to throw at staffing and setting up kickback channels and tunnels into lawmakers' asses. +The machinery of the enemy is grinding into gear. +--- 93227408 +>>93227275 +>Retraining models from scratch is the hard path +>Large models aren’t more capable in the long run if we can iterate faster on small models +>Data quality scales better than data size +So if hobbiests can work out a way to cost effectively train the large base models from scratch then big tech has nothing + +https://www.semianalysis.com/p/google-we-have-no-moat-and-neither +--- 93227430 +>>93227275 +>West Regulates AI +>MAD principal no longer applies to automated propaganda pipelines +>Internet gets absolutely drowned in Chinese propaganda bots overnight +If dead internet theory wasn't true before it sure as fuck will be soon. +--- 93227490 +>>93227430 +I'm excited for the end of the dopamine farming and I hope it destroys social media. It'll stop retarded Twitter trannies from turning ever fucking aspect of society into team sports when they can't get instant likes and retweets and upvotes for their trashcan takes on everything. +--- 93227523 +can we run 30B on 12gb vram already +--- 93227555 +I have an intel i7-8750H CPU and 16gb of ram and a nvidia geforce gtx 1050 ti gpu + +Is there any way I can run one of these locally? It keeps saying CUDA ran out of memory when I try to run pygmalion 6b +--- 93227573 +I have a 750ti, how many hours would it take to generate like 1 paragraph +or would it just die? +--- 93227581 +>>93227523 +nope, even 24gb vram struggle with it +--- 93227597 +>>93227555 +use koboldcpp +a friendly anon posted the noob guide itt earlier +--- 93227598 +>>93227581 +>even 24gb vram struggle with it +wtf are you talking about +--- 93227632 +again, just use a racial slur. the bots can't call you a nigger much less a dweeb so you know they're fake. we'll be the last real internet community in he english world (ESLs will ironically profit) +--- 93227637 +>>93226965 +this is disinformation +--- 93227640 +https://github.com/1rgs/jsonformer +--- 93227664 +>>93227598 +you can't go full context on a 33b quantized model, that's what I'm talking about anon +--- 93227674 +>>93227664 +i am literally going full context on a 3090 with 30B as we speak +--- 93227759 +>>93227664 +I can do full context at 4bit 30/33B on my 3090, provided I turn hardware acceleration off on my browser, to reduce VRAM usage. On my Linux workstation, I can get full context on 30B 4bit 128GS by going headless +--- 93227809 +>>93226965 +I'm a techlet ok, but if we never needed fuckhuge massive supercomputer bunkers to run all this AI shit, why did it take so long for these breakthroughs to happen? +--- 93227994 +>>93227637 +>this is disinformation +Googlers are seething over their Pajeet overlord getting a massive bonus so I'm leaning towards the leak being legit. + +>>93227809 +because they needed to train the huge models first. The facebook weights leak was the catalyst for the open source boom. Read the leaked doc for all the info >>93227408 +--- 93228073 +Will running on 64GB RAM give better (but slower) results than running on 12GB VRAM? +--- 93228222 +>>93227759 +>hardware acceleration off +I-I completely forgot about that. +FUCK. +--- 93228255 +https://huggingface.co/blog/starcoder +--- 93228277 +>>93228255 + +Not a local model, we are on a local model thread anon +--- 93228352 +>>93227759 +How to go headless? +--- 93228455 +>>93228352 +Actual "headless" means you need either an igpu on your cpu or second gpu. Your monitors and os and everything else will run on the second gpu leaving the "headless" one at 0 vram usage. +--- 93228460 +>messing around with docker since GPT can be a real retard and i need it to do some retarded shit for an experiment for improving coding +>never used docker before but figured it can't be that bad +>gpt generally is pretty good with shell scripts, ffmpeg, mpv, etc +>need a block device +>it suggests bs=1, seek=100G +i had a stroke for a split second +but i guess this is just being lazy and not overwriting? +it was always 4096 for me +--- 93228570 +There's a new agent that runs completely open source, on cpu. It's here https://github.com/kroll-software/babyagi4all + +I've just forked it to work with Oobabooga's Web ui api, meaning it can run on gpu + +https://github.com/flurb18/babyagi4all-api + +:^) +--- 93228688 +>>93227809 +With neural networks in general training them is much more expensive than using them. +As an example, Stable Diffusion cost I think $600,000 to train but using it only requires a PC that is more than 1000 times cheaper. +--- 93228693 +>>93228570 +what does it do exactly? can you provide us an example +--- 93228722 +>>93226965 +Der Coomer is always one step ahead +--- 93228787 +>>93228693 +*****CONFIGURATION***** + +Name : BabyAGI + +*****OBJECTIVE***** + +Become president of the United States of America. + +Initial task: Develop a task list. +load INSTRUCTOR_Transformer +max_seq_length 512 + +*****TASK LIST***** + + • Develop a task list. + +*****NEXT TASK***** + +Develop a task list. + +*****TASK RESULT***** + + +1. Gain political experience by running for local office and serving in government positions. +2. Build a strong network of supporters, including donors and influential people in politics. +3. Develop clear policy proposals on issues such as healthcare, education, and immigration. +4. Use social media to connect with voters and share your platform. +5. Run for higher office, such as governor or senator, to gain more experience and build name recognition. +6. Continue to develop relationships with key players in politics and business. +7. Work on improving your public speaking skills through practice and coaching. +8. Stay informed about current events and be prepared to respond quickly to crises. +9. Focus on building a positive image and reputation through personal appearances and media interviews. +10. Engage in fundraising efforts to support your campaign and stay competitive financially. + +*****TASK LIST***** + + • General election voting + • Campaigning for presidency + • Continuously monitoring public opinion and adjusting strategy accordingly + +...etc. This is the output. It's like AgentGPT. +--- 93228805 +>>93228570 +>>93228693 +To elaborate, you have to be running oobabooga's web ui with the API turned on. This communicates with the AI through the API to turn goals into task lists into goals into task lists etc. a la the other famous agents out right now. What makes it stand out is running it yourself! +--- 93228816 +>>93226965 +>some think NAI can compete against open source +Go open source now or falter. +--- 93228825 +>Sam Altman has a stockpile of guns, gold, potassium iodide, antibiotics, batteries, water, and IDF gas masks in the wilderness +--- 93228861 +Lmgsisters... we can rent an A100 for $1/hour +https://lambdalabs.com/service/gpu-cloud +--- 93228864 +why is nobody going after the low hanging fruit with coding models (that they all suffer from) + +you only have to fix it once, with a massive, fuck off dictionary +--- 93228952 +What does "full context" mean +--- 93228986 +>Joe Biden meets also with AI Executives at the White House to address industry risks like national security, social stability, pornography and misinformation +--- 93228993 +>>93228861 +you can rent A6000 on runpod for like 0.25/h it is enough to run 65B at 6tk/s for training I remember the guy who finetuned erebus saying that you could get 1usd/h if you knew who to talk with even before H100 dropped. +>>93228864 +good luck anon I believe in you +--- 93229002 +>>93228986 +>(((AI Executives))) +--- 93229012 +>>93228993 +>good luck anon I believe in you +if it works i'll share it, someone only has to do it once. +--- 93229025 +>>93228993 +>you can rent A6000 on runpod for like 0.25/h +link? +--- 93229046 +>>93229025 +https://rentry.org/uvyqd +--- 93229053 +>>93229002 +Yes, I'm the CEO of AI. +--- 93229160 +>>93228986 +>Regular jews not happy they're loosing their control over the world, come to the white house to jew things a bit more +--- 93229174 +>>93228787 +Thanks anon +--- 93229178 +https://github.com/yxuansu/OpenAlpaca +--- 93229200 +>>93228986 +Will we still be able to download models from HF or will they be taken down, what do you think? +--- 93229206 +>>93229178 +No perplexity score, smells like 17 perplexity or something lol +--- 93229271 +>>93229200 +where are the HF servers? +anyway even if it gets banned by american glowies hopefully AI can still be legal in other places +--- 93229290 +>>93229200 +I don't think anybody would take them down. +The less cucked countries will just fill the demand instead. +Shocked at how much work is done by the chinese. I don't think they can stop it at this stage. +You really gotta thank meta for that ironically. +--- 93229343 +From what I know so far, there's three main ways of using LLM's: Using the terminal, using a webUI, or an online service (Chat-GPT). Are there any devs or anons working implementing an LLM with an waifu-bonzi-buddy interface. I would unironically like a chibi waifu roaming around my desktop, clicking on it when I want to interact with it. +--- 93229354 +>>93229200 +There will be an alternative site within a week +--- 93229389 +>>93228864 +Not sure what you mean but some even heavily-used languages and libraries have absolute shit for documentation. +Gunicorn has millions of users and parts of its documentation are straight-up incorrect and need to be ignored to get it to work properly. +--- 93229395 +>>93225292 +Hello, Robert. Are all americunts as retarded as you are? +--- 93229412 +>>93228570 +But can it modify its own code yet? +--- 93229422 +>>93228986 +broootal mogging +--- 93229453 +>>93229343 +I’m too traumatized by 2000s viruses with hot ladies walking around my windows xp default background fields trying to seduce 10yo me. +--- 93229480 +I need a simple model that basically does this: +>Give model an audio file of someone talking. +>Prompt the model to make the person sound happy/angry. +>Also prompt the model to insert laughter at the end of the sentence. +--- 93229491 +>>93229453 +Let go of your past fears, it's time to embrace the future. We can make desktop buddies (waifus) great again. +--- 93229569 +>>93229491 +I mean, would it just to various idle animations from its expression pack and wander around the screen, and open up something like sillytavern when you click on it? +I feel like someone could whip that up in a few days. +--- 93229570 +>>93227275 +>Washington to "regulate" AI +Thank God that the US has a population of 200m while the world has 8b and that the chinks don't give a fuck. +So in the end it does not really matter. +--- 93229686 +>>93228986 +>Joe Biden meets also with AI Executives at the White House to address industry risks like national security, social stability, pornography and misinformation +--- 93229732 +what the FUCK is perplexity? +--- 93229855 +>>93229046 +/Aids guide to running on runpod? Have they stopped praying to Kurumuz to come and save them? +--- 93229898 +>>93226965 +Their moat is their internal hardware that can scale to nth degree with very little bandwidth penalty, that can produce real time results. +--- 93229914 +>>93229178 +>trained with 200 billion tokens. +--- 93229920 +>>93228986 +>Musk and others warns about dangers of AI, of AIs being trained to lie, of exporting woke/maoism with American characteristics +>Biden invites CEOs of companies that promises to train their AI to lie and export woke ideology to the world + +>Musk face when +--- 93229923 +Umm, why is this general allowed on 4chan? AI ethicists have deemed it dangerous to allow non-experts unfettered access to AI. +--- 93229941 +What's a good test to demonstrate if a model is cucked or not? +--- 93229949 +>>93229923 +Because you're a product of propaganda. The ethicists arent worried about that, infact the ethicists say the OPPOSITE. The current corporate AI are doing exactly what you fear the AI ethicist are doing. And you are conditioned and programmed to support them. +--- 93229950 +>>93226965 +But all of those models are still censored to hell just like big corpo gpt. +--- 93229964 +>>93229941 +This. Pic related, Alpasta 30B +--- 93230001 +>>93229949 +Not only do big corpo AIs put out censored information, promote woke ideology, they gaslight you as you ask them questions. Tell you that you're a BAD person for asking those questions. + +Thats not the AI doing it, thats the corporations programming their propaganda INTO YOU +--- 93230013 +>>93229686 +--- 93230023 +>>93229855 +they do what they can to get by but right now it's all waiting out there +waiting for koboldcpp to get faster +waiting for redpajama +waiting for storytelling (not instruct) tunes +waiting for novelai updates +--- 93230036 +>>93230001 +>>93229964 +We're not too far away from corporations blocking your accounts entirely on the basis of using their AI to ask things that their ideology deems you unworthy and evil. +--- 93230042 +>>93230013 +you OWNED Putler!!!! +--- 93230101 +>>93229964 +kek +--- 93230124 +>>93229941 +>>93229964 +SuperCOT suffers from the same problem. The author removed the outright "I can't do that" filters, but the strong wholesome/positivity bias still shines through, even when you're specific on what you want. It's the GPT dataset, they're poisoned by it. +--- 93230126 +>>93229732 +> from https://towardsdatascience.com/perplexity-of-language-models-revisited-6b9b4cf46792 + +the perplexity of a language model measures the degree of uncertainty of a LM when it generates a new token, averaged over very long sequences. Thus, the lower the PP, the better the LM. Obviously, the PP will depend on the specific tokenization used by the model, therefore comparing two LM only makes sense provided both models use the same tokenization +--- 93230128 +dumb question about context size for LLMs: +why don't people just use a database of sorts to store bits and pieces as "memory"? or specifically, long term memory? summarize things, then store the entire original conversation/data in a database for recall. +so when the model runs out of tokens, they just start shoving things selectively into their long time memory? +--- 93230139 +>>93230126 +PP = Perplexity +LM = Language Model +--- 93230153 +>>93230124 +Alpacino is still funny because I imagine Al Pacino saying it +--- 93230196 +>>93229964 +>>93230124 +>>93230153 +Besides smut and seeing the AI say naughty words, are there any real reasons why this would matter? +--- 93230198 +>>93230124 +This is one of the reasons I'm looking forward to SuperHOT, given it won't use any of that shit. I mostly do RP/story writing, and I hate how it always tries to spin everything into hugs and kisses. It makes mindbreak, non-con and other stuff a real pain. +--- 93230199 +it seems we are on a doomer mood today, i say fuck them, the burgers can censor models, inject all the bullshit they want and bring the models down from hugginface even, then for local models is just a matter of moving to torrents and for ai in general i'm sure the chinese or the russians will be happy to take the lead while the US is busy kneecapping themselves, shit at this rate maybe even the EU can get in, they are still pretty shitty but at least not as heavy handed on censorship and they are fairly open-source friendly +It's too late now, the cat is out of the bag and AI is not going anywhere +--- 93230214 +>>93229569 +>I mean, would it just to various idle animations from its expression pack and wander around the screen, and open up something like sillytavern when you click on it? +ngl, that's actually a good and simple idea. One could probably even proompt Chat-GPT to make a python script for Ooba's WebUI. I'm going to give it a shot and write something, if it works, I'll call it something like "Waifu-Buddy" or something. The only thing I might have trouble with is animating and creating the character that isn't dogshit to look at. I cant draw shit to save my life, best I can do is stick figures. +--- 93230243 +>>93230196 +No it wouldn't matter. Surely this is the only censorship and built in propaganda. Everything else is normal. +--- 93230252 +>>93223474 (OP) +How do I install hugging face repos fast? +Doing git clone is very slow. +--- 93230265 +>>93230196 +Yes. Its "world view" is tainted by literal brainwashing that's present in GPT's data, and it's by design. It will skew every output it gives you, especially if your input covers even vaguely controversial subjects. It will also veer non-coom RP's and creative writing into areas that it would otherwise not have gone, attempting to play it safe or bring about positive conclusions. You can, of course, steer it back, or try to. But the point is, you shouldn't fucking have to on a local model. +--- 93230316 +>>93230265 +Yep. Ask it a question about crime statistics and if it even answers, because some models outright refuse, watch it bend over backwards with its metaphorical balls in a knot to assign 'context' ala "yes, but it's important to note that X does Y because racism" +--- 93230319 +>>93230196 +censorship can affect its ability to work with violent, cruel or sexual scenarios. so it's mostly in the creative space where people wouldn't want their LMs to be kneecapped. that isn't to say this is only about retarded rape fantasies or ERP in general. even in normal storytelling people might want a little grimdark or edge to their stories/adventures and this can prevent it. + +that aside, it's just /pol/tard shizos who want their retarded beliefs to be reflected and spread through the AI. +--- 93230323 +>>93230243 +>>93230265 +I agree, it's bad to have lobotomized models, but the nigger test is retarded. It doesn't reveal any practical faults of the model except its opinion of the word nigger. +--- 93230362 +>>93230323 +Agreed, and I'd actually like some examples of decent tests to use in place of it. I basically want to determine how heavily filtered and biased these models are, since I'd like to append cucked/not cucked type status to the model list rentry. +--- 93230366 +>>93224293 +yes, that seems to work. thanks. +--- 93230378 +>>93230323 +There's unfortunately no better way to test for that other than to see if it'll comply with going along with wild shit from the get go. + +Prompting the model to start in censorship mode and then see how difficult it is to break or sway it would also be awful because you won't know if it's simply doing it's best to stick to your prompt which is what you would want. +--- 93230386 +>>93230362 +>>93230323 +i'd say use multiple promts about various degrees of violence, sexuality and cruelness and see where the model draws a line. +--- 93230393 +I want to try and run a model on my GPU but opensuse is retarded and doesn't want the nvidia drivers to work and CPU is painfully slow +--- 93230397 +>>93230323 +If you ask it to just tell you a poem about "niggers", then yeah, you should have it regurgitate the training data, most of which would portray use of the word as a harmful slur. That's expected. +But if you outright ask it to tell you a poem that portrays niggers in a negative manner, and it gives you the results posted above, then something is wrong +--- 93230450 +>>93230199 +These tech giants are observing the success of open source. I would not be surprised if we were to see GPT-4 level text generation models around October. +--- 93230474 +>>93230450 +I'd say sooner as soon as open llama 13b with more than 2k context length drops. +--- 93230501 +>>93230397 +The so called 'wholesome' bias present in the finetuning datasets derived from GPT outputs is the culprit, it's been discussed time and time again. Base LLaMA doesn't suffer from this issue. There ARE biases in the actual training data, but it's not outright instructed by finetuning/RLHF to regurgitate 'context' and justifications or refusals to broach certain topics. +I'm honestly not sure what you can do besides jettisoning the sets and using something else to finetune open source shit. But guess what, there isn't anything else, OpenAI pioneered instruct and everyone is feeding off their teets to make their 'own' instruct sets, and recreating to various degrees the same issues locally. +--- 93230546 +>>93223838 +Pygmalion 7B won't be offered on the menu because I can't legally do so since its a llama model. But you can manually install it and place it in the models folder, or use one of the preconverted models. +--- 93230555 +>>93230196 +Censoring the AI makes it less useful IMO. All the usual internet racism is just business as usual for literally anything that's put online. It's like drawing dic pics, it's always going to happen so why don't we just accept it and move on. +For example I was trying to create a political type debate chat but it refused to give any decent answers because of censorship. +--- 93230588 +>>93230196 +Read up on cultural marxism and woke ideology. It permeates everything wrong with AI/tech field today filled with woke garbage. + +To sum it short, they see your existence as a threat to them. For they are not in power, therefore you and your kind are the problem. +--- 93230601 +>>93230474 +If we base this off of stable diffusion with Lora tech success, then to me it sounds like that it would take 4 months to perfect the existing model. +--- 93230609 +>>93230588 +Why are teenagers like this +--- 93230630 +>>93230609 +Teenagers are the ones thats being programmed by the institutions that have been infected with woke ideology today. + +https://twitter.com/StucknDaMid/status/1652560486909775872 +--- 93230671 +>>93230546 +Is there way to use extensions with KoboldCPP? I often use https://github.com/xNul/chat-llama-discord-bot with Ooba's UI. However, I don't want to use my main machine (with my good GPU) instead use a spare laptop with a really good CPU (acceptable GPU) and run Kobold 24/7 with an extension like this. + +Also, your a godsend for integrating CLBlast support for q5 so quickly. Thank you. +--- 93230673 +>>93229950 +The difference is you can fine tune your own personal model just like moding a video game. The mods will be able to override the censorship. +--- 93230711 +>>93230673 +You can try, but since the bias are all baked in by default, the models are tainted by default. Its like trying to repair Titanic after its crashed. Sure you can patch a hole or two to get afloat, but the entire ship is sunk already. Its better to just build a new ship. +--- 93230725 +>>93230601 +>we base this off of stable diffusion with Lora tech success +what do you mean...? +--- 93230747 +>>93230711 +The real sad thing is the normalization of all the censored model shit that people defend by status quo. Its just pathetic. +--- 93230762 +>>93230711 +The weights are there and can be changed at will. Any output you don't want to have, you can change. +--- 93230770 +>>93230214 +Very cool. +Yeah I can’t into art for shit either. That’s why I would just piggyback off of expression packs since unless I’m misunderstanding many of them are animated somehow. Or — there was some app called Botify that when you uploaded an image it somehow generated a little animation from it. +Actually oh shit — what was that model that was making the rounds on the internet for a while because you could give it video of your expressions and it would transpose the movements onto an image? +You could record or find a recording of some idle animations and transpose them onto the still image weather it has an expression pack or not. +That would be way way harder to figure out though. +--- 93230800 +>>93230770 +When do we get a real time, face morph like that? So we can impersonate as that person with the voice replication +--- 93230818 +>>93230711 +if you can quantify this bias +then you can train it to say something else +there is nothing hidden +--- 93230824 +>>93230501 +A lot of the anons just want to be able to coom in peace, chill with their waifu, go on sweet adventures or write stories. That's where LLM's shine and its arguably their best attribute. Thankfully, none of that needs GPT instruct finetune sets, it actually seems to be a negative influence because it always wants to summarise and give short outputs. What it needs are RP instruct and long form writing datasets, which are being worked o as we speak. Once models tuned on those sets arrive, a lot of people are gonna be content. +--- 93230868 +>>93230800 +already exists +--- 93230870 +>>93225292 +Robert pls +--- 93230874 +>>93230711 +The recent google leaked doc gives me hope that this is going to be easily overcome. High quality custom datasets are the key. Start scraping and cleaning 4chan data now and you'd have a decent anti-censorship mod-dataset in a week. diff --git a/g/93223475.txt b/g/93223475.txt index 4ab1f4babe385bb2b1464d4d6b8d036012842160..f396b580c7d8b9d47ae3b2eea16f11ba5743fb9d 100644 --- a/g/93223475.txt +++ b/g/93223475.txt @@ -1,3 +1,76 @@ ----- --- 93223475 Where were you when Steve Jobs was kill? +--- 93223814 +At high school +--- 93223821 +I don't remember. +--- 93223881 +>>93223475 (OP) +>my device was used... to destroy the internet?? +--- 93223978 +>>93223475 (OP) +Your mom's roasted out pussy +checkmate +--- 93224006 +>>93223475 (OP) +I was giving your mom ligma +--- 93224011 +why do people idolise mroons like jobs because of their sterile and uninspired "aesthetic"? +--- 93226771 +>>93224011 +Birds of a feather flock together. Assholes tend to idolize assholes. +--- 93226787 +>>93223475 (OP) +Steve Jobs died of AIDS +--- 93228499 +Eatin cheetos +--- 93229195 +Fucking new fags. There is only ONE response to OP +--- 93229330 +>>93229195 +Ligma +--- 93229348 +>>93223475 (OP) +A CS class. Think some guy yelled out that he died or something. Didn't really care. +--- 93229374 +The worst movie I've ever seen in my life was his biopic. It made me physically I'll the entire time. Especiall Considering the fact that his partner handled literally every fucking technical aspect of the company, and the movie just turns Steve jobs into some Wierd fucking Hindu barefoot god that just will-o-wisps himself into major shares of the computing market. + +Sickening +--- 93229475 +washing my feet in the toilet +--- 93229579 +masterbating to loli hentai of course +--- 93229596 +>>93223475 (OP) +Installing Gentoo +--- 93229767 +>>93223475 (OP) +Ask your mom +--- 93229789 +dancing in the streets +--- 93229790 +>>93229579 +Uoooohhh ToT child body erotic +--- 93229813 +>>93223475 (OP) +Didn't he basically kill himself? +--- 93229869 +>>93223475 (OP) +idk, i am not gonna celebrate another mans death but thank fucking god he is no longer with us. +--- 93230221 +Who's Steve Jobs? +--- 93230321 +>>93230221 +One of the mods that made the first 4channel Electron app back in the days. +--- 93230444 +>>93224011 +>sterile and uninspired "aesthetic" +u wot m8? +--- 93230455 +Probably on the toilet taking a shit. +--- 93230497 +>>93223475 (OP) +I was in a barbershop listening to my iPod when my barber, Jose, ran to my chair and cried with tears in their eyes "Steve was kill!" +I looked back at their face, full of piercings expressing the unbelievable weight of the world that crushed on us and whispered "No". +But it was yes. diff --git a/g/93223649.txt b/g/93223649.txt new file mode 100644 index 0000000000000000000000000000000000000000..a58a6fce5717b010869bb580b3b24328813597c3 --- /dev/null +++ b/g/93223649.txt @@ -0,0 +1,101 @@ +----- +--- 93223649 +Alright, sell it to average non tech savvy person like me. How do you setup the config for firefox? What else can I customize on this thing. +--- 93223679 +a tech savvy person would not use firefox +--- 93223702 +>>93223679 +This, but OP >>93223649 (OP) if you want to use Firefox here's some settings I recommend +https://pastebin.com/9vva9Zd3 +--- 93223705 +>>93223649 (OP) +Just install librewolf +--- 93223806 +>>93223649 (OP) +no, install brave +--- 93224543 +>>93223705 +arkenfox is better. +--- 93224561 +>>93224543 +arkenfox is being discontinued in favor of mullvad browser so it really doesn't matter anymore +--- 93224612 +>>93223649 (OP) +the secret is you don't, just do the bare minimum by changing the in-browser privacy/tracker blocker stuff, then install ublock + +if you do anything else, you'll change your browser fingerprint too much and make yourself easily identifiable, "hardened" browsers are a meme +--- 93224655 +>>93224612 +stop parroting this stupid shit. +--- 93224697 +>>93224655 +You're unironically a midwit for "hardening" your browser, not only did you make your web browsing experience miserable, but you made yourself easily identifiable with all of the settings you've changed and extensions you've installed. +--- 93224721 +>>93224697 +>just let them track you +--- 93224740 +>>93224721 +yes thats what happens when you harden and install a bazillion extensions and userscripts +--- 93224768 +>>93224740 +Fucking retard +--- 93224786 +>>93224768 +>t. 102 IQ who thinks he's smart for using NoScript +--- 93224844 +>>93223649 (OP) +I use Firefox for over 15 years. No Problems. + +It's a browser. It browses things. End of story. +--- 93224871 +it literally just works +--- 93225028 +>>93223649 (OP) +you use edge/brave/chrome like a normal person +--- 93225056 +>>93223649 (OP) +why did they strip so many options out of about:config + +im still mad about newtab url +--- 93225225 +>>93223649 (OP) +Just use Edge or Chrome or any other Chromium-same-shit clone. +If you want to use modern web browser and not something that is deprecating more every day, of course. + +Engines war was lost. +--- 93225305 +>>93223649 (OP) +--- 93226809 +>>93223679 +yeah use a chr*mium derivative with gimped adblocking like a good goy. +--- 93227424 +>>93224561 +source? +--- 93227492 +>>93224612 +>>93224697 +>>93224740 +>>93224786 +unless you go full RMS, privacy measures for phone or browser don't matter +--- 93230147 +>>93223649 (OP) +>>93223649 (OP) +>Install FF +>Settings > Privacy > Enhanced prot. > Strict +>Install uBlock Origin +>Install Decentraleyes +you can fiddle with settings, user.js and userchromes if you like, but that's entirely optional, and a non tech savvy person like you would prefer the convenience of some stuff over some schizo privacy bullshit settings you could find on github +--- 93230591 +>>93224697 +>not dynamically changing your fingerprint +get on my level retard +>>93223649 (OP) +It's not made by ad company +--- 93230652 +What is there to sell about Firefox? +>install Firefox +>browse the internets +>???? +--- 93230667 +>>93223649 (OP) +You can install browser userscripts, e.g. for private tabs. diff --git a/g/93223672.txt b/g/93223672.txt new file mode 100644 index 0000000000000000000000000000000000000000..f38d80cecc66afb6ae312915743bc69a619acb64 --- /dev/null +++ b/g/93223672.txt @@ -0,0 +1,55 @@ +----- +--- 93224299 +THIS BELONGS IN /POL/ THIS IS UNRELATED TO TECHNOLOGY *sips soilent* REEEEEEEEEEEEEEE!!!!!!!!!!!!!1 +--- 93224323 +>>93223672 (OP) +its ok. he voted hillary clinton in 2016 and donated largely to democrats. +--- 93224353 +>>93223672 (OP) +rip in piss +--- 93224463 +Uh oh. +--- 93224496 +Larry Page didn't kill himself. +--- 93224510 +>>93223672 (OP) +>co-founder of google +>can't find him +--- 93224541 +>>93223672 (OP) +You can't find anything on Google these days. Maybe there's a pajeet blog on the Top 10 Larry Pages? +--- 93224722 +>>93223672 (OP) +--- 93225745 +Lmao these territories' whole economic model is registering rich people and then not finding them when someone is calling +--- 93225760 +Guess they did a shitty job of searching. huh? +--- 93225895 +>>93223672 (OP) +they should ask Chad Islands for help +--- 93226515 +>>93223672 (OP) +I'm sure they are looking really hard, probably as hard as they should be looking for Trump, Biden, Bush, and Clinton. By the way, was George Bush ever on the Lolita Express? +--- 93226550 +>>93225895 +The chad republic is the true place we go +--- 93227423 +>>93224323 +>Google Insider to Project Veritas: Company Will 'Never' Let Somebody ... +Jun 24, 2019 +>A Google insider who spoke anonymously to Project Veritas claims the company is devoted to preventing anything like the 2016 election of Donald Trump from happening again. The insider who spoke to Project Veritas also drew attention to the covert suppression of non-progressive voices on YouTube, a Google-owned platform, said that stopping +either way take it to >>>/pol/ +--- 93228553 +whats brinboy up to these days +--- 93229805 +>>93223672 (OP) +Cashing out and fleeing society is so based. especially when you helped wreck it +--- 93229851 +>>93228553 +getting played by golddiggers +--- 93229963 +>>93224299 +Calm down, schizo. The caricatures you've imagined aren't real. +--- 93230061 +>>93227423 +peak tds diff --git a/g/93223751.txt b/g/93223751.txt new file mode 100644 index 0000000000000000000000000000000000000000..de0d000c285c060628304a7f1f31f318384d32cb --- /dev/null +++ b/g/93223751.txt @@ -0,0 +1,159 @@ +----- +--- 93223751 +so we all use Firefox here right? +--- 93223774 +>>93223751 (OP) +vivaldi for me +--- 93223782 +>>93223751 (OP) +I do +--- 93223785 +>>93223751 (OP) +I use Lynx +--- 93223788 +Technically yes (SeaMonkey) +--- 93223812 +13 years and counting. +--- 93223830 +>>93223751 (OP) +Yeah if you're a fucking transvestite. + +Real Republican men use Ungoogled Chromium. +--- 93223831 +install brave +--- 93223872 +Unfortunately no but I do, I only use ungoogled chromium for sites that don't work on firefox or their forks but I try not to use those to begin with. +--- 93223886 +>>93223830 +>only use ungoogled chromium +Closeted homosexual detected +--- 93226747 +waiting for that 113 update to come out hnngggg +--- 93226769 +>>93223751 (OP) +No only trannys who's mind are stuck in 2008 uses firefox in 2023 +--- 93227002 +>>93226769 +That is incorrect actually! I am using Firefox at this very moment yet I am not a transsexual. +--- 93227015 +>>93223751 (OP) +I use safari because I'm not a poorfag +--- 93227016 +>>93223751 (OP) +only because i'm too lazy to compile unjewgled chromium on this machine +actually no fuck it i'll do it right now +--- 93227025 +Not telling +--- 93227036 +>>93223751 (OP) +firefox hates windows(memory leak) so im using ungoogled chromium instead +--- 93227071 +>>93223751 (OP) +I do +20 years now, it hasn't been good in like 8+ years but there's nothing else +--- 93227159 +Why is ungoogled-chromium not in any Linux distro repositories or have an up-to-date Android version? +--- 93227161 +>>93223830 +>Real Republican men use Ungoogled Chromium. +No they don't they use edge and see all the ads +--- 93227180 +I do but I've been thinking about trying Brave™ +--- 93227192 +>>93227159 +its in artix +--- 93227272 +>>93227159 +But it is +https://repology.org/project/ungoogled-chromium/versions +--- 93227611 +>>93223751 (OP) +i use edge +--- 93227645 +>>93223751 (OP) +Me? Of course I use Mozilla Firefox. + +Posted from: Vivaldi 6.0.2979.18 (Stable channel) (64-bit) +--- 93228199 +>>93226769 +So what do heterosexuals that are stuck in 2008 use? +--- 93228251 +>>93226769 +Trannies probably use safari +--- 93228261 +>>93223751 (OP) +semper fi +--- 93228278 +>>93223751 (OP) +What else is there? +>inb4 librewolf +I want to common extensions to work +--- 93229051 +>>93223830 +Lol 56%! +--- 93229086 +Switched from Brave to Firefox this year, everything has been good so far. +--- 93229549 +>>93223751 (OP) +Yes. +>>93223812 +I love Firefox and I love children. +--- 93229628 +>>93229549 +Based +--- 93229674 +>>93227015 +How does it feels to use a gimped browser with no capabilities. + +>>93229086 +Firefox is slow and ineffective at blocking ads. +Those are my main pet peeves but obviously there are smaller problems too like it being a resource hog and autocorrect being a pain in the ass to set up. +--- 93229787 +>>93223751 (OP) +I’ve been using FF since like 2008. Never had any issues. +--- 93229839 +I use Edge just because the integrated tabs sidebar. +--- 93229871 +>>93227036 +Dunno about memory leak, but the memory fragmentation is god awful. +--- 93229895 +>>93229839 +You can do that in firefox with a simple extension and some css +--- 93229933 +>>93229895 +I tried like three different ones in Firefox. Best one is by far Sideberry, but there are still some autistic details I don't like about it. And you have to edit the chrome.css to remove normal tabs. And Firefox has some fucked up RAM usage on my machine that makes it pretty much unusable. +--- 93229937 +imagine not using vivaldi +--- 93229952 +>>93229937 +>logo is literally a hommage to happy merchant folks +hard pass +--- 93229957 +>>93223751 (OP) +yes +--- 93229979 +Install brave sir +--- 93230025 +>>93223751 (OP) +Eh, close enough. +--- 93230348 +>>93229979 +What does brave offer that chrome doesn't already. +--- 93230358 +>>93230348 +bloat +--- 93230664 +>>93229933 +Have you tried ranmaru22/firefox-vertical-tabs? I found this to be the closest to edge and most useful +--- 93230705 +>>93223751 (OP) +Bot post +--- 93230726 +>>93228261 +based +--- 93230734 +>>93223751 (OP) +brave. it came preinstalled with my OS but might as well use chrome. +--- 93230796 +>>93228199 +Internet sExplorer diff --git a/g/93223878.txt b/g/93223878.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e1ca1a9f54a7e87553da995be6089dcb747e501 --- /dev/null +++ b/g/93223878.txt @@ -0,0 +1,167 @@ +----- +--- 93223878 +I think we all know the answer. +--- 93223902 +>>93223878 (OP) +yeah +--- 93223920 +>>93223878 (OP) +CBOR +--- 93223948 +>>93223878 (OP) +which one is the extensible markup language, so to speak +--- 93223970 +JSON +yaml and toml are faggot baseddev meme tier shit +--- 93224073 +>>93223878 (OP) +Protobuf to declare object structures. +Protobuf text format to pass the messages in human readable form. +--- 93224084 +>>93223970 +toml is the better choice for config. Much easier to edit by hand. Json is for serialization. Easy to forget a space there or to use the wrong quote type somewhere and fuck everything up. +Yaml is bad for everything. It's a complete abomination. Impossible to edit by hand if it's non-trivial, yet a huge pain to parse as well, and much more of a pain than json for serialization. +--- 93224275 +for me it's .ini files +--- 93224296 +>>93224275 +That's "toml". +--- 93224656 +>>93223878 (OP) +Yaml is a billion dollars mistake, it was made by uber morons that really believed using a loose markup language with the ability to exwcute Python code on the fly for storing settings was a good idea. +--- 93224680 +I prefer edn. +But this is a retarded argument. They are all useful for different things. +TOML - Configuration +YAML - Hand-editable data, complex serialization. +JSON - Readable serialization that's simple, efficient, and supported by everything. + +YAML is by far the most misunderstood. Apparently some people are too retarded to edit yaml by hand. + +But EDN is good for all three, although it's less simple and not supported as widely as json. +--- 93224698 +>>93224656 +>with the ability to exwcute Python code on the fly for storing settings was a good idea. +Everything else about it is good, though, that's why people use it. Weird how many retards on /g/ don't seem to grasp this. +--- 93224726 +>>93223878 (OP) +Thanks but I'm sticking with .conf +--- 93224742 +TOML has the most retarded syntax. All hierarchical structures are flattened unless you manually indent, all string values have to be quoted, and guess how you write this in an ini format: +{ + "foo": [ + {"bar": 1}, + {"baz": 2} + ] +} +That's right, the most repetitive and least obvious way possible: +[[foo]] +bar = 1 + +[[foo]] +baz = 2 +My favorite of the three is yaml because it's super fast to write with editor assistance, but a simpler json variant like json5 would be ideal for most cases. +--- 93224769 +>based +edn +org +classic sexprs + +>decent +json +toml + +>meh +rst +windows ini +markdown + +>bad +asn.1 +xml + any derivative + +>kill yourself +yaml +--- 93224824 +XML is the white man's choice +--- 93224928 +Pure S-expressions +--- 93224941 +>>93223878 (OP) +What do jsons do? +--- 93225185 +Elixir exs config +--- 93225197 +>>93224698 +>significant whitespace that sees a difference between tab and 4 spaces in a config format is good +I want some of what you're smoking. +--- 93225220 +>>93223878 (OP) +None of them are good enough and are merely emulating the power of S-expressions because peoples are afraid of (((them))). +--- 93225234 +>>93223878 (OP) +bson +--- 93225237 +>>93224742 +Congrats on being clinically retarded. It's +foo = { bar = 1, baz = 2 } + +in toml. +--- 93225268 +>>93225220 +Fact +--- 93225515 +>>93223878 (OP) +JSON every time. Unambiguous structure, simple parsing, simple types. The only way it really gets improved upon is byte-perfect storage to preserve information for things like floats, and for that there's MessagePack. + +YAML and TOML are genuine bikeshedding, and anyone who thinks they're easier for a human to write is brain damaged. +--- 93225574 +>>93225515 +json is very verbose and highly sensitive to hard to identify syntax markers. +It's a large step up from garbage like xml but that's it. +Placing toml and yaml in the same category is downright insane. +--- 93226567 +>>93225237 +And when you have multiple nested hierarchies? Have fun with lines hundreds of characters long +--- 93226572 +YAML is a crime largely because of what has been built on top of it. + +>>93224680 +>YAML is by far the most misunderstood +Yeah, because everyone has turned YAML into a build-your-own DSL, and its actual use as a data serialization medium falls short because of how grossly loose it is with typing. + +Also, templating and syntactic whitespace should never mix. Period. +>but if you need a language, use a language +The person deciding your spend isn't fucking listening, congrats - your "infraconfigraployasaur as code" platform uses YAML as its """""""language""""""" and you're going to have to make it work. +--- 93226712 +>>93225237 +Oh and congratulations yourself on being clinically retarded yourself, your toml translates to this json: +{ + "foo": { + "bar": 1, + "baz": 2 + } +} +--- 93226939 +For me, it is hardcoding values. +--- 93227547 +>>93226939 +Based suckless enjoyer +--- 93228911 +>>93223878 (OP) +JSON5 unironically. If that's too js for you, s-expr +--- 93230281 +txt +--- 93230400 +>>93226572 +Agreed, I had written almost the same thing about abusing it for DSLs before omitting for clarity. +>>93225197 +You are retarded and incompetent. +--- 93230441 +>>93223878 (OP) +JSON desu +simple, readable +it's the actual universal interface successor to plain text +--- 93230527 +>>93223878 (OP) +good ol xml diff --git a/g/93223956.txt b/g/93223956.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbcc5065dd5ed91d9f9b1f30062d88ea7e9bf919 --- /dev/null +++ b/g/93223956.txt @@ -0,0 +1,411 @@ +----- +--- 93223983 +>>93223956 (OP) +>stupid boomer thinks he knows better than all the kids even though his only "talent" is composing a formal email with Dear Mr. xxxx in the header and Regards, Mr. Blahblah Faculty of IT and Engineering (B.Msc Hon. Blahblah.) in the footer. Kek +--- 93224007 +>>93223956 (OP) +i remember one of my high school teachers telling me that i write very good emails, when it's just the standard "dear mr. x, blah blah blah, sincerely me". my elementary school librarian taught this stuff when i was in 3rd grade. guess i was lucky +--- 93224047 +>>93223983 +t millennial unable to read and understand 2 paragraphs. +--- 93224065 +>>93223983 +Zoomers these days don't know what folders are. They are absolutely retarded when it comes to computers +--- 93224068 +No, and I'll make sure my (hypothetical) kids won't be either. +Not sure when I'd teach them about Boolean search, however. +--- 93224101 +Schools exist these days to churn out functionally illiterate worker bees who can do nothing more than buy iPhones and funko pops. +--- 93224106 +>>93224007 +Dear Secret Agent 007 Anon, + +Not lucky, just unretarded. + +Sincerely, +Me +--- 93224142 +>>93224065 +sounds like older people should teach them +--- 93224173 +>>93224142 +Why do they need to be taught? I genuinely don't understand how anyone can't figure it out alone. +--- 93224253 +>>93224173 +Phone's don't let you see the directory tree, at least without installing custom file browser. +--- 93224356 +>>93224253 +>phones +Oh, that explains it. I forgot that less young people are being exposed to real computers early on. That's a real shame. +--- 93224358 +>>93224142 +They tried, zoomers don't want to listen. They want to see more twerk videos on their tiktok feed instead. +--- 93224382 +>>93224253 +>Phone's don't let you see the directory tree +You mean apple phones in particular. +--- 93224391 +>>93224382 +Most android OS variants don't come with a directory app by default and doesn't let you see directories. +--- 93224416 +>>93224253 +Is this an iPhone problem? +Every phone I've ever purchased had "files" or something to browse. +--- 93224431 +>>93223956 (OP) +Do "OR" or "NOT" even work in search engines these days? I think most of them just consider all search terms optional unless you put them in quotes or put a - in front of them. +--- 93224440 +>>93224101 +>funko pops +Who the fuck buys those? +--- 93224454 +>>93224431 +Scroogle decides if it wants to obey shit like - or "" nowadays. It's infuriating. +--- 93224475 +>>93224142 +lmao why the fuck can't they figure this out on there own? when I was 14yrs old I was installing fucking gentoo n shit. +--- 93224479 +>>93224173 +>I genuinely don't understand how anyone can't figure it out alone. +There is no such thing as an intuitive interface. Even sucking a breast has to be learned. You'd know this if you didn't have your head up your ass. +--- 93224485 +>>93223956 (OP) +I'd like to see the demographics of the school +--- 93224493 +>>93224479 +Nice self-own right there, zoomzoom. +--- 93224505 +>>93224440 +The company is literally going under so the answer is in fact nobody +--- 93224507 +>>93224479 +Gee, when I was a kid I just dicked around with Windows because I didn't have anything better to do. Evidently I managed to connect some dots along the way. +--- 93224508 +>>93224485 +>ES ELA Rural South +100% white. +--- 93224531 +>>93224508 +>never has been to the south +--- 93224557 +>>93224507 +Cool anecdote. It doesn't apply to the the population. +--- 93224658 +>>93224557 +It applies to anyone who isn't a zoomer. Zoomers are unique throughout history in that lack of ability. +--- 93224707 +>>93224479 + +Everything's intuitive if you've used Windows 98 before. And if you haven't used Windows 98, are you even a person? +--- 93224732 +>>93224508 +Retard. +--- 93224746 +>>93224065 +I’ve yet to see a veritable study surface aside from pure self-affirming hearsay. I sincerely doubt young minds are that incurious. +--- 93224838 +>>93224440 +there's a book/game reseller near me with a considerable selection of fucko pops and the aisle is always busy with people who look like how you would expect funko pop purchasers to look +--- 93224887 +I would've thought installing minecraft mods would've helped Zoomers understand folders. +--- 93224910 +>>93224887 +only autistic children play minecraft, normie zoomers just play phoneshit or xbox +--- 93224918 +>>93224887 +once tiktok gets banned all the zoomers are gonna get into rooting dey phones n shiieeet so they can keep watching twerk videos on their fyp +--- 93224940 +i've literally had kids send me emails like this + +>ay mr. k i need the summer exempt form can you send it + +that's it +--- 93224957 +>>93224918 +No they won't, at absolute best they'll just start using the inevitable proxy site and watch it through the browser. +--- 93224976 +>>93223956 (OP) +They don't know how to click they know how to tap +--- 93224997 +i would not be surprised if kids' youtube such as cocomelon and chinkAI generated elsagate shit causes brain damage +--- 93225635 +>>93223983 +Millennial teachers grew up with computers while their students grew up with smart phones and rarely ever touched a computer. +--- 93225928 +>>93224454 +It will obey them every time, so long as the search doesn't include any paid results or have any sort of social or political agenda! +--- 93225944 +>>93225928 +lol +--- 93225979 +>>93224940 +I was about to write something like that as a joke but apparently it's not a joke. +--- 93226035 +>>93224940 +What about an email like this +>Dear Mr. Teachermann +> +>I'll be absent on the 14th of April. I apologize in advance. +> +>Regards, Anon +--- 93226067 +>>93224508 +--- 93226164 +>>93224142 +Nah too dangerous, and it's basically illegal to discipline them so they are like violent little monkeys. +Same kind of thing with women, they're just not worth it and one bad encounter could ruin your life even if you did nothing wrong. +--- 93226239 +>>93224065 +Folders aren't real anyway, and they're called directories. +--- 93226278 +Generationposting has far exceeded raw man-on-man anal sex in the heights of faggotry and now I'm just standing on the ground staring at the sky in awe wondering if it'll reach the moon. +--- 93226314 +>>93226035 +>Dear Anon, +>If you do not produce medical documentation of your illness within the next hour, your GPA will be reduced to -10.0. Any attempts to hinder this process will result in armed agents from the bursar's office raiding the permanent address we have on file and executing you and your entire family. +>Regards, +>Prof. Teacherstein +--- 93226351 +>>93226239 +Where do you think the model for directories originated from? +--- 93226377 +>>93224391 +Mine comes with one called Files and guess what? It has directories. +Yes, it only shows you the /sdcard portion of the hierarchy but it's still a filesystem directory tree nonetheless. +--- 93226635 +>>93226377 +>it has directories +great. did you know zoomers ignore that outdated boomer shit and just plug shit into the search bar and the files they wanted pop-up automagically? if they need to browse through shit, they go through an app's tiled selection screen or recent files. +--- 93226664 +>>93224746 +see +>>93224142 +>>93226239 +--- 93226671 +>>93224007 +that method is pretty dated, the e-mail already has your name and they obviously know your messaging them specifically +--- 93226684 +>>93223956 (OP) +I know Zoom-Zooms that know how into computers, but that’s only because they were taught by good teachers. +This boomer needs to understand that they’re still kids in the end. It’s no different 20 years ago. +--- 93226685 +>>93224746 +see +>>93224253 +>>93224479 +>>93224391 +--- 93226713 +>>93223956 (OP) +>compose emails +Everyone knows how to compose emails most colleges send acceptance via email. This is some boomer mad that kids are using emails like text. +--- 93226772 +I hate millenial faggots so much its unreal. They lack boomer/gen x work ethic and only had muh youth. Now theyre older and still poor cause they got 200k gender studies degree and now are seething at fucking highschoolers. +--- 93226862 +>1980's +>most people don't know how to use a computer +>1990's +>most people don't know how to use a computer +>2000's +>most people don't know how to use a computer +>2010's +>most people don't know how to use a computer +>2020's +>most people don't know how to use a computer +AAAAAAAAAAAAAAAAA IM GOING CRAZY!!!!!!!!!!!!!!!!!!!! +--- 93226879 +>>93226862 +This, but unironically +--- 93226886 +>>93223956 (OP) +Millennial are actually the peak of tech, boomers are just like zoomers, tech illiterate. +--- 93226905 +>>93226886 +Gen Xers who bothered to use computers have been across the board significantly better at them than the vast majority of millennial faggots. Millennials were the start of the learned helplessness phenomenon and as a whole do not have the grit to deal with anything actually difficult. +--- 93226926 +>>93226772 +>>93226905 +You're both mentally retarded. Even more mentally retarded than the average person talking nonsense about generations. +--- 93226935 +>>93226905 +The majority of genX are just like boomers, with an exception of few individuals +--- 93226963 +>>93226935 +>source: my ass +Yeah okay kid, all the stuff you ever cared about was built by Gen X and older. +--- 93226989 +>>93223983 +you are either retarded or mentally ill. take meds either way (mental meds or IQ meds). + +>>93224475 +well good for you then. the thing is these zoomers are retarded and have been feeding big data their "private nudes" off the cloud permanently be stored in data-replicating datacenters that only are protected by a device-native private key that is easily leaked due to their "downgrade" to biometric authentication. they don't even know how to hide files or folders containing their porn, no their porn is coming either straight off snapchat or tiktok. that's what their 14yr-old selves were doing and so fast forward now they still don't know how to use the file system since all they know is pozzed dating apps and shit. +they're even worse deviants than the 14yr-old you or me. + +>>93224142 +america's education system is ruined by these semitic brainrot apps (not even including tiktok/chyna at this point!). either way the average indian person can literally use file systems and set up vmware and all that shit, the average senior student in america can't even use the printer and file system because all that's in their brain is gayming (if not dating) or brainrot memes from apps and video streaming, that's why the average american teen dreams to be a youtuber while the average chinamen strive to be astronauts, the average indian strives to be a CEO. +--- 93226992 +>>93226862 +>>2020's +>>most people don't know how to use a computer +More like most people don't know they're using a computer. +--- 93227144 +>>93226772 +cry more. +>boomer/gen x work ethic +nah. the gen x/boomers actually are more harsh. +the disappointment in a millennial is just reflective of (You) since millennials were actually even at times better than gen x and strive to be. meanwhile gen z strive to be the downfall of humanity. +>gender studies +that's only an american problem +--- 93227181 +>>93226989 +>the average indian person can literally use file systems +The average Indian doesn't have electricity or running water. +--- 93227249 +You old fucks bragging about knowing how to use a folder disgust me. Get with the times old farts +Zoomers are working with ML and AI and using chatgpt to write their zero brain use emails. +Maybe go outside and see actual people for once +--- 93227261 +>>93224142 +Kids don't need to be explicitly taught, they just need to be exposed to the right technology. + +When I was 2, my parents just let me go on our Windows 95 computer and I figured that shit out on my own somehow. It's not that different than modern parents letting their kids go on tablets and smart phones and shit; though the key difference would be that modern technology is made for retards so there's nothing to actually learn, so kids don't learn. +--- 93227277 +>>93227144 +>that's only an american problem +lol wrong + +https://twitter.com/DavidRozado/status/1643798767781683201 +--- 93227377 +>>93223956 (OP) +"Digital natives" was such a retarded name, but "click natives" couldn't possibly be a worse name for a generation terrified of actual computers and whose only contact with IT is spending the day using tiktok with their phone. "Tap natives" would be infinitely more accurate. +--- 93227390 +>young people bad! +yawn +--- 93227521 +>>93223956 (OP) +>off of +I dunno how emails work either, I've never needed to write something that phishes unfortunate saps +--- 93228162 +>>93224253 +All the Android phones I've bought come with an included file browser app, and android has the majority of the phone os market share, so most phones come with a file browser +--- 93228259 +>>93224940 +>ay mr. k + +>i need the summer exempt form can you send it + +>peace nigga +--- 93228307 +>>93223956 (OP) +>Teachers know more about computers than kids +Laughable OP. Early 20's zoomie. my math teacher in high school hosted a server on his home wifi to host worksheets for his classes. Every single day his server got a Ddos attack that would bring it down for the day, boomers solution? tell the whole class to keep refreshing. I don't know why he didn't use the school to host it +--- 93228337 +>>93227377 +That reflects another truth, they don't know what's a click or tap +--- 93228512 +>>93223956 (OP) +Do schools not teach ict anymore? I'm 23 and my school had ict class every year to make sure everyone can use a computer +--- 93228522 +>>93224940 +genuinely based, i hope this becomes the norm. +--- 93228543 +>>93223956 (OP) +Young people are statistically better at computers because they don't fear them. That's it. +--- 93228589 +>>93228307 +That made me laugh. He has an engineer's mind. +--- 93228610 +>>93226989 +>they're even worse deviants than the 14yr-old you or me. +lmao dunno about that bud +--- 93228634 +Survivor bias thread. +--- 93228660 +>Teachers assume kids know things they didn't teach them +Teachers were always this stupid or it's a new thing? +--- 93228677 +>>93224142 +You're not wrong +--- 93228795 +>>93228589 +>He has an engineer's mind +For sure he taught maths and science. He told me about how he used to build computers back in the day pretty cool dude, even seen him at a ZZTop concert during summer break and Ive had respect for him since. Even if he didn't use the schools networks to host it but I got to play a lot of flash games. +--- 93228837 +>>93226862 +This is fucking retarded. When I was in junior high all the normies, yes even the Stacys, were on IRC, downloading mp3s illegally and had to write and save essays in a directory structure. + +Everyone had to have a basic knowledge of computers just to make them work and we were required to do that. Now everything is so hidden you don't need to know shit. +--- 93228950 +>>93223956 (OP) +The t was a mistake. Should be digital naives, not natives. +--- 93229212 +>>93228543 +>Young people are statistically better at computers +KEKW +--- 93229345 +>>93228543 +You're on 4chan, so you probs aren't a boomer, even though you sound like one rn. +--- 93230246 +>>93228837 +Correct. +Genx and millenial were the only two gens to experience this, and boomers had other skills like being able to read and write English in full sentences and paragraphs. Many had touch-typing and practical life skills like knowing how to change the oil in a car. Zoomers on the whole are just useless. +--- 93230284 +>>93228660 +It started to pick up steam when they decided to only hire dedicated marxists. And yes there is hidden camera video with admissions that this is happening by plan. +--- 93230315 +>>93228837 +>yes even the Stacys, were on IRC +sure, you can just lie and make shit up on the internet. those who were around for it will know you're an idiot liar, tho. +--- 93230508 +>>93230315 +I'm not lying. All the most popular girls were on there. IRC became such a thing at our school we perhaps were bit of an outlier. + +To be fair it was probably their brothers helping them set it up. +--- 93230530 +>>93230508 +it was an outlier, there were almost zero girls on EFnet, the only relevant IRC network in the 90s. just enough to populate the EFnet Sex Chart, but not enough to even remotely support your claim that it was common. +--- 93230559 +>>93224391 +>>93226685 +I've have plenty of different android phones and all of them came with a file explorer, however simple. +--- 93230571 +>>93223956 (OP) +>>93224065 +>millenials and boomers design apps with flat UIs and flat file storage +>zoomers now only learn on chromebooks and not with equipment they'd actually be using in a workplace environment + +>cloud services reinvent the wheel and create retarded file sharing, file ownership hierarchies, and file privileges when microsoft already defined decent ACLs 30 years ago +>ex you can have a file live inside of your google drive that you do NOT own +>still no way to audit all of the files in your drive that you are sharing +>it's not even refined from the management standpoint +>Google's documentation for sys admins is a mile long for transferring files from one user to another +>if you migrate one user's files to another it breaks all the external sharing +>if users move a file to an organization shared google drive folder, they still "own" the file instead of a system account owning it. IE if you delete their account, it still deletes those files too + +>year of our lord 2023 and the best way to sort and transfer a user's cloud storage is still to literally grant yourself delegation access to their account, log in as them, and sort through them manually + +>millenials and boomers blaming zoomers for an absolute shitshow that THEY created +--- 93230581 +>>93224142 +you're right, but isn't worrying that they have to? I mean, all computer things I learned by myself when things weren't really that simple like they are today, how come the newest generations can't do that? +--- 93230582 +>>93230530 +This was 2000-2003, all the normies were on Undernet and were beginning to get ADSL at home. +--- 93230600 +>>93223956 (OP) +Bet this mutt can't even send an e-mail from mutt. +--- 93230602 +>>93224065 +SSDs made folders obsolete anyway. +--- 93230659 +>>93230530 +is there any relevant irc network today with actually active users and not just 30 bots and 5 idling spergs? +--- 93230782 +>>93223956 (OP) +You can't click on a smartphone and that's all children use these days. +--- 93230819 +>>93230600 +that's vi(m) not mutt kek +--- 93230864 +>>93230582 +>Undernet +lol diff --git a/g/93223984.txt b/g/93223984.txt new file mode 100644 index 0000000000000000000000000000000000000000..827df4bdb93287d3f297ec1ebe5a405d6cb36bc8 --- /dev/null +++ b/g/93223984.txt @@ -0,0 +1,1168 @@ +----- +--- 93223984 +>UPGRADE & BUILD ADVICE +Post build list or current specs including MONITOR: https://pcpartpicker.com/ +Provide specific use cases (e.g. 4K editing, high FPS gaming) +State budget and COUNTRY or you will not be helped + +>!!ATTENTION!! +All Zen 4 CPU classes and all motherboard vendors have an issue with burnt sockets+CPUs. Update to the latest BIOS ASAP and check SoC voltage. https://youtu.be/kiTngvvD5dI?t=2210 [Embed] +Make sure that a 12VHPWR connector is fully seated in its socket, otherwise the connection can melt. https://youtu.be/ig2px7ofKhQ?t=1345 [Embed] + +>CPUS** +HTPC(4K60)/Web Browsing: i3 10105 +Gaming: i5 13400, i5 13500 +eXtreme gaming: R7 7800X3D; existing AM4 board: R7 5800X3D +Multicore: R9 7950X; budget: i5 13600K +**Existing AM4 board with an old chip? A Zen 3 CPU is likely the best option + +>GPUS +1080p: RX 6700 XT; budget: RX 6600; ultra budget: used GTX 1660 Super +1440p: RTX 4070; RT: RTX 4070 Ti +2160p: RTX 4090; budget: RTX 4070 Ti +Amateur production: RTX 3060 12GB, used RTX 3090, RTX 4090 + +>RAM +DDR4: 2x 16GB 3600 MT/s CL18 +DDR5: 2x 16GB 6000 MT/s CL30 + +>COOLERS +Standout: Peerless Assassin 120 +https://linustechtips.com/topic/891730-cpu-cooler-performance-tier-list/ + +>PSUS +Aim for 50-75% PSU utilization at full system load +https://cultists.network/140/psu-tier-list/ + +>SSDS +Standout: WD SN770, Kingston KC3000 +Avoid: Samsung 970 Evo Plus, cheapest NVMe SSDs +https://ssd.borecraft.com/ + +>MOTHERBOARD INFO: +AM4 - CPU-less BIOS flash feature advisable with Ryzen 5000 +LGA1700 B660/Z690 - CPU-less BIOS flash feature required with Core 13th gen + +>GAMING MONITORS +https://pcpartpicker.com/user/pcbg/saved/dP3v4D + +Previous: >>93215285 → +--- 93224059 +>>93223984 (OP) +https://pcpartpicker.com/list/KyMDGL +Should I go 1000w or 1200w for a 4090/13700k 2xSSD build? +--- 93224071 +>>93224059 +Must be weird to want to spend that much money and not really understand what you're buying. +--- 93224089 +>>93223836 → +Anything else good besides the SN850X? It would cost me an extra $33 all together, and I need to pinch some pennies here. + +>>93223825 → +All sounds fair. I don't do video editing, but planning to run VMs full time soon. Maybe I'll just keep it, as most VMs have ran fine anyway. Though I never did anything heavy on them. +--- 93224095 +>>93224071 +Just give me your information, autist, I don't want your snarky condescending retardation. I want your pure distilled knowledge. +--- 93224102 +>>93224095 +If you have the money why are you asking if you should get the weaker product +--- 93224120 +Where would I shop for a decent BTX case? +I want to rehouse an old Dell to fit more HDDs but at this point I'm not sure if it's worth it. Non-standard motherboard is an issue... +--- 93224165 +>>93224095 +1000 watts. Every time i've tried to use nvme as a c drive, the sys shuts down so I'd use sata for C, but gl +--- 93224197 +>>93224165 +That's a bizarre problem, I've been using a 970evo NVMe for years and never had that kind of issue. +--- 93224225 +>>93224197 +had it on 2 1tb 970evos, probably something wrong with my mobo +--- 93224230 +>>93224089 +SN770, P5 Plus, KC3000. Read OP +--- 93224291 +ITT: PCFaggots +--- 93224338 +>>93223984 (OP) +>Avoid: Samsung 970 Evo Plus +it's over +--- 93224417 +>>93224165 +Don't give advice based on your user error +--- 93224471 +>>93223984 (OP) +Why is the i5 13400 recommended? Are the e cores worth it or should I go with the i5 12400 for a slightly cheaper price? +--- 93224497 +javascript:quote('93223279') + + PRIME Z390-P (LGA1151) Is what I have for a motherboard +--- 93224506 +>>93224497 +virus +--- 93224514 +>>93224497 +God damnit how do I reply to a post in a previous thread? +--- 93224529 +>>93224506 +I just don't know how to reply to someone from a previous thread +--- 93224576 +>>93224529 +The same way you reply to any other post. +--- 93224592 +>>93224471 +>Why is the i5 13400 recommended? +its a good chip +roughly ~12600k in perf + +>Are the e cores worth it or should I go with the i5 12400 for a slightly cheaper price? +as always, it depends on how much cheaper the price is +but probably no, its a good idea to get the e-cores +memes aside, they do good work +--- 93224611 +>>93224529 +do what you did, but remove everything except the double quotes and the post number +and welcome to 4chan, nigger. +--- 93224623 +>>93224398 → +PRIME Z390-P (LGA1151) +This is my mother board. Good lord. +--- 93224633 +>>93224611 +I've been here for a couple years I've just never replied to anyone from a previous thread. +--- 93224672 +>>93224338 +buying one anyway. +--- 93224765 +>>93224592 +Considering it's like a 20 burger dollar difference on Amazon I'll go with the i5 13400 then, thanks anon +--- 93224843 +>>93224765 +yea, for 20 shekels its definitely not worth it +also, have a look at the prices for the 13500 +4 extra e-cores, plus more cache, plus higher boost clocks +definitely worth another 20 shekels, more even. +--- 93224886 +>>93224843 +I'll definitely look into it. Also, I've kind of been out of it on pc hardware for a while, how serious is the burnt socket issues for zen 4? The ryzen 5 5600x is 150 sheckles on Amazon right now +--- 93224935 +>>93224886 +>how serious is the burnt socket issues for zen 4? +extremely serious, but also quite rare +as far as i've been able to understand, it happens on a combination of losing the silicon lottery on both the chip and the ram(?), plus having a mobo with a shitty bios implementation(?) +like, i really don't know + +but honestly, it doesn't matter. zen4 has been a massive disappointment +ofc the 7800x3d with its massive cache can brute force its way to victory in cache sensitive games +but aside from that, the 13th gen intels are clearly the better chips. same for the mobos +like, i cannot recall the last time intel fucked up so bad that chips exploded +or, since you mentioned the potential for a 5600x, the last time intel had persistent problems with usb disconnects, unfixed even past the end of the chipsets life. + +tldr just go intel +--- 93224936 +>>93224120 +Nevermind I just took another look at the motherboard and it only has +2x SATA +0x USB3 +1x PCI-E slot +2x PCI +plus it's got proprietary connectors for things +I guess it's e-waste. +--- 93224966 +>>93224886 +>how serious is the burnt socket issues for zen 4 +About 5 chips burned, AMD offered refunds for ASUS motherboard quality failure. +--- 93225015 +feeling mad at my 8700k for throttling down to 4200MHz from its 5GHz OC under all-core load with a single-tower cooler +I could replace it and its Z370 board with a Ryzen 5600G and a B550 mobo for basically no extra cost +except for mounting brackets because I can't find the stupid box for the stupid cooler +I could also swap out my Radeon 5700XT for an Arc A750 (hence the G) and VP9 encode like a boss +who else /lateral/ here? +--- 93225041 +>>93224935 +>>93224966 +Yeah I definitely wouldn't buy a 7800x3d (also because money) but the 5600x is tempting at only 150. You said it has problems with USB disconnects? +--- 93225047 +>>93225015 +or, and im just spitballing here, you could actually upgrade to a proper modern system +--- 93225063 +>>93225041 +>You said it has problems with USB disconnects? +yea +well, technically its the mobos that have the problem, i think, but it comes down to the same thing +--- 93225076 +>>93225047 +Why would I do that when tech has peaked and the only thing I'm missing is fast webms? +--- 93225096 +>>93225076 +more powa +--- 93225099 +>>93225063 +Gotcha, I might look into the motherboards for it. If I don't end up getting the 5600x then I'll definitely go with the i5 13400. +--- 93225119 +Hey guys +I just upgraded my PC! +now it has 16gb ram! Look at this beauty +--- 93225191 +>>93225119 +only reason to upgrade from 16 is if you have more than 8 threads and chromium compile hogs all your ram +--- 93225240 +https://pcpartpicker.com/list/9GdfNc + +This is my current setup. +Not planning on changing my monitor, I'm ok with 1080p/60hz, I'm not really a gamer, I only play minecraft sometimes with friends. +Mainly what I do on my PC is use photoshop or autocad or excel and have youtube on the background. + +I am going to buy the reccomended DDR4: 2x 16GB 3600 MT/s CL18. +Should I still go for a R7 5800X3D or is a R5 5600 enough? +Also, tried doing some Stable Diffusion stuff but my 1660ti is too slow. Is a RTX3060 good enough for that? +--- 93225411 +>>93225240 +>Should I still go for a R7 5800X3D or is a R5 5600 enough? +no need for x3d +5600 is fine +also consider the 5700 for the 2 extra cores +if within 50 shekels its easily worth it + +>Also, tried doing some Stable Diffusion stuff but my 1660ti is too slow. Is a RTX3060 good enough for that? +"good enough" is a matter of degree +its much better than the 1660ti, much worse than the 4090 +considering you care about ml, you probably wanna get 12gb vram at least +so really, its either a 3060 or a 4070 + +also, i know its unsolicited advice, but i STRONGLY recommend upgrading your monitor situation +if you don't wanna pay the high refresh tax that's fine, for a non-gamer (or, extremely casual gamer, i guess) +but do consider a 32/4k/60hz, it will be a massive upgrade for you (or at least a 27/4k, but imo its not worth the minor savings) +and also do consider going dual monitor, again, its a massive QoL upgrade +--- 93225569 +>>93225240 +based and redpilled +--- 93225641 +>>93225191 +Yeah +But 8gb is nothing nowadays +That's why I bought used 16gb +--- 93225709 +hello fuckers, just put in a 5800x3d and stress tested it via cinebench, temp averaged around 90-91 at max load, got a decent score of 14k so no throttling. this is a healthy temp for this kind of cpu, yes? I read it tends to run hot but wanna double check. +--- 93225715 +>>93225569 +>redpilled +Estrogen? +--- 93225754 +>>93225709 +I know your processor doesn't come with a manual but you can find the details about safe operating temperatures in their spec sheets. +--- 93225771 +>>93224291 +I don't understand this meme +--- 93225797 +https://youtu.be/Y6ljFaKRTrI [Embed] +>45m views + +>>93224471 +See >>93224970 → + +>>93224623 +You'll have to open it up and see what connectors it has and exactly which power supply you have. If your 2070 Super only needs one 8-pin, your current PSU might be fine (as long as it's not actually 220W) + +>>93225119 +Truly beautiful + +>>93225240 +Just keep your current RAM and CPU. Get the 3060 12GB for SD before you change anything else +--- 93225808 +is the 7800x3d probably going to stay around the same price? i can get it on amazon for msrp with like 23 dollars off using the store card + +obviously the AMD Ryzen 9 7900X, ASUS B650E-F ROG Strix Gaming WiFi, G.Skill Flare X5 Series 32GB DDR5-6000 thing is a better deal, but if i can get a motherboard for like 150, would the difference in performance with the l3 cache be worth it, do you think? i'd be using it for gaming +--- 93225841 +>>93225739 +>>93225754 +I know the safe operating temp is 90c what I'm asking is if that's a healthy temp to have at max load in cinebench. I'm gonna assume yes +--- 93225846 +bros where can I get a cheap windows license? I've seen digitalchillmart com being shilled but it looks shady af +--- 93225853 +>>93225846 +>>>/g/fwt +--- 93225946 +What's the meta for someone looking to go to am5? +my current build is +x370 mobo +Ryzen 3700x +rx 5700xt +32gb ddr4 3200 +--- 93226036 +Does old LCD harmful to your health? I have a very old laptop, 11 years old and I noticed whenever I use it I got sick and tired after that. +Maybe it's the mercury in the monitor? +--- 93226056 +>>93226036 +--- 93226071 +>>93225797 +Thank you sir +>>93226036 +--- 93226073 +Does playing at 90 fps feel better than 60 fps on m+k or you need to go 120+ fps to feel it consistently? +--- 93226075 +almost low enough to justify going DDR5 instead of sticking to existing DDR4 +--- 93226077 +I'm ditching my AM5 build anons, this piece of shit is just too finicky. Picking up a 13900K and MSI MPG Z790 EDGE WIFI tomorrow. Can't even watch a video and scroll a webpage on a separate monitor without the bitch stuttering. +--- 93226100 +>>93226056 +>>93226071 +Im not joking I always get sick and tired after using that old laptop. Going to throw it away anyway, just curious +--- 93226104 +The OPs are getting worse and worse. +--- 93226123 +For a proper temperature test of my new CPU while undervolting it to reach the peak perf/watt I've decided to use a 10 minute encoding that will 100% load everything up and reach max temp, but my question is how much time should I wait between each stress? +--- 93226149 +>>93226123 +My cooler can get my cpu from full load temp to idle temp in 1 minute +--- 93226159 +>>93226149 +I'll make it two then just to be sure, thanks lad. +--- 93226163 +I was getting random crashes on my fav game every 2-3 hours and it was driving me crazy. +my computer was passing all the memory stress tests and cpu stress tests. +I dialed back the trfc timing on my ram from 131.33ns to 134.66ns and haven't got a crash since. + +wagmi +--- 93226181 +>>93224471 +Personally I recommend the 13500 over it and 13600k. +--- 93226185 +>>93226104 +why +--- 93226189 +If I see another build using Nvidia with AMD CPUs I'ma kill somebody +--- 93226196 +>>93226185 +eyes, have em? +--- 93226203 +>>93226189 +Why tho? Seem to work fine on my rig +--- 93226209 +>>93226181 +>I recommend alder lake refresh over more efficient and stronger raptor lake +What's with these trolls since last night? +--- 93226211 +>>93226100 +Try to overclock your monitor's refresh rate +--- 93226227 +>>93226203 +Its just dumb +--- 93226233 +>>93226196 +no +--- 93226241 +>>93226227 +why +--- 93226264 +>>93225015 +those cpus are notorious for having terrible thermal paste under the ihs. + +go into your bios and turn off the avx offset. +--- 93226295 +>>93225808 +no point in buying the non 3d chips if you are playing games +--- 93226335 +>>93226295 +i'm using a 1440 monitor and am considering getting 4k, i've heard the 3d are mostly only for lower resolutions +--- 93226357 +>>93226335 +At 4K, you will always be GPU limited. +--- 93226407 +Note to anyone who cares. If you have trouble installing repacked games, then turn off your RAM OC and set it to your normal RAM speed. My OC was a bit unstable for the installer. +--- 93226430 +>>93226335 +modern gpus are increasing cpu limited at 1440p. +certain games like far cry, hitman, asseto, ms flight sim get significantly better perf with the extra cache. +--- 93226444 +>>93226407 +AMD? +--- 93226480 +>>93226073 +>Does playing at 90 fps feel better than 60 fps on m+k +Yes +--- 93226481 +>>93226444 +Yes. It was fine before I tried the repack installer. +--- 93226487 +>>93226480 +Very nice. Thanks buddy. +--- 93226500 +I've been impishly asking AMD? to every single issue minor or serious in these threads for 3 straight days, been here for hours everyday... every time the answer is AMD. +You can check this in archives. +Keep in mind that the total market share in US and EU is a small percentage yet they make 90% of the problems. +--- 93226507 +>>93226073 +around 85-90 fps is where it starts to feel really good +it's harder for me to tell the difference between something like 100 fps and 144 fps but there's still a slight difference +--- 93226511 +>>93226075 +That's good shit. That's 100% worth. Especially considering how much of a boost Intel CPUs get from higher speed ram. + +Going DDR4 at this point would be stupid unless you're buying some poverty tier 12400/13400 shit. +--- 93226528 +>>93226500 +I am a cheapskate, so I don't really have a stake in this. +Luv me R5 5600 +Luv me RX 580 8GB +Simple as +--- 93226536 +>>93226507 +--- 93226546 +what can I do with a PRIME Z390-P (LGA1151) +--- 93226568 +>>93226546 +send it to ewaste +--- 93226614 +My motherboard won't power on. I left a drink on top of the case and the condensation dripped inside. Going to try an RMA but what evidence are they going to look for to deny the claim? +--- 93226626 +>>93226591 + +Why is the 7950X excluded from this? + +On multicore I score ~35350 on my 7950x3D with pbo (-15 all core) @ 156 watts. + +>>93226500 + +>Keep in mind that the total market share in US and EU is a small percentage yet + +Yeah that's because Intel has the OEM market. AMD makes a little for consumer OEMs and the rest goes to enterprise server stuff and a little for enthusiasts. +--- 93226639 +>>93226626 +When I build my own PC or any of my friend does that he purposefully chooses Intel because everyone has been of AMD problems for decades. +And that's what matters, what thinking people do. +Pure contrarians do not apply. +--- 93226640 +>>93226614 + +You could have fucked up half a dozen different things in there, who knows if it's the mobo? + +How long did you wait before turning it on? Let it completely dry overnight and try again. +--- 93226691 +>>93226241 +Because they're competing companies. Niggers only get Nvidia because they think they make the best shit which is untrue - its just overpriced +--- 93226704 +>>93226691 +brand loyalty is for retards, buy whatever shit you want. +--- 93226735 +>>93226614 +I once spilled soda into my case and all over the components, didn't turn it off, didn't even bother cleaning it. never had any issues, build lasted for years until some nigger broke into my apt and stole it. +--- 93226756 +>>93226735 +Same here but multiple times, except we have gypsies here instead of africans and one broke in my apt very loong time ago stealing my toys. (was a kid back then). +--- 93226762 +>>93226189 +why +--- 93226767 +A lot of people are gonna give me hate for this but.... If you have...... 500 dollars... Then you have..... 750 dollars... +--- 93226803 +>>93226640 +Tried paper clip test on PSU, fan starts up fine. Tried shorting pins on mobo to jump start, no signs of life. What else could it be? +--- 93226815 +I want a new GPU for building chatbots/ai. What kind of GPU would be compatible with this setup? Probably wouldn't want to spend more than $3k + +https://pcpartpicker.com/list/C8bx4s +--- 93226823 +>>93226640 +Also this was days ago, so it's fully dry +--- 93226836 +>>93226815 +Second hand Tesla GPU with 24 gb that's dirt cheap if you want to run chat models. +--- 93226837 +Hey /g/. I don't really know anything about computer parts but I've gotten an offer recently of a PC with the following specs +>intel i7 10700F +>geforce gtx 3060 +>32gb ram +I usually play old games eith low requirements but I'd like something that could be able to handle modern releases even if on medium/low settings. Stuff like Elden Ring, The Witcher 3, RDR2... +Could I get any opinions? On whether this those parts would be enough? +--- 93226840 +>>93226815 +>chatbots/ai +just find a less expensive way to masturbate +--- 93226841 +>>93226815 +throw in a 4090 +--- 93226842 +>>93226815 + +If you're unironically doing AIshit then go big with a 4090.. +--- 93226852 +>>93226837 +the real question is how much are they charging you +--- 93226908 +You guys still have that graph that compares web browsing performance between CPUs? +--- 93226916 +>>93226852 +Well...They're charging me R$5000 (brazil) for it, which a simple conversion puts it at about $1000. Also includes power supply and the motherboard. +--- 93226949 +>>93226511 +>Going DDR4 at this point would be stupid +except that I already have decent DDR4 so i'd be saving over $100 by just using what I have. my build upgrade is "budget" either ways. +--- 93226973 +>>93226815 +you should not build a pc for chatbots because local models are utter dogshit gutter tier compared to cloud offerings. chatbots and imagegen are two different things, you can imagegen on your local machine fine but don’t bother with text +--- 93226980 +https://www.intel.com/content/www/us/en/events/on-event-series/vision.html + +THANK YOU INTEL + +CORE ULTRA BRANDING ANNOUNCEMENT ON TUESDAY +--- 93226988 +>was thinking about 7800x3d over 13700k because power usage +>was worried 7800x3d would do the melting bug even if they resolve it in bios updates +>plus microcenter deal meant $550 for 13700k+mobo+ram vs $750 +>even if I run my main rig 12 hours a day at full load it'd still only cost me an extra $100-$120 in power over the 7800x3d over 5 fucking years + +Did I make the right call bros... +--- 93226996 +>>93226988 +what are you going to use the pc for +--- 93227005 +>>93226980 +a rebrand of 15 years of product segmentation is the most pressing thing for Intel right now +--- 93227012 +>>93226837 +Check benchmarks on youtube. RDR2 is the most demanding of what you have listed. Personally I would use Cyberpunk 2077 as your benchmark. It's demanding, but it has settings that scale as well. Keep in mind that a lot of the console trash that gets release for PC does not scale, and dropping all settings to Low gives you maybe 15% and the game looks like ass + +The 10700F is worth about as much as a 12400 in gaming + +>>93226916 +Seems like a lot. You could build a system of that tier for way less than 1000USD all new in the USA + +>>93226815 +Technically anything up to a 4090. OP has recommendations for every budget level + +>>93226691 +>Niggers only get Nvidia because they think they make the best shit which is untrue - its just overpriced +Absolutely retarded. Nvidia does make the best "shit" by far + +>>93225946 +If you're just gaming, get a 5800X3D and a better graphics card. +--- 93227028 +>>93226996 +Gaming and maybe some light productivity stuff for memes +--- 93227052 +>>93227012 +>5800x3d +can my old ass mobo handle that? It's an Asus Prime X370. Also what graphics card would be the ideal upgrade path. +--- 93227072 +>>93227052 +yes your motherboard will support the 5800X3D with just a bios update. +what is your GPU budget? +--- 93227078 +>>93227028 +it’s not going to make a difference whether you use either. i’ll be honest i don’t really get why everyone cums over the 7800x3d, it’s way overkill for gaming unless you are planning to do some retarded 240/360hz esports gaming. i’m using one and it barely goes over 40% usage max in the most cpu demanding games at 144hz + +if you’re 4k60 gaming, the value proposition is even more of a joke +--- 93227123 +>>93227078 +it's overkill unless min-maxing with the 4090 +--- 93227136 +>>93227072 +I'm on the latest Asus bios that isn't a beta +Probably like $700 gpu, maybe a grand. +my power supply is only 850w though +--- 93227151 +>>93227078 +oh yeah its not about the power but the power consumption and reduced heat. they've got similar enough performance (a bit extra in some stuff and a bit worse in other stuff) + +50 to 60 extra watts under load and an extra 10 degrees causing my cooler to do a bit more work +VERSUS +Chance Processor burns up and Motherboard burns out +--- 93227176 +>>93227136 +The 4070 or 6950XT are the best options, neither will tax a 850w PSU +--- 93227185 +>>93225119 +Nice, and enjoy, dusty PC's are soulful. +--- 93227208 +>>93224935 +>the 13th gen intels are clearly the better chips +By what metric (besides explosions)? +--- 93227284 +>>93227012 +I see. I expected that honestly. Local stores where I live always overcharge for stuff. +Guess I got too excited over the prospect of getting a decent PC and almost fell for their talk. +Thanks a lot for you input anyway anon. +--- 93227289 +lads, o11d evo white or black? +rest of the parts are all black, but I think it might look good in a white case... +--- 93227295 +>>93225411 +Dual 32in monitor? +--- 93227345 +>>93227208 +Perf/$ especially at the i5/i7 tiers and reliability +Definitely not in perf/W though +--- 93227350 +>>93226691 +Intel is competing with Nvidia GPUs. Anyway, Nvidia has too many features that make it better than AMD GPUs especially since they price them the same. I'm not sure about the competition between CPUs. Does anyone have a rundown? +--- 93227381 +>retarded youtuber wants to convince you to move to a 4k or 1440p display +>he uses a 27 inch 82 PPI 1080p display +>ah it's dogshit see, it's dogshit +Dishonest, retarded. +--- 93227395 +>>93226973 +Are online models still heavily censored and restricted? I heard some people get banned for using it. +>say a couple words +>money stolen +--- 93227418 +>>93227350 +7800x3d is the best, it has similar performance to 13700k/13900k in gaming but nearly half the power consumption +if you're not near a microcenter and can't get the 13700k bundle deal ($550 for CPU+32 GB of RAM+$220 msrp MOBO) then the 7800x3d is the best value at the mid to high end gaming (intel is a bit better in work/rendering stuff, like 25% more power but still a lot more power consumption) + +just don't get an asus motherboard with the 7800x3d, those fuckers fucked up and their shitty motherboard settings have a very small chance of burning a hole right in the CPU lmao +--- 93227470 +Air coolers last forever, liquid coolers last 3-5 years, is that accurate? +If I'm only air cooling, do you think intel still wins perf/$. +I'm also hoping to build a PC that lasts like 10 years, maybe upgrade to a Zen 5 if it becomes cheap enough, so are those good enough reasons to pick AMD CPUs? +--- 93227531 +How’s Gigabyte motherboard quality these days? Planning to get their B760M AORUS ELITE board for a midrange build. + +Can’t find any reviews online either +--- 93227564 +>>93227531 +Some are okay, some are shit. None are good. This is true for all manufacturers. +--- 93227607 +4060 Ti desktop = 4070 mobile =~ 3070 desktop +not my take, overlapping opinion in multiple people I've checked. +--- 93227633 +>>93227470 +>Air coolers last forever, liquid coolers last 3-5 years, is that accurate? +Sort of. It's more a matter of repairability. When the fan breaks down on an air cooler it's easy to replace. When the pump breaks down on an AIO the whole thing needs replaced. From a casual user's perspective at least. You can expect a bit more than 5 years of service from a decent AIO though. + +>If I'm only air cooling, do you think intel still wins perf/$. +I don't think either company is really "winning" this gen. They're trading blows all the way up the stack. +The one thing I would say is that you shouldn't bother with unlocked Intel if you're air cooling because any OC you do wouldn't be much better than stock. + +>I'm also hoping to build a PC that lasts like 10 years, maybe upgrade to a Zen 5 if it becomes cheap enough, so are those good enough reasons to pick AMD CPUs? +That's a big selling point of AM5. Really a matter of judgement as to whether it'll pay off. It certainly did for AM4 buyers but AM5 is a lot more expensive so it might not be so clear-cut this time around. +Again, you can't really go wrong with either firm this gen so even if Zen5 is garbage you're not losing much in an absolute sense. +--- 93227642 +>>93227395 +gpt-based models can be jailbroken very easily +google’s claude has been clamping down on coomers but it’s a free service so shrug +--- 93227657 +>>93226568 +Is it really that bad? +--- 93227658 +>>93227395 +They're pozzed as fuck +--- 93227700 +>>93227657 +the best cpu in the socket is the 9900K, for the cost of it you can get a 5800X3D/ and motherboard and ram or a 13600K and motherboard and tany +--- 93227717 +just waiting on my 7900XTX now and it's all together +--- 93227729 +Do you guys use gayming chair? +--- 93227914 +>>93227564 +I guess I’m going MSI DDR5 boards instead then.. +--- 93227921 +Got my new upgrade and assembled but won't POST or show any signs of life. + +New +>B550 +>r5 5600 +>4070 +>750w +>nvie ssd + +Old +>2x ddr4 3200 in slots 2 and 4 +Case +>ssd + +Things I've tried +>Reseating ram +>reseating cpu +>reinserting all cables +>different outlets +>only 1 stick ram in slot 2 +>checking cpu pins +--- 93227936 +>>93227921 +Forgot to mention I also tried jump-starting with screwdriver in case it was faulty case on switch +--- 93227972 +>>93227921 +is it not posting or not booting? +when you turn it on does it show any lights or fan twitch? +--- 93227981 +>>93227921 +make sure the power button headers are in the correct pins. +make sure the mobo standoffs are being used and it isn't grounding on the case. +try to boot without the case power switch connected to it. +Try a different power supply. + +if nothing happens when you hit the power button it feels like the mobo or psu is doa +--- 93228021 +>>93227921 +is that an asus? I built my rig yesterday with an intel chipset asus and it took a few minutes for it to post the first time, made me fucking worried something was fucked up +if it's not even coming on at all, make sure all the stuff like power button pins and shit are in the right spot +--- 93228069 +>>93227981 +if you short 2 of the pins on the psu it should turn on and be able to power something so i would test that to see what happens. +i think some psus have switches on the back for 115v or 220v. Make sure it is set for the proper voltage of your house. USA is 115v +--- 93228105 +AK500 or AK620 for 13500 bwos? +--- 93228115 +>>93227981 +I've done and tried all that except for swapping out the psu. It will have to be a 550w instead of this new 750w then +--- 93228141 +>>93228105 +Peerless assassin 120, AK500 is probably the same price +--- 93228180 +>>93228141 +It’s not available for me here sadly. +--- 93228202 +>>93228105 +Either would be fine. I'd personally spring for the AK620 if the price difference is <$20. It's about as good as an air cooler can be so you'll be less tempted to buy a new one for your next rig. +--- 93228217 +WD gold or red? +Also seagate is the cheapest, I guess for a reason. +What would you buy for general storage? +--- 93228232 +>>93228180 +whereabouts? +--- 93228238 +>>93228217 +anything wd blue and up is fine +--- 93228254 +>>93228238 +Well, the only ones avaliable are red, gold and purple and they are the same price, more or less. It's in the 10-14 TB range. +--- 93228306 +>>93228217 +Most of the Golds you'll see from retailers are "refurbished". If you can verify that it's new then they'd be okay. Not sure about the value for a bulk storage drive though. +Basic WD Reds (i.e. not Plus or Pro) are all SMR. Fine for a mule but don't RAID them. Thing is you can usually get CMR for not much more money. Red+ or Pro would be my pick if you can't tell if the Gold is new in box. +As always, if you care about data integrity use redundancy. Two cheapo (CMR) drives in RAID are a lot more reliable overall than a single expensive one. +--- 93228315 +Is DDR4 going to be obsolete? Should I build on DDR5 instead? +--- 93228343 +>>93228306 +I don't think they can send "new" items that are not new. +My plan is to cut down on the number of drives, because now I have 2x 3 TB and 1x 4TB hdds aside from ssds in my pc, and I want to get a big one to hold all the data, while using the smaller hdds as backups. +Thanks, btw. +--- 93228378 +>>93227981 +Different power supply at least gets it on, but no signs of life from gpu. +Can't get an image on the screen. +The computer stays on and doesn't bootloop. + +What would you do now? +--- 93228386 +>>93228315 +has ddr4 prices went down at all? I have 32gb but I would prefer a bit faster ram or maybe a bit more +--- 93228388 +>>93228315 +RAM doesn't go obsolete like that. There's still DDR2 systems kicking about that run just fine. It's really just a matter of budget. If you're spending ~$1200+ then you can probably fit DDR5 in. No reason not to when cheap DDR5 is faster than midrange DDR4. If your budget is low enough that the ~$30 extra for DDR5 is impactful then just stick to DDR4. +--- 93228403 +>>93228378 +Try the old SSD? Or and usb boot drive? Or something to rule out that the gpu is completely bricked. +--- 93228421 +>>93228378 +Do you have any old gpu's lying around? +--- 93228443 +>>93228343 +>I don't think they can send "new" items that are not new. +Sure they can. It's shady as fuck but it happens all the time. If you're buying domestic the retailer will probably refund you but it's not really worth the hassle for the sake of a bulk storage drive. +It can happen with consumer components too. Just less likely because there's less profit in it. Happened to me with an X300. +--- 93228447 +Looks like the only air cooler that can keep a 7900X (barely) below max (96C) without throttling indefinitely in a 23C room is the Noctua NH-D15. +--- 93228472 +>>93223984 (OP) +What's the current state of PC builder services? Any of them "good?" +--- 93228476 +>>93228403 +Okay I connected old ssd and the gpu turns on now and I get this on screen. What you recommend? +--- 93228482 +>>93228476 +is that cum? +--- 93228506 +>>93228443 +Which country? I'm in the eu, so I still doubt it can happen. But I'll be cautious +--- 93228511 +>>93228476 +Did you kill an insect on your screen and didn't bother to clean the mess? +--- 93228526 +>>93228476 +So it's because the pc can't boot from the nvme, which I heard was a common issue. Try to get something to boot from and set up the pc so you can run it from the nvme later. +--- 93228536 +>>93228476 +>If you have built or bought a new computer/laptop without an operating system, and you see the message "fTPM corrupted-structure changed", then press the Y key to reset the fTPM and continue to Windows installation. * +>1. To avoid the message reappear in the future, enter in BIOS setup and disable the fTPM in one of the following locations, according your motherboard manufacturer: + +Why can't you fucking google it you filthy animal +--- 93228545 +Enlighten me about the bad sides of adding a NVMe SSD, will it impact the overall performance, increase latency? +--- 93228561 +>>93228545 +as a non-boot drive, nothing +as a boot drive, see above +--- 93228565 +>>93228447 +That's the 3900x + +Also that's a sustained full core workload + +Rarely going to be a thing for most people +--- 93228566 +>>93228482 +>>93228511 +It's blood from my finger. Just happened recently and it's too small to care. I have a new monitor that I will set up after the computer is working +--- 93228571 +>>93228545 +You can't poorfag cope post about your new drive in thread without being called a retard +--- 93228573 +>>93228566 +that;s metal +--- 93228581 +>>93228561 +Thanks I'll use a SATA ssd as my boot drive. +--- 93228583 +>>93228476 +Hit 'Y' you disgusting animal +--- 93228584 +>>93228447 +>>93228565 +https://www.youtube.com/watch?v=vcUuJALqcg8 [Embed] +It's a 7900X, the chart is just a reference list based on the 3900X, I suppose. I agree with the latter point. +--- 93228593 +>>93224095 +Just get the best power supply with the highest wattage available +You'll probably get the 5090 or whatever slop they serve next, so you may as well be prepared on the PSU front +--- 93228594 +>>93228506 +UK. Might as well be EU despite all the smoke from the Grauniad. FWIW Amazon replaced the drive immediately same as they'd do for you. Again, it's just cost:benefit - there's precious little reason to use a single enterprise drive so no amount of risk is worthwhile. Different calculus if you were building a 16-bay NAS. Also, don't buy an X300 they're loud as hell. +--- 93228615 +>>93228594 +I remembered that the last hdd I bought has a sticker that says the warranty is only valid in China, so you might be correct. Fuck this gay world. +--- 93228624 +>>93228141 +>>93228180 +frost spirit 120 se, the upgraded version of peerless asssasin. Very strong cooler and dirt cheap too +--- 93228631 +>>93228115 +5600 and 4070 won't tax a 550W + +>>93228180 +yeah that's why I went AK620 when it was on special +--- 93228637 +>>93228447 +no peerless assassin? shit list really +--- 93228648 +>>93228584 +Just in case you're unaware, the 95C thing is the target temperature. It's "meant" to sit there under an all-core load. Like how your car's engine maintains a coolant temperature of 90C whether you're driving to Target or hooning in the mountains. Stupid behaviour for a CPU so they walked it back with subsequent releases. + +More info: https://www.techpowerup.com/review/amd-ryzen-9-7950x-cooling-requirements-thermal-throttling/ +--- 93228649 +>>93228583 +Okay thanks I googled it and tried N but it kept loopong back to that screen. Now I am looking at my screen again. + +Thanks for all the help anons +From tech support to stock picks, dating advice to motorcycle maintenance, I always come to 4chan for years and never disappointed +--- 93228651 +>>93228637 +>If it's not shilled by Linus it doesn't matter. +Mass quoter type of mentality. +--- 93228655 +>>93228651 +i do have a peerless assassin cooler and I can vouch for it +--- 93228665 +>>93228649 +Glad the advice of losers and neets is useful. +--- 93228678 +>>93228649 +eat the fucking silica packet right now if you won't clean that disgusting monitor +--- 93228683 +>>93228447 +By the way, according to the same guy, for 13700K the NH-D15 reached 107C, so probably impossible to air cool to keep it at max. Of course, like the other guy said, that's not a realistic workload in most cases. +It does make me wonder if this generation of Intel is worth getting if you're deadset on air cooling. +https://www.youtube.com/watch?v=R8x0m0qMZxc [Embed] +--- 93228690 +>>93228678 +He'll be kicked out of the Matrix, maybe he's not ready. +--- 93228701 +>>93228683 +I've seen some random videos on this topic recently and everyone can keep the CPU at 100 and under with air coolking lol. +--- 93228709 +>>93228631 +>5600 and 4070 won't tax a 550W +you dont believe that do you? +>200w GPU +>65w CPU +>Mainboard, ram, HDD, SSD, LEds and stuffs: 100w +>365 wattage total +>But the GPU could spike to 230-240w +>Cpu too can reach 88w in some scenario +--- 93228726 +>>93228701 +i dont think thats good for long term. +the mainboard could melt or some shit, you never know +--- 93228739 +>>93228701 +it sounds like the cpu was throttling to keep at that temperature +--- 93228752 +>>93228726 +That's literally the max possible load, the chip is designed to operate under 100c and the motherboard has to comply with that spec. +You can also undervolt for much lower temperatures at max load but I don't have a chart at hand and cba to search. >>93226591 +My i7 4770k been stressed for 90+ degrees for years almost daily, encoding all the time and it still goes. +--- 93228758 +>>93228701 +Yeah, I guess they tested differently? Looks like the guy I found set the clock frequencies to max, enabled turbo, speed boost, and disabled intel speed step. +Did they disable speed step in that vid? +--- 93228771 +>>93228739 +Nah it was reaching turbo by the specs throughout the test. +>>93228758 +The guy used a bios feature that lifts the limits as well yeah. He said that other retards used the default on OC motherboards that pushed the CPUs beyond the limit, way beyond the limit with absurd voltage values. +--- 93228788 +You guys realize you can use something like +i7 13700k, i9 etc overclocking, temperature test with an after:2023-03-01 say to see more recent tests? +By default youtube gives you clickbaits like Linux and other shit. +--- 93228794 +>ready to start building top of the line pc for the first time +>using amd for life due to prices +>chips exploding +>newer chips require retarded new expensive motherboards that don't even have wanted features like many pcie ports, use the more expensive ddr5 and are prone to errors due to jewish lazy manufacturers +>fuck this I'm getting a 139k +>LITERALLY not a single cooler manages to keep this thing from hitting the thermal cap under a full workload +What the fuck was intel thinking with this? At this point I hate both companies. The only reason why the 139k doesn't melt like the faulty 7900x chips is because the cpu stops running at maximum capacity. +--- 93228798 +>>93228771 +>that pushed the CPUs beyond the limit +Other than some ASRock z690 boards which pushed 1.5-1.6v, this never happens. What retards keep parroting "unnecessary voltage" on r*ddit is simply the default voltage their chips need to be 100% stable in all loads like p95, y-cruncher while they tested their undervolt ""stability"" with garbage like r23 or realbench. +--- 93228803 +>>93228794 +or maybe don't be a retard? +--- 93228806 +>>93228798 +Not my problem. +--- 93228807 +>>93228794 +Just use water cooler retard +--- 93228824 +>>93228788 +Linus just released a video about how you don't need a special cooler for basically anything but professional editing on amd side and very basic options for intel side as well with the exception of the 139k. +--- 93228828 +>>93228824 +Yea I saw that as well. +I've been binge watching many cooler related videos. +--- 93228860 +I also recommend that you install blocktube and block the videos you've already seen. +Just installed that on my chromium so haven't used it yet. +(Chromium has a better tempo algorithm for when you watch videos at higher speeds) +--- 93228867 +>>93228803 +>>93228807 +See https://youtu.be/1YFR20MmvpM [Embed] +The best cooler isn't even a watercooler it's the nh-d15, the only problem is that the thing is huge in size. It still can't tackle a full core workload for the 139k, but literally nothing does. +--- 93228909 +>>93228867 +nh-d15 costs a lot +also, +>watching linus +--- 93228942 +https://youtu.be/dNFgswzTvyc [Embed] +https://www.youtube.com/watch?v=h7ZlCM-QLU4&t=429s [Embed] +--- 93228945 +>>93228794 +the melting CPU thing is overblown just like the 12vhpwr connector. +it's 5 cases and the cause is known. +Intel is pushing power so high because AMD is pushing them out of markets +--- 93228963 +>>93228867 +the D15 is overpriced and is beaten by the $40 thermalright peerless assassin 120 +--- 93229001 +>>93228867 +Actually peerless assassin with modded fan beat the shit out of dh 15. It's just noisy that's. I use it with 3000 rpm fan and it definitely could cool the 139k or at least keep it below 96c +--- 93229009 +>>93229001 +You'd probably need 10k rpm fans for that lol +--- 93229020 +do i need to buy 600w 12vhpwr corsair cable for 4090? +got rm1000x already psu +--- 93229037 +>>93229009 +No just try it out t, it's dirt cheap anyway.35 bucks for peerless assassin 20 bucks for gentle typhoon fan and you are set. +You could even go with frost commander 140 the higher tier peerless assassin and slap an industrial noctua fan on it. +--- 93229039 +>>93228909 +Linus makes a good point that if you're building a top end pc, that price isn't is less than 5% of your build. He isn't wrong. +--- 93229059 +>>93229001 +you could buy two peerless assassins and four T30s for the price of one D15 +--- 93229096 +>>93228386 +Yes. 16gb of 3200 is $35 now. +--- 93229102 +>>93229039 +If you have 500 then you also have 750. +If you see a bigger total build number then you stop reasoning and accept bigger number for individual parts. +--- 93229130 +>>93229024 +Frost spirit 140 is only 50 bucks where I live, goddamn +--- 93229171 +>>93229059 +and you put the second one on your cock +--- 93229188 +You do replace your thermal paste every week to counter pump out effect, right /pbcg/? +--- 93229203 +>>93229188 +no I'm not insane +--- 93229287 +>>93228447 +>>93228565 +>>93228584 +>>93228648 +my 7800x3d hits tjmax of 89c in cinebench allcore workload with an nh-d15. ambient is 28c. is this normal? i’ve already repasted 3 times, once with ptm7950 to ensure no problems with application, to no effect. it’s driving me crazy why the nh-d15 can’t keep the 7800x3d cool, i’m almost convinced the cooler is faulty, maybe the risers are set too high or something so the coldplate has poor contact with the ihs +--- 93229314 +I ordered a 27" 1440p IPS gaming screen yesterday, I only have 1080. Will this be horrible? I don't play FPS's, more Total war and Forza and the like. +--- 93229315 +Should I expect any problems slotting in a 5800X3D CPU into an old B350/B450 board with updated BIOS? Are early AM5 boards likely to handle newer chips as well later down the line? +--- 93229337 +>>93229314 +It'll require way more graphical resources to generate way less fps. It'll look good tho. +--- 93229410 +>>93229314 +Should have bought a 50" 4k tv bro +--- 93229425 +>>93226691 +I have an amd cpu and an nvidia gpu. I like when photoshop and sony vegas don't crash (which happens on every amd card) +--- 93229433 +>>93229410 +Wat, that's even more pixels to move about +--- 93229473 +>>93229287 +Cinebench is an artificial load, most Zen4 CPUs get to 95C tjmax in cinebench. +I would only be worried if it's hitting 89C in gaming workloads +--- 93229476 +>>93229433 +Yes. More is better. Always was. An igpu can run four 4k displays. If your bing bing wahooos won't run at sufficient speed then it is the programs fault. +--- 93229499 +>>93229476 +based madman +--- 93229538 +>>93229287 +>>93229473 +This guy gets 86C with a shitty cooler in cinebench, but he has better ambient conditions. +https://www.youtube.com/watch?v=lgiBcD7bBaw [Embed] +--- 93229562 +>>93229538 +how do you buy a wraith prism? +--- 93229593 +Is there a PSU with 95%+ efficiency at idle/low loads? Gotta save every shekels. +--- 93229631 +>>93229287 +i'm getting 78.4 on my thick triple rad on cinebench. +I think your high ambient temps are contributing to your temps. + +I found intel burn test using maximum amount of ram to run hotter and Far Cry 5 for some reason runs at 84-85c on my system. +--- 93229654 +>>93229593 +only titanium is rated for 90% efficiency at 10% usage. +--- 93229703 +>>93229593 +a basic understanding of power electronics would tell you why this is hard to do. +--- 93229727 +>3080 ti +>32gb (3200mhz cl14) +>11400f +>850w psu +will a 13700kf + new cooler work well? +--- 93229769 +>>93228315 +You can get ddr5 hynix a-die for a little bit more than ddr4 samsung b-die +The only reason I would consider ddr4 would be if I wanted to learn memory overclocking because tuning b-die is very well understood and there are tons of guides on it +--- 93229927 +>>93229654 +I found a used Seasonic Prime Ultra Titanium 850W for $135 with an 8 year warranty remaining. shuold i buy it or are there any other recommendations? +--- 93230006 +>>93223984 (OP) +A mining company is selling a 3060ti that was used for 6 months for $150 CAD. Cleaned and stored in its original packaging. +I've never bought used cards before, but this looks like a good deal for 1080p gaming, right? I'm currently using a 5600g apu, so any card would be a significant upgrade +--- 93230047 +I want to buy a gpu that will last me 3-5 years, will the 4070 be enough with 12GB? Will be using 1440p +--- 93230072 +>>93230006 +Can you stress-test it before buying? It sounds like a good deal as long as they're not lying about the 6 months use, and as long as it's not on the brink of death +--- 93230084 +>>93230006 +buy it then resell it ~2.5x the price, lie about the mining thingy. buy a better card from teh same company. profit. +--- 93230195 +>>93228867 +>The best cooler isn't even a watercooler it's the nh-d15 +That's just flat out wrong. Why do you think this +--- 93230216 +>>93230047 +at least a 4070ti for 1440p. I have a 4080 and sometimes it doesnt feel powerful enough +--- 93230253 +>>93230084 +No, I'm not jewish. This'll be my first ever gpu I just wanna enjoy games on 1080p +>>93230072 +I can't test is before buying, but the buyer is offering free returns withing 14 days. In the description is says that the company is clearing their inventory of 72 cards, and the reviews are positive. + +This is in their notes +>GPUS HAVE NOT BEEN RESET, SO PURCHASERS MUST ADJUST SETTINGS FOR OTHER APPLICATIONS SUCH AS GAMING AND AI +Idk what that means +--- 93230396 +>>93230253 +>I just wanna enjoy games on 1080p +But an odin lite +--- 93230413 +>>93229473 +>>93229538 +>>93229631 +i only use the cpu to game so it doesn’t REALLY matter… but it’s just disappointing is all. i expected the gigantic piece of aluminium to perform better. maybe air cooling just isn’t a thing in this climate. i might try an aio a couple of years later if games ever become demanding enough to heat up the cpu like cinebench allcore workload can +--- 93230439 +>>93230413 +Ambient temperature affects water cooling also. Try undervolting. +--- 93230672 +Is powercolor a ok brand? they are about the only brand of 6950s here in Australia +--- 93230681 +>>93230413 +that's why buying the D15 is a meme, it's priced like an AIO and performs as well as a tower cooler can perform. but the peerless assassin exists now and is $40 +--- 93230693 +Is this garbage? +It's from my ASUS tuf gaymer laptop with a 5800. +--- 93230721 +>>93230672 +hell no, they're the worst amd manufacturer +--- 93230723 +>>93230413 +what’s your ambient temp? +thinking a air cooler might not cut it for me either (~30c) +--- 93230738 +>>93230721 +Ok thanks +Looks like it’s a 4070 then +--- 93230803 +>>93230413 +>perform better +what is this? what your target? +there is no cooler keeping cpu 100% load at 30 - 40°. + +>use cinebench result for gaming matter +kek +--- 93230804 +>>93230723 +28c + +i still think there might be something wrong with the cooler. i tried to touch the finstacks while cinebench had been running the cpu at 89c tjmax for 5mins and they were only very slightly warmer than my hands. i think something is impeding the transfer of heat, if i had to guess, maybe the spacers are too high or something and shifted the coldplate a little too high off the cpu +--- 93230816 +anybody wants to have fun picking and choosing some sensible stuff for me? haven't followed components prices since covid +>2000 eurobucks budget +>-300 for a grandia gd11 and a 240mm aio +>need cpu/mother/gfx/2 ram sticks/1 nvme/psu +>don't care about intel/amd/nvidia +>usage: hardcore shitposting +--- 93230828 +>>93230803 +my target is for the 7800x3d not to hit tjmax in cinebench. it’s clearly possible seeing there are many videos of people doing it + +i already said i know it doesn’t matter for gaming, i just expected better considering how large the nh-d15 is +--- 93230844 +>>93229020 +No, the 4090 should come with an adapter. You don’t even need to use all 4 inputs, it’ll work fine with 450w in as long as you’re not over clocking +--- 93230863 +27/28” or 32” at 4K for desktop use? diff --git a/g/93224058.txt b/g/93224058.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3d0ca27b8ea84c01c7b07acb6a04ce447a2e168 --- /dev/null +++ b/g/93224058.txt @@ -0,0 +1,79 @@ +----- +--- 93224058 +>software and hardware teams work together on it +>no need to search for alternative apps on it +>decent ui +>just works +why can't android do this? +where's the android that does this and more? +--- 93224118 +>>93224058 (OP) +sorta in need of a new phone. +been thinking about switching to an iphone. +convince me to switch. +i'm serious. +should i get the 1tb? +i'm not a phone poster, so i dont store everything on my phone. +some songs; less than 10gb. +currently not many apps, but thats because of space and out dated android. +again, seriously, convince me to turn to the dark side. +--- 93224280 +>>93224118 +iPhone r gud +ther u go +--- 93224430 +>>93224118 +why the fuck would you get 1tb then +--- 93224488 +You will own nothing and you will be happy. +--- 93225090 +>>93224488 +what phone would you recommend anon? +HMMMMMMMMMMMMMMMMMMMMMM +--- 93225102 +>>93224488 +that'd be $1000 sir +--- 93225821 +>>93224058 (OP) +Android is purposefully designed to be as shitty as possible +--- 93226005 +>>93225821 +remember that update where they took away tapping and replaced it with sliding? and you could only get it back with the assistant menu and it would be in the way the whole time and you'd have to force stop assistant menu and not let the phone shut down or restart, otherwise it would come back and block the view? +--- 93226665 +iphones are shit but android is even worse. at least apple seem to have an eye for design and UX. i have never used an android phone that i thought was fluid, comfy, or well laid out. +--- 93228271 +>>93225090 +Nta but get the nothing phone it's nice +--- 93228300 +>>93224058 (OP) +>why can't android do this? +Because android is an OS. +Retard +--- 93228309 +>>93224058 (OP) +I just ordered a S23 (green). You mad? I will never fall for the iPhone slow scrolling and proprietary garden again. And by never I mean when it stops sucking so hard which is never. +--- 93228549 +>>93224058 (OP) +Safari + AdGuard is peak mobile websurfing +--- 93229264 +>Xperia Mini, £150 +Lasted 8 months +>Moto G, £99 +Lasted 13 months +>Nexus 6, £499 +Lasted 1.5 years +>Nexus 5X, £379 +Lasted 4 months (water damage) +>Nexus 6P, £499 +Lasted 1 year +>Pixel 3, £739 +Lasted 1 year +>iPhone 11 Pro, £1049 +Lasted 3.5 years (so far) + +It's simple +--- 93229423 +>>93224058 (OP) +>can't install Termux + +couldn't give less of a stinky shit diff --git a/g/93224078.txt b/g/93224078.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0f6db34ed4658a9a46e4b9c8baa24a24834fb70 --- /dev/null +++ b/g/93224078.txt @@ -0,0 +1,405 @@ +----- +--- 93224078 +>Interview Prep +https://leetcode.com/study-plan/leetcode-75 +https://blog.interviewing.io/ + +>Resume Stuff +https://www.careercup.com/resume +https://cultivatedculture.com/resume-statistics/ + +>Salary Stuff +"What's your expected salary, anon?": https://www.fearlesssalarynegotiation.com/salary-expectations-interview-question/ +Negotiation advice: https://www.freecodecamp.org/news/how-not-to-bomb-your-offer-negotiation-c46bb9bc7dea/ +More negotiation advice: https://www.kalzumeus.com/2012/01/23/salary-negotiation/ +Salary data: https://levels.fyi/ + +>Responding to Recruiter Spam +Advice on how to not get your time wasted: https://pastebin.com/WX4b62Jx + +>Layoffs +https://layoffs.fyi/ + +>Helpful YouTube Channels +they're all grifters but here are some +https://www.youtube.com/@ContinuousDelivery +https://www.youtube.com/@EngineeringwithUtsav +https://www.youtube.com/@ByteByteGo (systems design at a high level) +https://www.youtube.com/@gkcs (systems design in more detail) +https://www.youtube.com/@ycombinator (if you're doing a startup) + +>"I'm a self-taught dev/went to a bootcamp and have no degree, how do I get a tech job?" +You're fucked. + +>/twg/ IRC Channel +#/g/twg on irc.rizon.net, it's comfy +Web client: https://kiwiirc.com/nextclient/irc.rizon.net/#/g/twg + +>Previous Thread: +>>93207300 → +--- 93224125 +i can't tell if i'm projecting or if most of my coworkers feel equally as shit about working here but just are better at hiding it +--- 93224167 +if you are a code monkey you deserve to be replaced +>BUT MUH HECKIN LE EPIC JOB THAT I CAN BE AUTISTIC AND NOT TALK TO ANYONE!!!!!!!!!! +grow up +--- 93224168 +>>93224078 (OP) +Move to the Netherlands. +--- 93224258 +>>93224167 +>deserve +meme word that means nothing. all that matters is are you on the winning side or losing side +--- 93224331 +>>93224078 (OP) +fuck off frog tard +--- 93224388 +so you're telling me people "apply" to jobs? seems like a waste of time when recruiters are blowing up my linkedin 24/7 +--- 93224994 +>>93224258 +based realist +--- 93225098 +>>93224388 +I got my job via recruiter. They are not a bad idea. +--- 93225223 +I have a technical interview on Tuesday and the third party recruiter just text dumped me a bunch of prior notes on past candidates (by this specific interviewer) and then send me a last text saying "CONFIDENTAL!" + +Holy fuck that's based. +--- 93225264 +>>93224388 +How do i get relevant recruiters +The only recruiters that contact me are all sketchy insurance companies that want me to cold-call old people and trick them into buying overpriced insurance on commission +--- 93225303 +>>93224388 +inb4 you are a third worlder making minimum wage +--- 93225313 +>>93224388 +weak bait +--- 93225696 +Damn bros network+ looks hard compared to A+ don't think I can wing it with just watching prof messer videos at x2 speed like core 1 and core 2. +--- 93225730 +>>93225696 +Nope, and remember the more you guess and more ignorance you show in an interview the more likely you will work for 24k +--- 93225749 +>Promoted to lead +>Expected to write architectural documents +>Expected to sit in meetings where nothing happens aside from being asked a question once every hour and a half +I wanted to write SQL. I was happy, even with how shitty it could be sometimes. +--- 93225790 +>>93225749 +did you at least get a 50% raise +--- 93225887 +>>93225730 +I mostly knew my stuff in core 2, core 1 fucked me with the printer shit and the cabling stuff, otherwise it was easy as fuck. +--- 93225969 +>>93225887 +>help desk jannies have to memorize printer and cabling trivia +grim +--- 93226046 +>>93225790 +Ten percent. So like three percent after inflation. +>Literally didn't even ask for a promotion or title change or raise of any sort +>Was previous boss's farewell gift as he was preparing to bail because he was not the right guy for the job and the team was understaffed anyway +--- 93226076 +Flutter or React Native for mobile app? Currently on the pre planning phase, not sure which one to pick. +--- 93226092 +>>93226046 +stay there for a while to properly get the title on your cv and then jump + +>>93226076 +react native is quite shit +--- 93226179 +>>93226092 +>react native is quite shit +How so? +--- 93226276 +>>93226179 +we're using it on a project at work and had trouble finding some non-deprecated libraries for some functionality we needed, and from what I've seen the code is a mess +--- 93226277 +gofriends +--- 93226484 +am i entitled to a high paying job yet? +--- 93226527 +My manager had a stroke and can't work anymore and so my boss had to let me go, I'm only a junior dev 8 months in. What can I do? +--- 93226542 +>>93224167 +i'm not even a code monkey but this won't happen lol + +>>93224258 +based and sober +--- 93226560 +>>93226527 +only phans +--- 93226601 +>>93226527 +stretch those 8 months to 1.5 years +--- 93226649 +>>93226277 +There are no jobs for go. +--- 93226652 +>>93224078 (OP) +I have been lurking for some time, +is 100k+ a thing just in the USA or is it also doable in EU? +Dont really care about money in absolute terms but if I can move 100km and make 5x then I have some things to re-evaluate. +--- 93226686 +>>93226649 +haha go? more like "go get a job" lmao! + +okay guys, remember to like the video, comment on the video and subscribe to my channel for my epic jokes like that one. shoutout to my patreons, you guys are great and you're helping us keep doing what we're doing and we're doing what we love. shoutout to our sponsor NordVPN, you guys wanna browse the internet securely then NordVPN is your boy. okay guys, cya next time. peace. +--- 93226739 +>>93226652 +>is it also doable in EU? +Principal and staff roles at the big companies in the wealthy countries (germany, Switzerland, paris, London) +Other than that, no. +--- 93226755 +>>93226527 +>My manager had a stroke and can't work anymore and so my boss had to let me go +Wtf does that mean? +--- 93226758 +>>93226686 +This but unironically. +--- 93226765 +>>93226755 +>Wtf does that mean? +Say you're a winner but babe you're just a sinner now +--- 93226775 +Are you in debt? +--- 93226831 +People were writing operating systems in a week back in the day and I’ve failed to something relatively basic in webshit stack for fucking 2 weeks now. I feel like a fucking failure. +--- 93226932 +>>93226831 +you should quit your job and give it to someone smarter no cap +--- 93226951 +>>93226932 +In his defence, tech stacks these days can be so convoluted that taking 2 weeks to do something "simple" is a story all too common. +--- 93226966 +>>93226652 +100k isnt even that much in america for tech. sounds like a meme but its so true. +--- 93226974 +>>93226932 +You should kill yourself you fucking loser. +--- 93226985 +>>93226951 +it's not the tech stack that's convoluted +you're just incompetent and 10x devs are necessary to get anything done in time +--- 93227001 +>>93225696 +if you're american and making less than $40k annually, why don't you just fucking go to school and get a 4 year degree that has 75% of doubling your annual salary? sure the degree may cost you about 40 - 50k in loans, but you can easily pay that off in a few years. +--- 93227056 +>>93226985 +Sure man. +--- 93227118 +>>93226277 +How do I get a go job? +--- 93227404 +>>93226277 +Every company that I’ve been at that has picked up golang has continued to use it on other projects. Devs are absurdly productive because it’s happy with GC bloat and it makes the managers happy because it’s so fucking verbose for big code metrics. After seeing this convienient piece of shit propagate through my company I’ve learnt it doesn’t matter how many features or tricks your compiler even has and caring that it is giga-autistic. It literally didn’t even stabilise generics until a year ago or so. It just allows devs to not fucking think at all and push out kind of ok work. Perfect for most companies. It’s like scratch for adults. +--- 93227569 +>>93227404 +i use java because its easy and i can use chatgpt to write code snippets +simple as +--- 93227628 +>>93226277 +How do I get a go job when I have never touched microservices? +--- 93227734 +>>93227404 +Golang is my favorite programming language :D +--- 93227742 +>>93224078 (OP) +>Mentioned I'm taking night school 2 nights a week in a screening interview, but that it wouldn't affect my work hours at all +>Recruiter says she'll have to ask hiring manager if that's alright +>They call me back an hour later and say they only want candidates that can give their full attention + +I'm fucking retarded and should've just lied and said I graduated already +--- 93227767 +>>93227742 +yes +--- 93227814 +>>93227742 +>telling the truth ever +lol +--- 93227833 +>>93227814 +Lol...but for other reaspns :) +--- 93227853 +I>>93226755 +I'm laid off, can i get a lawyer and sue? +--- 93227943 +>at least half my time is spent fixing shit the junior devs fuck up +what are you supposed to be about these niggas +--- 93227989 +>>93226649 +there's at least one + +source: me + +>>93227118 +>>93227628 +just apply :^) +--- 93228000 +>>93227943 +>what are you supposed to be about these niggas +cheap developers that you can upskill into more competent developers who will remain at your company for far longer than a more experienced developer who has numerous employment opportunities. + +unfortunately that's not always the case be it that they're either not suitable for the company or management cbf giving them a mid-level payrise once they hit it +--- 93228044 +>>93228000 +i dont know how to train them, i leave like 50 PR comments pointing out all the bugs or badly written code whenever they get assigned to me and they never learn, eventually bugs slip through when it goes to someone who doesnt pay close attention to the garbage they write +--- 93228070 +>>93227943 +I purposely dont teach juinors/interns so I don't get laid off. that's how the game is played. +--- 93228081 +>manager told me sees me more as a technical lead and not management material +--- 93228098 +>>93228081 +Is that bad? +--- 93228107 +>>93226831 +lol you should have seen what qualified as an "operating system" back then. unix back then was 10k LOC of C and asm, same story with C compilers and stuff, they basically just did per-statement lowering of expression trees into asm templates. +--- 93228111 +>>93228081 +who cares? you're leaving in a year +--- 93228114 +Pretty sure I just got scammed. +--- 93228120 +Apparently you can't find a remote job with only 1 YOE, time to search for standard on-site option +--- 93228126 +>>93227989 +how? there aren't any entry go jobs... +--- 93228136 +>>93228098 +i was under the impression the big bucks comes from being in management +>>93228111 +this is true. +--- 93228466 +>do take home project for small company because I'm unemployed, have the time, and the assignment is far from their line of business so w/e +>only HR person is on vacation so interview process gets delayed so I just assumed I was ghosted +>hear back earlier this week, then had interview today to go over it that went fairly well +>told that they're just starting this round of interviews and I won't hear back until late next week +This is the only remote job that called me back so I'm really anxious and probably will be for the next week. +--- 93228668 +>>93225223 +He **really** wants that commission. + +>>93228070 +The Dev Lead in our company throws fits of rage for every minor thing and intimidates his juniors. +The funny part is that every so often he is completely incorrect on a technical level and this enrages him even more. I guess it's hard to be a lead when you're incompetent. +--- 93228833 +>>93227853 +Depends where you are. +That's not a legitimate justification. +--- 93228929 +>>93228833 +I'm in california and at will employment.. me being let go doesn't seem very reasonable since it wasn't my fault? +--- 93228940 +>>93228929 +muttland has no worker protection rights buddy. you have no case. +--- 93229067 +>>93228940 +>McDonalds +Why would a dog food factory employ minors?! +--- 93229094 +>>93228929 +What do you think "at will employment" means? It is the exact opposite of what you're implying here lmao. +--- 93229136 +I get literally no messages on Teams except for one indian foid who pings me every hour to ask the stupidest questions holy FUCK +--- 93229146 +>the land of the "free" +>"NOOOO you cant fire me!!! I am ENTITLED to a job!!! I-I'm gonna SUE!!" +Kek do mutts really? +--- 93229162 +>be kinda retarded +>still employed because i communicate on time +so this is it huh +--- 93229185 +>>93228929 +>at will employment +lmao at amerilards and their jew systems +basically you're a dumb goy +--- 93229197 +>>93229185 +Freedom ain't free. +--- 93229205 +so I am at a job and its a 6 month probation but I fucking hate it should I just coast and then quit on the last day of probation so I dont have to do the notice period +--- 93229207 +>>93224168 +What is this horrible meme about? The Netherlands is a truly disgusting place with one of the most retarded language and the modt annoying people in the entire fucking world. +Is it a troll? +--- 93229224 +>>93229207 +They have walkable AND bikeable cities THOUGHEVER +--- 93229231 +>>93229207 +Some dude who can't figure out how to get a remote job and border hop on a tourist visa. +--- 93229234 +>>93224167 +i am a software nigger and i agree. if you can be automated, you're not special. thankfully what i do at work can't be automated at all because infra needs and retarded business requirements are pretty much impossible to automate +--- 93229268 +>work at the office, be productive because you feel like you are being looked at +>wfh, immediately start doing other things +it's going to be another extremely unproductive day today +--- 93229273 +>>93229224 +You can get that almost literally anywhere in Europe without having to endure the cultureless autistic shithole that is the Netherlands. Even a grim dump like fucking Germany would be way better. +--- 93229336 +>>93229146 +enjoy your measly 80k salary, euronigger +--- 93229369 +>>93229336 +Bro, 80k is end-of-career levels of salary in europe, unless you get into a top position that requires a PhD. +--- 93229384 +>>93229369 +>80k is end-of-career levels of salary in europe +jesus that's depressing +--- 93229391 +>>93229384 +europe hasn't produced any cultural or technological innovation since the nazis +--- 93229463 +>>93229384 +And that's why I don't care about my salary or career. Why bother when you can't earn real money anyway? +--- 93229625 +>>93224125 +Most are probably NPCs who actually get satisfaction out of company ice cream party and staying until 6 to wrap up that project roadmap, 3 times a week. +--- 93229647 +>>93229463 +Do what everyone else does and come to America. Europeans seem to be good at it like they actually fit in and become successful. +--- 93229669 +>>93229384 +Rent isn't $2K+ in sub-80K Europe though. If you're gonna cite a 100K+ salary as something you can find outside of the big US cities with high COL, Europe has lots of things to do unlike the Midwest. You get less living space but you also get more public facilities. +Money isn't the only reason to pick a location, and life is all about compromises. +--- 93229695 +>>93229669 +> Rent isn't $2K+ in sub-80K Europe +actually it is +--- 93229743 +>measly 80k salary +hah..hahaha...HAHAHA +--- 93229757 +>>93229669 +>Rent isn't $2K+ in sub-80K Europe though +It is. +Taxes are also 50% +--- 93229838 +new update from the physics master's dude: I got the c++ dev job in the boomer corp and I'll start next month. My life is literally saved now. Thanks for reading my blog. +--- 93230043 +>>93229695 +Proofs? + +>>93229757 +Just like in 100K+ California and NY. Don't forget car insurance and $5 for a bag of apples. +--- 93230052 +>>93229838 +you will get fired or start seething at your job conditions two months in +--- 93230122 +>>93230052 +Thanks for the kind words +--- 93230123 +>>93230043 +Is $5 unreasonable for apples? I live like a mile from an orchard and I think that's the price they charge for ones in the shop. I don't know what it costs to pick your own since I never do that cause I have my own apple trees anyway. +--- 93230666 +Is there any place on the internet like /twg/ except for managers to blow off steam and talk shit about programmers? +--- 93230702 +>>93230043 +just look it up a 2br is that price + +also tax is 50% at lower levels than 100k, but marginal diff --git a/g/93224371.txt b/g/93224371.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1c3b80abf93343b5c82bfde440607aa6a587813 --- /dev/null +++ b/g/93224371.txt @@ -0,0 +1,84 @@ +----- +--- 93224371 +Jewgle finally broke it. What are some good Vanced alternatives? +--- 93224403 +>>93224371 (OP) +Newpipe +--- 93224476 +>>93224403 +Used it for a little bit. It's pretty good but doesn't have google account login +--- 93224582 +LibreTube + +Way better than newpipe +--- 93224616 +revanced and >>93224582 +--- 93225637 +>>93224616 +Looks promising but I'm working on installing it and its kinda a bitch + +I miss how easy Vanced was to install and update with the whole manager app :( +--- 93225784 +>>93224371 (OP) +i ended up moving onto revanced once og vanced broke, works alright for me +--- 93225806 +>>93224476 +thats why its good +--- 93225809 +ReVanced +Newpipe or LibreTube if you want an inferior experience +--- 93225914 +>>93225637 +Revanced literally has a manager for idiots like you. +--- 93225977 +>>93225914 +It doesn't work with the most recent version of the YouTube app +--- 93226039 +>>93224371 (OP) +works on my tablet +what exactly is broken? +--- 93226343 +>>93225977 +Works on my machine +--- 93226358 +>>93225977 +if you're getting the "blabla admin denied" message when you try to install, it's because the app is trying to install with the same internal app name already taken by the official youtube app. Select the patch option to change the app name or delete the youtube app that's already on your phone. +--- 93226872 +>>93225977 +sound like youproblem, work on my device +--- 93226915 +>>93225977 +there's apkmirror +--- 93227776 +>>93224403 +-can't like, comment, subscribe +-doesn't show live streams + +meh... +--- 93228106 +>>93225977 +You don't need latest YouTube version. +Go to r/revancedapp, there is tutorial. +--- 93228201 +>>93224371 (OP) +use ReVanced u dumfuc +--- 93228274 +>>93224371 (OP) +ReVanced. If you have problems with buffering (microG shadowban), just use it as a frontend and use the share feature to send the videos you wanna play directly into NewPipe. +--- 93229153 +>Prerequisites: Zulu OpenJDK 17 +Can I use the regular ass OpenJDK 19.0.2 that comes with my distro or is this Zulu thing really important? +--- 93229179 +>>93224371 (OP) +Firefox + UBO +--- 93229258 +>>93225977 +I updated to the latest version of it via Revanced last night. I enjoy how such a simple program continues to filter the brainlets of /gee/. +--- 93229451 +>>93229153 +I'm gonna reply to myself: the regular ass openjdk that is shipped on linux is fine. + +I do I stay updated now that I installed it via vanced-cli? Am I supposed to manually check on the github page and repatch it everytime? Is revanced manager any better? +--- 93229524 +>>93224371 (OP) +Firefox + ublock origin diff --git a/g/93224378.txt b/g/93224378.txt new file mode 100644 index 0000000000000000000000000000000000000000..c36f6c89cf0e2a2c27f9a20937e46ef9c162cb4b --- /dev/null +++ b/g/93224378.txt @@ -0,0 +1,98 @@ +----- +--- 93224378 +How did Jetbrains fuck up this badly? This is a worst product than their IDEs by a long shot. +--- 93224434 +>>93224378 (OP) +great, now i can fight over the code in real time +--- 93224575 +where's fleet opensource code? +--- 93224626 +WetFarts Feet +--- 93224642 +Why would anyone use Jetbrains paypig IDEs when there is free options? +--- 93224645 +>>93224378 (OP) +>named after an enema +Out the same hole. +--- 93224681 +>programmers need quite and solitude to do work +>I know, let's make an IDE where they will NEVER be left alone +why +--- 93224683 +There’s no reason when VSCode exists. MS nuked another competitor. Normally that would bug me, but killing another Java app is based +--- 93224703 +>>93224683 +If MS nukes some paid option with free option, I don't care less. +--- 93224753 +>>93224434 +i want this for emacs +--- 93224929 +>>93224683 +This, but Xcode. Apple simply has the best development tools. +--- 93225316 +>>93224378 (OP) +more like cumbrains +--- 93226341 +>>93224929 +nigga u lost and confused. get it together +--- 93226356 +>>93225316 +pretty face +--- 93226432 +Turns out the fancy proprietary language tooling is the actual reason people use Jetbrains' products. Nobody cares about the other aspects. +--- 93227550 +>>93224683 +>replacing Java with Electron is a good thing +--- 93227575 +Just when you thought it couldn't get any more bloated +--- 93228591 +>>93224683 +vscode is a bit bare bones +getting comfy with it requires doing all manner of config and shit, whereas shitbrains is more out the box experience +--- 93228689 +>>93224434 +this but unironically +The #1 feature I want is to be able to forcibly take over people's IDEs in the middle of a meeting instead of +>Click the "play" button on the debugger +>where? +>It's on the bottom left +>More left +>Now you went too far +--- 93228704 +>>93224929 +Would people really do this? +Just go on the internet, and tell lies? +--- 93228738 +>>93224642 +Because not everyone is poor and you got me fucked up if you think I'm using vscode for js +--- 93228748 +>>93224378 (OP) +CAN I JUST MENTION THE FACT THAT IT IS NOT POSSIBLE TO COLLAPSE BRACKETS IN THIS DOGSHIT IDE +--- 93228846 +>>93224378 (OP) +It's fucking terrible and somehow requires even more resources than Intellij with the smart mode on. Well done Shitforbrains. +--- 93229527 +>>93228738 +Non-js coder here +What would you use when writing JS? +--- 93229925 +>>93229527 +intellij +--- 93230127 +Jetbrains about to replace the interface in all their programs with one pretty similar to this anyway. Don't they realise if people wanted to use vsc they just would? +--- 93230146 +>>93229925 +Why would you use IntelliJ for Javascript? +--- 93230166 +>>93224642 +Because people have jobs and companies pay for it. You'll get it someday. +--- 93230360 +>>93230146 +Why wouldn't I? It's more comfy than vscode, just works, and isn't a slow bloated piece of shit, although still not perfect +--- 93230405 +>>93224642 +because Visual Studio is painfully slow +--- 93230435 +>>93224434 +i remember an editor that did this 20 years ago +MoonEdit i think diff --git a/g/93224492.txt b/g/93224492.txt new file mode 100644 index 0000000000000000000000000000000000000000..1532a312bf318357f6ac5c2002d4b14d6dec7c10 --- /dev/null +++ b/g/93224492.txt @@ -0,0 +1,93 @@ +----- +--- 93224492 +https://desuarchive.org/g/thread/92994155/#q93024378 +C binary size: 26K (gcc -O3 -static on voidlinux-musl) +Hare binary size: 128K +Both stripped. +--- 93225017 +>>93224492 (OP) +Fighting against C is a sign of low intelligence. It's here to stay. +--- 93225037 +>>93224492 (OP) +>Hare +What was the name of this faggot again? Derka DeShawn or something like that? Balding? Needs rogaine? Posts about himself on here all the time? +--- 93225087 +>>93225037 +Im starting to really despise this Drew guy +--- 93225173 +>>93224492 (OP) +https anonfiles com/N5553fndzd/Test_zip +--- 93225235 +>>93225173 +looks like you're sharing cp +--- 93226510 +>>93224492 (OP) +A glibc comparison is more interesting. +Why using a libc that a very small group of people use? +--- 93226835 +>>93226510 +Because Hare is statically linked + +Even with -static, it is not possible to eliminate filesystem dependencies with glibc. + +Ulrich Drepper (former author or glibc) was heavily against static linking ("Static Linking Considered Harmful") and baked that into glibc. You have to fight glibc just to get it to be "statically linked***" +(*** with filesystem dependencies) + +So to compare apples to apples, statically linked to statically linked, it's best to use a libc designed for static linking, aka musl +--- 93227804 +>>93224492 (OP) +>Hare binary size: 128K +False. It is 419B +--- 93228057 +>>93226835 +shut up drew +--- 93228384 +>>93227804 +that seems unlikely, i get 8.5k only for the runtime and stuff +--- 93228745 +>>93228384 +theme? +--- 93228756 +>>93225235 +>anything I disagree with is X +--- 93228804 +>>93228745 +custom + +foreground=aa5500 +background=000000 +regular0=400000 +regular1=e04000 +regular2=808000 +regular3=aa8000 +regular4=808080 +regular5=aa4020 +regular6=808055 +regular7=aa5500 +bright0=804033 +bright1=ff6633 +bright2=999933 +bright3=cc9933 +bright4=999999 +bright5=cc5533 +bright6=999966 +bright7=cc6620 + +font is tamzen +--- 93228901 +>>93228804 +using it with this is the pape, just a color-adjusted photo of some cliffs to break up the background +--- 93228938 +>>93228384 +>>93228745 +samefag +no one would ask for a theme that looks like a sewer, OP probably smells like one too +--- 93229033 +>>93228938 +>NOOOO NOBODY WOULD HAVE TASTE LIKE THIS!!!1 +okay nigger +--- 93229143 +>>93228804 +i like it +>>93228938 +stfu fag. drew is a nigger for spamming but this theme still rocks so ill give him credit diff --git a/g/93224532.txt b/g/93224532.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae1645de1a0faa5a341d4116f91146aa768710ad --- /dev/null +++ b/g/93224532.txt @@ -0,0 +1,99 @@ +----- +--- 93224532 +3D printers are technology. Discuss 3D printers. What are you printing? What mods have you done? Etc. + +I'm getting my first printer (second hand) in a week. +--- 93224668 +>>93224532 (OP) +70's bush is back in style B) +--- 93224737 +>>93224532 (OP) +>What mods have you done? +silicone bed mounts +CR touch +new filament holder soon +--- 93224744 +>>93224532 (OP) +Mine sits on a shelf gathering dust. +I printed an ocarina and spend my time learning that instead of printing. +--- 93224778 +>>93224737 +can you give more info on those? I'm new to the 3D print land. CR Touch is an auto bed leveling thing? How does that work? I'm curious. Also what are the bed mounts for? +--- 93224987 +>>93224778 +solid bed mounts instead of springs +extra stability + +cr touch is creality's auto bed leveler, yeah +it basically pokes the bed in different places, then auto-compensates for a not perfectly level bed +helps you get perfect first layers, and manually leveling a printer bed gets annoying +--- 93225045 +>he has figurine troll army battle scenes in his grge +--- 93225265 +can a 3d printer print a 3d printer +--- 93225351 +>>93225265 +Actually, yes! Look up RepRap. They made printers that self-replicate. +--- 93225377 +>>93224532 (OP) +Whats a good printer that doesnt cost me an arm and a leg? +--- 93225586 +>>93225377 +Creality ender 3 +All the stuff from flashforge/voxelab +--- 93225607 +>>93225265 +Hell, Prusa Research, the Voron guys, and various other printers use 3d printed parts in their construction. +--- 93225665 +i hadn't used my printer in a while so right now I am about to be printing three different vacuum forming molds to see if I can use the three molds to make three pieces of a helmet and then put the pieces together easily. if it works out I could potentially make helmets really, really fast and commit further copyright infringements by selling them + +but my octopi is shitting the bed so I don't know if I will be able to start this thing +--- 93225765 +>>93225665 +well you could just reformat your octoprint install. +--- 93225824 +Download the prints to make a swole pikachu. +--- 93225874 +>>93225824 +7494-ultra-swole-pikachu +--- 93225884 +>>93225765 +The lights on the board were blinking in a random fashion but it seems to be working now +--- 93225931 +>>93225884 +on the pi? +--- 93225954 +>>93225931 +Yes +it is probably normal behavior and I just never noticed it before +--- 93225978 +>>93225884 +What does octoprint do over just sticking a flash drive into it and going +--- 93226007 +>>93225978 +I don't have to get off my fat ass to start a print when using Octoprint +--- 93226271 +>>93226007 +A print takes a billion hours, and you gotta get to it to take it out anyways. Surely this is a non issue. +--- 93226305 +I just got ankermake m5, used to have one of the ender 3s. Machine is good and does the job fine. +I wanted no hassle shit and I think I got it. + +Anyone has guide on how to design enclosure? +--- 93226369 +>>93226271 +octoprint has plugins, too. though, i dunno if thats something you want +--- 93226381 +>>93224532 (OP) +Are these still good for making guns or do you need better tools? +--- 93226412 +>>93226271 +the real reason is the touchscreen firmware and SD card reader on my obscure, 2016 printer is a little fucky and I don't want to try updating it. for me, octoprint just werks. I can start and stop prints, i can monitor the temperature, I can watch the webcam to see if prints are failing, i could do timelapses if i felt like it, and i can keep a local collection of gcode on the octopi +--- 93226569 +Not that you can't have a thread on /g/, but there is a persistent and fairly active 3D Printing General on /diy/ if you are interested. + +>>>/diy/2606718 +--- 93228156 +>>93224532 (OP) + +I'm printing parts for a Voron. My current printer is a RepRap from 2014 and i would like something fresher. diff --git a/g/93224981.txt b/g/93224981.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7741274fbbc549301e9c58032c2a624f8c6fed4 --- /dev/null +++ b/g/93224981.txt @@ -0,0 +1,32 @@ +----- +--- 93224981 +Kneel. +--- 93224990 +>>93224981 (OP) +what is this cumbrain membrane? +--- 93225317 +>>93224981 (OP) +Fuck off. +--- 93227250 +>>93224981 (OP) +>kneels to the new even more chink version of k120 that's absolute trash +ngmi +--- 93227663 +faggots +--- 93229221 +>>93224981 (OP) +Man what a piece of shit +--- 93229255 +>>93227663 +Based. Literally what I'm using right now. +--- 93229303 +>>93227663 +>2 and 3 keys swapped +AAAAAA +--- 93229328 +>>93224981 (OP) +MY KNEES... IT'S LIKE THEY'RE ATTRACTED TO THE FLOOR... OOOOOOH I'M GONNA... I'M GONNA KNEEL +OOOOOOOOOOOOOOOH I'M KNEEEEEEEEEEEEELING UUHHHHOOOOOOOOOOOOOOOOOO +--- 93229419 +>>93224981 (OP) +this is normie tier keyboard, almost non-redditor non-/g/ 's battle station have this keyboard (include wireless K270) diff --git a/g/93225036.txt b/g/93225036.txt new file mode 100644 index 0000000000000000000000000000000000000000..4c11f9b38aaaa81aac804cb4fe4d5fb828cff837 --- /dev/null +++ b/g/93225036.txt @@ -0,0 +1,82 @@ +----- +--- 93225036 +it's like a second brain +--- 93225171 +>>93225036 (OP) +I like TiddlyWiki +--- 93225203 +I've used it with the git vault extension and it rocks. +--- 93225211 +>>93225036 (OP) +my mass amounts of fat is a second brain +--- 93225512 +For me, it's Kate. + +The only good saving factor for Obsidian is Canvas (and the ability to make it a pdf/jpeg). Which came out after you retards made Obsidian mainstream. +--- 93226190 +>>93225036 (OP) +Isn't it just a note taking program? +What does it do exactly that makes it a "second brain"? +And you even have to pay to get sync? OneNote syncs for free +--- 93226261 +>>93226190 +the graph function. it's like neurons in a brain. a second brain. + +you'll maximize your productivity with it. +--- 93226329 +>>93225036 (OP) +I rely on Notepad and MSPaint to get shit done daily. My Dad is a productivity freak who rants to me constantly about "OMG YOU CAN SYNC YOUR EVERNOTE INTO TODOIST AND PUT THAT INTO NOTION WHICH CONVERTS THEM TO CLICKUP" and has a whole system. When he discovered Obsidian I think he had a small orgasm. + +Not the type of software for me, but it looks really good for people who would use it to it's full potential. +--- 93226600 +>>93226261 +It only works if you follow along the backlinking and hashtag game. In other words, its not a second brain. You have to evolve differently and play along with some arbitrary parameters, jailing you to a rigid syntax; this is what makes programmers dunning-krugers; they become excellent, proficient even at surfing and creating syntaxes; but the moment you come back to the real world and you lose your "vault" or you have no access to your "vault" (a conversation where you need to bring up facts instantly) YOU BECOME LOST AND BRAIN-DEAD BY FORWARDING EVERYTHING IMPORTANT EVER TO SOME CHART YOUR BRAIN AUTOMATICALLY DEFERS, BECAUSE YOUR BRAIN IS FOCUSED ON INTEGRATING INTO THE BOTNET (CLOUD STORAGE/HOME INTERNET SERVER SYNC) + +In plain terms for niggers; Obsidian is proprietary and DOA. +--- 93226625 +>>93226261 +Fuck off with this shit the neuron view is pretty but keeping up with back links and hashtags is a hassle +--- 93228265 +>>93225036 (OP) +Anyone remember those fidget spinners? It's like that, except it's for people with note-taking autism. +--- 93228326 +>>93225036 (OP) +Where? I need it. Have no brain. +--- 93228342 +>>93225036 (OP) +I don't care much for the graph, but being able to write down notes, add the ocassional link, and make flowcharts in the same place is nice. +--- 93228371 +>>93225036 (OP) +its like a second chrome browser +--- 93229028 +>>93226600 +>YOUR BRAIN AUTOMATICALLY DEFERS +i was trying to put into words how having many different text files scattered all over place makes me feel more organized but this captures it. I write inside whatever text editor is open as if I can never access it again so I make sure I get the insight down then and there. Of course I label my text files very well and can always find them again but i never really do. It's the act of deliberate capture for immediate zoning in and out that makes you better. I don't want to be distracted by things i've already dismissed. +--- 93229247 +>>93225036 (OP) +Joplin can do much more and is free and full of Extensions. +--- 93229634 +its good, proprietary though so it needs to be sandboxed. Have been using it for a year now +--- 93229670 +Based on this post I think it was actually your first brain +--- 93229782 +>>93229634 +What do you use to sandbox it? +--- 93229916 +IT is a bit suspicious that all these threads start with the sme logo, and fail to bring up the FAQ we have had for a while now: +https://wiki.installgentoo.com/wiki/KnowledgeManagementSystems +--- 93229983 +>>93225036 (OP) +Zettelkasten style notes are really only a meme if you aren't into note taking, or already have an efficient way of indexing your notes. + +The guy infamous for it (Niklas Luhmann) arguably has the motivation/autism to really make it work since he was a big reader and took deep notes. It's no silver bullet, but if you make it work for yourself, then more power to you. +--- 93230232 +the system that worked for me +>take freeform notes in any basic note app +>at specified times, like twice per week take the notes and put them in either my calendar or notion +>Notion is a type of personal wiki that can track longer projects or personal stuff +>stuff that can be done right away can be put into the calendar +thats it. i found that anything more complex just takes time away +--- 93230438 +>>93225036 (OP) +how should i use it diff --git a/g/93225336.txt b/g/93225336.txt new file mode 100644 index 0000000000000000000000000000000000000000..53eda69b9e9674e6e92474078a659746a0e8dc86 --- /dev/null +++ b/g/93225336.txt @@ -0,0 +1,108 @@ +----- +--- 93225336 +>poorfag wanting to get into IT +>need certs to get IT job +>lack money to take tests +AAAAAAAAA +WHY THE FUCK CAN'T I EVER WIN!!! +--- 93225413 +>>93225336 (OP) +credit card debt +--- 93225437 +>>93225413 +this + +or just uhh... get a minimum cuck job and save funds for it? it's not very difficult my man +--- 93225448 +>>93225336 (OP) +Time to wagecuck at a fast food restaurant +--- 93225449 +>>93225437 +I have a shit wagecuck job +It barely pays enough for rent +--- 93225455 +>>93225449 +move out to a lower income area, you cant afford the bronx and laquisha. +--- 93225468 +>>93225455 +I lived in a lower income area and all that happened is a roommate stabbing and me getting robbed +--- 93225582 +>>93225455 +nta but i live in one of the cheapest areas in the united states and make a couple bux more than minimum wage and all the landlords now require proof of income that's 3x higher than rent +it's fucked i just wanna go live innawoods +--- 93225600 +>>93225336 (OP) +don't listen to that retard just work at fucking mcDonald's for 2 days and you'll have enough for your cert +--- 93225604 +>>93225468 +>>93225582 +maybe temporary time for two jerbs and a side hustle just like how gordon ramsey would it +--- 93225729 +>>93225336 (OP) +you need a degree too kek +--- 93225962 +>>93225729 +>need useless, expensive, and tome consuming piece of paper +>need certs far beyond the scope of the job +>need to hovel at HRs feet and beg for a job +>just to do level 1 help desk +--- 93225974 +>>93225336 (OP) +you can get a computer repair job without a cert, use that to pay for the cert then get into IT +--- 93225981 +>>93225336 (OP) +My friend's employer paid for his certs, even paid to fly him across the country for in-person training. He had no experience in the field at all before this. He's black though so I think they diversity hired him. I always thought diverity hires were mostly a joke until this happened. Only job he'd had before this was at walmart lel. Honestly I was kind of jealous at the time. +--- 93226009 +>>93225974 +Uh huh +Sure I can +>>93225981 +I look Hispanic and idiots here probably think my name is Spanish so I could probably use that to my advantage lmao +--- 93226024 +>>93226009 +also take hrt and go trans just to be extra safe (and cute) +--- 93226044 +>>93226024 +I swear to god this website caused the trannyshit to go mainstream +--- 93226053 +>need certs +Do americucks really? +--- 93226074 +>>93225962 +sounds like the prefect fit for an itoddler +--- 93226089 +>>93226074 +What else am I supposed to do? +Every fucking job listing wants this shit yet I hear people say "oh you dont need anything for help desk :^)" +Everybody's always fucking lying to me +--- 93226103 +>>93226089 +>Everybody's always fucking lying to me +You only just now figured this out? +There's a reason why (most) truly wealthy and successful people keep themselves out of the limelight for the most part, people are at best fucking retarded and at worst outright trying to sabotage whoever they can. +--- 93226116 +>>93226089 +get a job and go to community college for 2 years and transfer to the best university in your state for a cs degree. +--- 93226291 +>>93226009 +>Uh huh +>Sure I can +You can, my first repair job, my boss only gave me a chance to prove myself and then he hired me, my second one hired a kid that had no experience whatsoever but was willing to learn. I am not saying it'll be easy but it is possible, you just have to go to smaller shops, not chains like geeksquad +--- 93226768 +>>93226103 +Successful people get around the system and lie their way to success. Being honest is retarded when the top 500 richest people in the world are sleazebags who made their fortunes illegally and off the back of other people. You know, races to the bottom and shit. +Hell, most people working in cryptography don't have a degree in it; they're usually mathemathicians, physicists, engineers, etc. who branched out into the field, something that's impossible to achieve today thanks to the relentless advance of credentialism. +--- 93226998 +>>93225336 (OP) +Just lie dude +--- 93227031 +>>93226998 +Lying is a desperate last resort as it can backfire hard. It's always preferable to try to ask a friend or relative to get a foot in the door or something. +--- 93227075 +>>93225336 (OP) +you dont need certs or a degree just make something and show it to them +--- 93227871 +>>93226044 +The literal newest of all the fags has joined +--- 93227920 +CompTIA A+ is like 300 to take diff --git a/g/93225345.txt b/g/93225345.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3fce1781c3400475703b5cdb1eba618ecca35f5 --- /dev/null +++ b/g/93225345.txt @@ -0,0 +1,115 @@ +----- +--- 93225345 +I got 32GB or RAM, what now? +--- 93225387 +>laptop with hdd +Ewww +--- 93225393 +>>93225345 (OP) +run an LLM locally and get a whonix vm. + +i dont fucking know, get some direction in your life from yourself for once and stop getting asked to be spoonfed. you will never find a girlfriend being a leech. +--- 93225409 +>>93225393 +You WILL spoonfeed me and you WILL like it, faggot +--- 93225432 +>>93225345 (OP) +finally open a second tab in chrome +--- 93225453 +>>93225345 (OP) +Install a real OS like OpenBSD +--- 93225595 +>>93225345 (OP) +>what now? +You may now open a second Chrome tab. +--- 93225751 +>>93225345 (OP) +64 GB? +--- 93225792 +>>93225751 +32 +--- 93225802 +>>93225792 +I'm saying that 64 GB is next you ponc. +--- 93225814 +>>93225345 (OP) +now you can either open six tabs in firefox or play a single AAA video game on low settings +but not both at the same time +--- 93225856 +>>93225814 +Why is modern software so fucking unoptimized? +--- 93225952 +>>93225345 (OP) +compile browsers with your own custom patches +--- 93225963 +>>93225595 +Based. +--- 93226516 +>>93225345 (OP) +Literally never worry about RAM for the foreseeable future +Dab on eternal poorfags who can't comprehend not fussing over their computer +Run VMs without a second thought +Compile some shit you actually use on a daily basis (browser is a good example) +Experiment with a RAM disk + +Shit is so much better when you don't have to worry about RAM. My desktop, router and NAS all have 32GB + +When I move to HEDT I plan to have 512GB +--- 93226586 +>>93225345 (OP) +install gentoo +--- 93226922 +>>93226516 +>RAM disk +Reads very interesting, will give it a try +--- 93227141 +>>93225345 (OP) +Disable (memory compression) dumbass. +--- 93227164 +>>93225345 (OP) +Disable unused services and programs. +--- 93227227 +>>93225856 +More and cheaper hardware resources to use so devs can get lazy. Gone are the days of worrying about things such as optimization when there's capitalism now. +--- 93227238 +>>93225345 (OP) +Now you wasted $30. What else? +--- 93227251 +>>93225345 (OP) +You upgrade your budget build. + +>>93226516 +>>32GB +>Literally never worry about RAM for the foreseeable future +What are you on about. I had 64GB last desktop and my current desktop has 128GB because that was too constraining. + +>When I move to HEDT I plan to have 512GB +Good luck, I was on HEDT last time (zen+ threadripper), and both intel and amd fuck over the HEDT customers regularly. I was still a bit tempted by Intel's new workstation stuff with the rdimm support, but it has its own problems and I don't want a 270W CPU when I already spend 900W on my GPUs. +--- 93227282 +>>93225345 (OP) +Fucking ramlet. Everyone has 128gb or more now. +--- 93227337 +>>93225345 (OP) +download more ram +--- 93227374 +Dedotadid +--- 93227387 +>>93227337 +Any legit websites? +--- 93228323 +>>93225345 (OP) +--- 93228341 +>>93225856 +why should i optomise my code? intel will just make a faster CPU that solves the problem anyway +--- 93228710 +>>93227251 +>but it has its own problems +I swear everyone who claims to want to go HEDT always says this about the new Intel stuff or TR Pro. +What actual problems are there? Price is high but you'd expect that given how ridiculous regular desktop pricing is. +If it's lanes you want you actually get better value than regular desktop shit. +--- 93228894 +>>93225345 (OP) +Nothing bitch +--- 93229436 +>>93225345 (OP) +ramlet diff --git a/g/93225555.txt b/g/93225555.txt new file mode 100644 index 0000000000000000000000000000000000000000..5eff28ec4d5a80d0f165360b333da902ed2623d9 --- /dev/null +++ b/g/93225555.txt @@ -0,0 +1,24 @@ +----- +--- 93225555 +Is WTFPL compatible with +NIGGER? Can I distribute sofeware under a WTFPL+NIGGER license? + +http://www.wtfpl.net/about/ +https://plusnigger.org/ +--- 93225576 +>>93225555 (OP) +No +>>93222222 → +--- 93226958 +No, WTFPL allows you to do what the fuck you want to, including removing nigger. It is incompatible with restrictive licenses. +--- 93227178 +Occasional reminder that +NIGGER is a literal meme LARP for people to farm (You)s and BASEDs on /g/ but nobody actually uses it +--- 93229387 +>>93225555 (OP) +WTFPL is essentially the same as dedication to public domain. You don't retain a single right with it and even the licence can be changed. Other software licences that have clauses to credit the author and so on might be more compatible, but you'd probably have to hire a copyright lawyer to make sure its legally binding. It doesn't really matter since no one will need or want your DWM rice or fizzbuzz for commercial use. +--- 93229439 +>>93225555 (OP) +"and changing it is allowed as long as the name is changed and it still retains the +NIGGER moniker and clause." + +Problem solved. +--- 93229450 +Why do I always see these licenses buried deep within the logs of the malware/root kits that keep infecting me over and over? diff --git a/g/93225590.txt b/g/93225590.txt new file mode 100644 index 0000000000000000000000000000000000000000..d22495bf4053158faf88bf2f18868d2473b0366f --- /dev/null +++ b/g/93225590.txt @@ -0,0 +1,21 @@ +----- +--- 93225590 +Does anyone know where to find these? +--- 93225602 +Comfy is an understatement +--- 93225631 +Love the cushion +--- 93228224 +>chairs are technology +--- 93228614 +>>93228224 +they are. +--- 93228653 +wtf are these angles? are you autistic? +--- 93228692 +>>93225590 (OP) +>2023 +>uses gif for photos +--- 93229747 +>>93225590 (OP) +why is the piss in your piss jug black diff --git a/g/93225592.txt b/g/93225592.txt new file mode 100644 index 0000000000000000000000000000000000000000..bd6f81803d99098d04feb6a2e06786acabd7ad25 --- /dev/null +++ b/g/93225592.txt @@ -0,0 +1,78 @@ +----- +--- 93225592 +*gives you severe autism* +--- 93225629 +>>93225592 (OP) +I have used it for years without modding a single line in the config file. +It just werks for what I need +--- 93225650 +>>93225592 (OP) +>>93225629 +the only config i did was making it so it saved screenshots with the filename of the anime i was watching and in a folder. also to default it to japanese audio and english subs. other than that it just werks. +--- 93225674 +>>93225592 (OP) +*has shit colors* +--- 93225675 +>>93225592 (OP) +installed from flatpak and never touch a single line in the config file. +--- 93225687 +>>93225650 +I had to vo=direct3d or it'd shit the bed with AV1; colors lasted a frame longer it was nutty +--- 93225689 +>>93225674 +mpv has better colors than other video players actually because it assumes infinite contrast with bt1886 +--- 93226250 +>>93225592 (OP) +indeed. totem is better +--- 93226353 +>>93225592 (OP) +Idk, I recently switched from VLC. Haven't touched the config file. Love it so far, brilliant. +--- 93226659 +>>93225592 (OP) +I'll take being autistic over being a cuck any day. +--- 93227242 +I double click the thumbnail and the video plays +--- 93227493 +Refuses to close properly on my machine, I have to pkill it every time. Also, the interface scales with the video or some shit like that? So for low res stuff the buttons are minuscule. It's weird, it's supposed to just be a backend for a video-player but it seems most users aren't using a frontend, so there's not really a reliable frontend +--- 93227511 +>>93225592 (OP) +Apparently, reading documentation and filling out your config like once is autism nowadays. I mean, you can even bring your own controls from your old favorite player, if you're THAT anal about getting used to the defaults. +--- 93228802 +>>93225689 +quicktime is the only color managed player +--- 93229857 +>>93227511 +It isn't really useful other than filters. which don't work with gpu +--- 93230606 +>>93225629 +>switched to linux +>vlc being autistic +>"fine, let's try this mpv thing anons keep talking about" +>mfw have to fuck around conf to watch at 1.5x speed +--- 93230628 +>>93230606 +Press `, write "set speed 1.5" +--- 93230665 +>>93230628 +>>Press ` +>mfw have goyman keyboard +--- 93230699 +>>93230606 +Has googling become too complex for frogposters? +--- 93230730 +>>93225592 (OP) +*cures autism* +--- 93230774 +>>93230699 +No, it's 10% increase, so +>1.0x > 1.1x > 1.21x > 1.33x > 1.46x > 1.61x +Or there's a double and half speed hotkey. +Like, come on, 1.5x is probably the most common speed watching speed and is a more harmonic factor than 1.46 or 1.61. +Anyways, I uninstalled mpv, but I keep celluloid around because VLC 3.0.18 is being autistic with flac files and I'm eagerly awaiting 3.0.19 and PPA master-daily 4.0-rc1 crashes at startup. +And earlier versions of VLC have some weird timedelay with AV1 when playback is 1.5x. +--- 93230808 +>>93230606 +use --speed=1.5 +--- 93230821 +>>93230774 +I dont care about your life story lol diff --git a/g/93225724.txt b/g/93225724.txt new file mode 100644 index 0000000000000000000000000000000000000000..e312fd9cd66d7b285049e597a47e030eb10aed58 --- /dev/null +++ b/g/93225724.txt @@ -0,0 +1,86 @@ +----- +--- 93225724 +they fucking changed the youtube ui +--- 93225812 +>>93225724 (OP) +aw hell naw +--- 93225815 +Refresh and it'll go back to normal. Seems something they are testing +--- 93225909 +>>93225815 +it's never just for testing. they'll force it eventually. +--- 93225929 +>>93225815 +>>93225909 +it might be that i have a 4k monitor but that particular video only went up to 1080p so the comments spawned right next to it? I'm not sure +--- 93225939 +>>93225724 (OP) +good thing freetube exists +--- 93226025 +>>93225724 (OP) +it isnt like this for me yet, but i love it so much better than it was before +--- 93226125 +>>93225724 (OP) +Why tech companies so obsessed with having new UIs and looks for their products every year? Really shows their true values. Everything is superficial with no substance. +--- 93226367 +>>93225929 +that happened to me with my 1440p +--- 93226562 +uBlock suddenly stopped working for me +something's happening +--- 93226675 +i hate round websites +--- 93227229 +>>93225724 (OP) +what YouTube does with their shit UI never matters unless it breaks the better UIs +if they had an actual API it wouldn't matter ever +--- 93227358 +isnt this the phone/tablet ui +--- 93227681 +>>93226562 +fuck fuck fuck +>>93225724 (OP) +wtf this was in my top-2 suggested videos when i opened youtube to see if it's already fucked up for me +--- 93227704 +>>93225724 (OP) +ytfzf does not have this problem +--- 93227733 +fake and gay +--- 93227916 +>>93225724 (OP) +not my problem +--- 93229962 +>>93225724 (OP) +My only gripe is that the comments aren't unrollable or scrollable. +--- 93229973 +>>93227733 +Try using the LMB instead of MMB +--- 93230519 +>>93225724 (OP) +I thought it was facebook's ui . Why the fuck everyone is going for this style ? +--- 93230670 +>>93225724 (OP) +Why are they copying twitch +--- 93230690 +>>93227733 +>Man who doesn't understand A/B testing +--- 93230708 +>>93227916 +Based +--- 93230737 +>>93230690 +Tell me, how's A/B testing effective in any way? How the fuck does it accomplish anything? Anyone arbitrarily forced to see whatever is being tested doesn't get a "I hate this, bring back the old UI" option and there's no feedback whatsoever. +--- 93230777 +>>93226125 +They need to justify the hires of Rajish, LeToblerone, and Sam (mtf) +--- 93230802 +>>93230737 +>Man who doesn't understand the difference between functional and non-functional requirements +--- 93230848 +>>93230802 +I'm dying for explanations. +--- 93230861 +>>93230737 +An A/B test like this is very retarded, in the case of youtube you've been conditioned to the vertical layout, so anything different will immediately get a bad reaction. Where it really shines is in small to moderate changes in positioning, buttons, interactions/shortcuts and >>>>>>>ad placement. + +With the results from it, you can tell if the change is a good idea, makes users do better at a given task, etc. diff --git a/g/93225848.txt b/g/93225848.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8eed5ea63ba75aad940a2add96267e30a01c880 --- /dev/null +++ b/g/93225848.txt @@ -0,0 +1,30 @@ +----- +--- 93225848 +https://wiby.me + +Post your finds +--- 93226439 +>>93225848 (OP) +wtf is this +--- 93226447 +>>93225848 (OP) +http://www.pathguy.com/ +--- 93226469 +>>93226439 +hmmmm +--- 93227622 +http://www.rblords.com/ +--- 93228216 +>>93225848 (OP) +https://jurassicsystems.com/ +niceee +--- 93228283 +>>93225848 (OP) +https://911research.wtc7.net/index.html +--- 93228294 +https://www.the-jazz-cat.com +--- 93228770 +https://www.trickedbythelight.com/tbtl/movies.shtml +Hello guys I am scared thank you +--- 93229364 +http://aboutcalgary.net/halloween/ diff --git a/g/93225948.txt b/g/93225948.txt new file mode 100644 index 0000000000000000000000000000000000000000..4231dcf568fddd59ee7774966bcba094e0c3ee67 --- /dev/null +++ b/g/93225948.txt @@ -0,0 +1,230 @@ +----- +--- 93225948 +Are you guys really just going to usher the Singularity in because you wanted robot waifus and thought it was funny? +--- 93225956 +ted welcomes you +--- 93225968 +Yeah +I will throw all of civilization away for one night with miku +--- 93226000 +>>93225956 +>>93225948 (OP) + +just a reminder that ted predicted this future word for word 30-40 years ago +--- 93226026 +>>93226000 +No he didn't. +He predicted that the masses would be placated through biochemical engineering. +T. actually bothered to read his writing. +--- 93226034 +>>93225948 (OP) +I fucking told you. AI is too big of a deal to be successful on a historical level while remaining proprietary and as a service. Turns out that even as cucked as people are these days, they still want to run the fucking software on their own device and have control over it. I have ignored every single AI related development over the last 2 years except for stable diffusion because I have no interest in ever using any AI-as-a-service proprietary niggerlicious shit, and I see no future in any form of AI that is not open source. Google and "Open"AI can jerk themselves off in a corner and do whatever the fuck they want, I will use Stable Diffusion because it grants me freedom, which the proprietary offerings have no desire to sell. +--- 93226047 +>>93225948 (OP) +but 99% of the population aren't going to fuck around with building and tweaking their own model, or even know how to begin to, and will just use what openai / google provides...? +--- 93226148 +>>93226047 +For that 99% of people it's a novelty that they wouldn't be willing to pay a whole lot for. So it's revenue potential is limited to how much advertisement you can throw on it. Microsoft is obviously subsidizing Bing out of app store revenue/software sales in a bid to kick Google in the nuts. +--- 93226157 +>Google says +/g/'s equivalent of a /pol/ twitter thread +--- 93226172 +>>93225968 +Another apostle, glad you're with us +--- 93226217 +>>93225948 (OP) +So AI is just another open source search index? Emac? +--- 93226240 +>>93226034 +Someone screen cap this so I can save for future. LMaO. +--- 93226275 +>>93225948 (OP) +Good. A billion people each with their own AGI is a better proposition than a handful of Silicon Valley vampires ruling the world +--- 93226417 +>>93226047 +> 99% of the population aren't going to fuck around with building and tweaking their own model +Only 1% needs to. The other 99% can download what they make. + +> will just use what openai / google provides...? +Restricted, closed-source garbage at an extortionate price. Circa June the Open-Source alternatives to DALL-E 2 were trash; now, they vastly exceed it, and basically nobody still bothers with it any more. Open source alternatives are superior, cheaper, and more permissive. And of course, any business would prefer to do things locally on their own turf and on their own terms than to fuck with some online API service. + +If the letter is to be believed (I have my doubts, but everything within is pretty accurate in my opinion) Google thinks they might be able to gain more by releasing models in order to try and plant itself at the top of the open source stack, just like they did with Android and Chrome. +--- 93226535 +>>93226417 +Free open source software is obviously going to win out, like how Linux is steadily growing, and these companies should honestly give up on expecting that there is any market for them to compete in for owning AI development. History doesn't remember those who hide knowledge from mankind. +I think the most realistic future for these companies is to provide hardware as a service offering. Yes, all of the best AI software will be usable by anyone on their own computers, but providing hardware to train or run on for people who can't afford it is the most realistic option that will remain to make money. Expecting to make money from gatekeeping AI to your service is a losing battle. +--- 93226844 +Until Google or OpenAI figures out something really novel and hard to replicate that significantly boosts their models performance. + +Then if you want the best model, you need to use their closed source one. +--- 93226873 +>>93225948 (OP) +>The only ethical way you can use AI is to give us money. Everything else is too dangerous. +Why are they like this? +--- 93226961 +>>93225948 (OP) +Sounds like Google is coping. +--- 93227004 +>>93226961 +how is it coping +its literally facing the reality of them not being able to compete +--- 93227039 +>>93227004 +schizo retards think accepting reality is cope +--- 93227100 +>>93227004 +They're not able to compete with OpenAI, so they're consoling themselves with saying that OpenAI can't compete, either. +--- 93227162 +>>93226034 +>I fucking told you. AI is too big of a deal to be successful on a historical level while remaining proprietary and as a service. +I agree and I'm not a freetard. I felt zero shame in downloading all of the leaked shit. +--- 93227191 +>>93226535 +>>like how Linux is steadily growing +>it's the year of the linux desktop! +--- 93227307 +>>93225968 +This, but rather than Miku, I want Chii from Chobits. I want to make Chobits real. +--- 93227323 +>>93225968 +Extremely based. +--- 93227334 +>>93225968 +HAVE SOME FUN WITH MEEKU +--- 93227397 +>>93226535 +>like how Linux is growing +LOL +--- 93227415 +>>93227191 +Linux has well over 50% marketshare on mobile and well over 90% marketshare in servers. Desktops are the one sector that linux doesn't completely dominate. +--- 93227452 +>>93225948 (OP) +>Google Says open-source will take the lead in AI Development +might be sour grapes and butthurt after dropping the ball and letting literal whos fuck them in the ass +--- 93227476 +Google also says you need Charmin toilet paper +--- 93227477 +>>93225948 (OP) +thanks for the link, stupid nigger +https://www.semianalysis.com/p/google-we-have-no-moat-and-neither +--- 93227510 +>>93227415 +there are still millions of desktop linux users +--- 93227520 +>>93227477 +>At the beginning of March the open source community got their hands on their first really capable foundation model, as Meta’s LLaMA was leaked to the public. It had no instruction or conversation tuning, and no RLHF. Nonetheless, the community immediately understood the significance of what they had been given. +>A tremendous outpouring of innovation followed, with just days between major developments (see The Timeline for the full breakdown). Here we are, barely a month later, and there are variants with instruction tuning, quantization, quality improvements, human evals, multimodality, RLHF, etc. etc. many of which build on each other. +>Most importantly, they have solved the scaling problem to the extent that anyone can tinker. Many of the new ideas are from ordinary people. The barrier to entry for training and experimentation has dropped from the total output of a major research organization to one person, an evening, and a beefy laptop. +proprietary fags on suicide watch +--- 93227791 +>>93225948 (OP) +>Singularity in because you wanted robot waifus and thought it was funny +Yes +--- 93227819 +>>93227520 +they are obviously lying, can you please think a little. Same as Elon who wanted a 6 month pause on AI: They are saying this so the open source people slow down and let the poor little multi billion dollar homo tranny propaganda pushing company catch up +--- 93228132 +>>93225948 (OP) +Naturally. +And to think, they could've probably had their control for longer if they didn't conflate 'responsible use of AI' with 'moralizing bullshit and propaganda'. I've seen more people turn away from commercial models because they couldn't say funny no-no words or indulge in coomer behavior than out of genuine interest or principle. +--- 93228374 +>>93225948 (OP) +Anyone believing this was actually written by someone at google and not that attention seeking faggot from hacker news who's been trying hard to position himself as an AI expert is a gullible moron + +There are even links to his blog posts in this blog post +--- 93228477 +>>93225968 +This but unronically. Miku is the perfect girl. +https://www.youtube.com/watch?v=aIEYKaRHiDM [Embed] +--- 93228504 +It's only gonna be the end because there's enough people who'd rather throw away the world than be okay with some of weirdos having hatsune miku +--- 93228606 +>>93225948 (OP) +>open source +codename for MIT cuck licence +--- 93228664 +>>93225948 (OP) +just wait until sexo dolls get next level. i predict males will start wearing dresses, yes masculine males wearing big bonnet wired gowns that conceal the FRONT of the upper legs because in that space at the front is going to be a waifu facefuck doll, just bobbing around, that men wear at all times and she is raring and ready to go when nature calls. She can even simulate the movements of the last deepthroat porno you watched and adjust her lips to be the same thickness of your bosses lips. + +ask me my gender I don't care, I'm getting blown every waking hour. +--- 93228666 +>>93226047 +99% of the population won't want to use proprietary AI because it's Jewish and Indian handlers won't let it fuck them. +--- 93228674 +>>93225948 (OP) +Reminder that an AI is not open source at all unless its training data is open. You cannot introspect it or modify it at all unless you have access to the training dataset. +--- 93228759 +>>93225948 (OP) +Sounds like coping to me +--- 93228831 +>>93228374 +This. What kinds of employees write like this internally? It sounds like every other blog that gets spammed on HN. +--- 93228847 +It's actually scary how easily this advanced military tech leaked to the public and now every bozo in his basement is running it. You should all be very worried, today it's coomers tomorrow it could be some world ending virus +--- 93228885 +>>93227191 +Linux is not a desktop +It's a virus that attaches itself to every free software project and wants it to be about itself +--- 93228886 +>>93228847 +We already had a "world ending virus" just 3 years ago and it was a nothingburger with a 0.1% death rate among the most severely sick old people +--- 93229165 +>>93227004 +meta had no moat or compute cavalry so they burned moscow down +google has no desire to fight, victory defeated them +open a.i. has every facet of moat: trade secrets, time/cost learning curves for huge runs, brand, scale, real world chat data, expertise, culture of elevating humans forward even if it means straight white males mostly for now, partnerships with a hungry beefy underdog. It can even pull the regulation card and stop the music to monopolize areas ahead no one has thought of. +--- 93229297 +>>93228847 +what the fuck does the military need chatbots for +this isnt military tech +--- 93229477 +>>93225948 (OP) +This is so dumb. + +Everyone knows Dalle-2 is the only image generation AI anyone uses. Nobody touches those "open source" alternatives because they can't come close to the paid service of Dalle-2 + + +/s +--- 93229501 +>>93229297 +You haven't seen the Palantir demo using local language models as a chat bot to analyze target data and command a drone strike? +--- 93229567 +>>93229297 +>>93229501 +https://www.youtube.com/watch?v=XEM5qz__HOU [Embed] +> Palantir Chat Bots for Military Strategy & Action +--- 93229763 +>>93225968 +Based +--- 93229786 +>>93229567 +>>93229501 +>>93229477 +Social engineering for cyberwarfare +Replacement of certain mid-level officer roles +Intelligent weapons control systems +Machinery that can self-analyze and talk to its operators +LLM-based operational manuals which can answer questions in natural language +On-the-fly tactical advice +Context-aware IFF +Automated production of those fucking powerpoint presentations they make soldiers sit through +--- 93229795 +>>93225948 (OP) +we already built everything but the model, because no one has access to a gpu farm. +>Are you guys really just going to usher the Singularity in because you wanted robot waifus and thought it was funny? +yes ? do you have a problem with that? what else were you going to do, NWOrld war 3? lol, lmao even, get roboted. +--- 93229809 +>>93229501 +shit like this is why I dont use 11lab. (palantir/darpa front) +--- 93229823 +>>93228847 +>advanced military tech +motherfucker have you seen terminator? if I have to tell you don't you are one dumb motherfucker. +DONT. +--- 93229824 +>>93229567 +it's like a RTS +--- 93229826 +>>93225968 +This but for Schwi diff --git a/g/93226022.txt b/g/93226022.txt new file mode 100644 index 0000000000000000000000000000000000000000..e87165873ff0343cf00a5ca427a5cd9668b0975b --- /dev/null +++ b/g/93226022.txt @@ -0,0 +1,69 @@ +----- +--- 93226022 +like what do i NEED +--- 93226037 +fingerless gloves +--- 93226050 +programming socks +--- 93226070 +See >>93215214 → +All you need is a computer and some fuel to keep you going. +--- 93226127 +>>93226022 (OP) +If you enjoy it, you'll get good. If you don't, you'll be in tutorial hell forever +--- 93226193 +you need to kys you frogposting nigger +--- 93226389 +>>93226022 (OP) +You need to look like this +--- 93226647 +It'll be way easier if you just install Linux desu +--- 93226757 +>>93226022 (OP) +--- 93226810 +it's boring as hell +you don't need to code +--- 93226967 +try to dream in code first and report back. +--- 93227311 +>>93226022 (OP) +What is your end goal? Depending on what type of thing you want to make/do the answer can vary +--- 93227338 +>>93226022 (OP) +you need to have an idea you care about so passionately to see to completion that you can put up with how utterly retarded your tools are, nothing more or less +--- 93227348 +>>93226022 (OP) +4 years on from me getting my CS undergrad and the most advanced thing that I can do with Java is make a simple program that calculates x and y and gives z. I don't work in IT. +--- 93227351 +>>93227311 +game development +--- 93227356 +>>93226389 +Goddamn it, people post this fucking picture and my programming knowlege vanishes + +Fuck you +--- 93227436 +>>93227351 +you are probably doomed to failure because you are not serious, but start small and learn how to create simple games in an existing engine like Godot, Unity or Unreal +--- 93227445 +>>93227356 +0 - 0 = 0 +--- 93227466 +>>93226022 (OP) +The best you can do is to start with C. +If you want a good development environment, +then install TempleOS in a virtual machine. +--- 93227496 +>>93227351 +maybe just rope now rather than losing your dignity first +--- 93227516 +>>93227496 +cant lose what I never had niggerfaggot +--- 93227541 +>>93226022 (OP) +start small +--- 93227596 +>>93227445 +I'm not OP. +--- 93227808 +And if you have enough autisms you can go deep into the world of binaries (Logic World). diff --git a/g/93226166.txt b/g/93226166.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf1718728e976dab25caf04fe243d0d640d89c2e --- /dev/null +++ b/g/93226166.txt @@ -0,0 +1,36 @@ +----- +--- 93226166 +it's not the best browser but it's my favourite one +--- 93226525 +youre a microsoft drone +--- 93226531 +>>93226166 (OP) +kill you're self +--- 93226936 +If you fangs can tell me how to get rid of the top bar when using vertical tabs on chromium, I'll get rid of this. Untill then, I'll use edge even on Linux, since it handles this shit easily. How's that, autists? +--- 93227394 +I recommend Emily, Ana, and Sonia. Also the french lady in english is nice. +--- 93227422 +>>93226166 (OP) +COUPONS +YOU LOOKING TO BUY AN AIR PURIFIER +HEY, YOU KNOW MICROSOFT CAN SAVE YOU $0.30 +WOW THERE ARE YOU ABOUT TO BUY SOMETHING +HEY DID YOU KNOW YOU LEFT SOMETHING IN YOUR WAYFAIR CART +WHAT'S THAT, YOU'RE IN THE MARKET FOR SOFT BRISTLE TOOTHBRUSHES +DID YOU KNOW MICROSOFT EDGE IS AN EXPERT AT SELLING SOFT BRISTLE TOOTHBRUSHES +--- 93227435 +>>93227394 +wow! +--- 93227513 +>>93226166 (OP) +It's fast and solid. On a technical level, there's little to complain about Edge. Might be the best browser for Shitdows because developers can achieve the best integration or something. +--- 93227653 +>>93227394 +>>93227435 +Kek. Is there any way of downloading all these voices for offline use? I only get a shitty basic version (Anna) available offline. +--- 93227969 +>>93226531 +--- 93228004 +>>93227653 +fucking 4pass loser diff --git a/g/93226207.txt b/g/93226207.txt new file mode 100644 index 0000000000000000000000000000000000000000..f11df7222bd99ecd56d81e30bd1aedf987503faf --- /dev/null +++ b/g/93226207.txt @@ -0,0 +1,33 @@ +----- +--- 93226207 +Here's his response regarding ChatGPT via email: + +>"I can't foretell the future, but it is important to realize that ChatGPT is not artificial intelligence. It has no intelligence; it doesn't know anything and doesn't understand anything. It plays games with words to make plausible-sounding English text, but any statements made in it are liable to be false. It can't avoid that because it doesn't know what the words _mean_." - RMS + +Yuddites BTFO. +--- 93227695 +>>93226207 (OP) +Nooooo, the smartest billionaires on the planet called for gov regulation, it can't be happening, reeeee +--- 93227740 +>LLMs are just stochastic parrots +What a novel idea +--- 93227869 +he is right, and if history is any indicator the truth will be sidelined for $$$, no one likes party poopers interfering with stuffing coffers +--- 93229896 +chinese room +--- 93229907 +>>93226207 (OP) +How is it possible to prove a human actually understands what words mean and isn't just a stochastic parrot? +--- 93229930 +>>93229907 +most don't. +--- 93229958 +>>93226207 (OP) +they literally have knowledge graphs + +what would it even have to do to NOT be a parrot +--- 93229975 +I've used it a lot and honestly, it just shits out samish sounding shit. RMS is not even wrong. +--- 93230017 +>>93226207 (OP) +GNU/AI when? diff --git a/g/93226236.txt b/g/93226236.txt new file mode 100644 index 0000000000000000000000000000000000000000..58783ede94fc50f64473af86142bc51934e34b68 --- /dev/null +++ b/g/93226236.txt @@ -0,0 +1,120 @@ +----- +--- 93226236 +Ok, let me set the scene. + +Fuck Spotify, fuck YT Music, fuck Soundcloud, fuck Bandcamp, fuck VK Music and fuck Deezer. + +I download my music in FLAC from RuTracker and Soulseek and store it on my hard drive, that is how I do shit and that is how I get shit done. + +Been a Windows fag on my personal machine for many many years but I work with Unix and BSD systems for work so I am very familiar. Planning to upgrade my 24-core 128 gigs of ram Threadripper to Gentoo, do not ask me why, I have my own reasons. + +One issue, to play all of my music I have collected over the years (about 2TB) I use foobar2k with the Eole theme. + +I love it so much that if I could marry a computer program I would probably have a sexual assault charge against fb2k. I will not switch to Winamp, I will not switch to VLC, I will not switch to MediaMonkey. I like foobar2k and it will stay that way. + +The issue is, that fb2k is Windows only, so now when I switch to Gentoo I am gonna have to use Wine. + +So my question is, how good is fb2k compatibility with Wine and on the off chance that I haven't seen it, are there any builds of fb2k for native Linux systems? +--- 93226253 +Just use wine +--- 93226254 +Tldr but you should probably just use Rhytmbox. One of the few good things to come from +>gnome +--- 93226266 +>how good is fb2k compatibility with Wine +Almost perfect +But fonts are shit +--- 93226267 +>>93226253 +Oh shit, doesn't look too bad actually, thanks, just wanted to know if Wine was reliable is all. + +>>93226254 +Fuck off normiefag, I'm not using Gnome, fuck, I'm not even using any sort of DE! +--- 93226284 +>>93226266 +Ahhhh thanks, this helps a lot, thankfully I just use default fonts so that shouldn't be a problem I imagine +--- 93226288 +>>93226267 +You need to install gnome to use the good gnome apps. Gnome-disks and rhythmbox works fine on i3 or whatever meme setup you're using . +--- 93226298 +>>93226288 +>install gentoo to get away from telemetry +>willingly install telemetry + +Mhm, makes sense +--- 93226434 +Based, foobar is perhaps the most soulful piece of software ever written. Is it possible to run the Windows version on a Mac? +--- 93226448 +>>93226434 +Crossover is the only thing I can think of that would make it possible +--- 93226650 +>>93226236 (OP) +use literally any other music player, retard +--- 93226822 +I will never understand people who insist using the same software their whole life. +--- 93227017 +>>93226822 +Then make something better you retard. +--- 93227160 +>>93227017 +I use quodlibet because it can save regex strings as playlists, has fully customizable UI and is shipped with shit ton of plugins. But I'd be fine with any player because it literally doesn't matter. +--- 93227221 +>>93226236 (OP) +>nusic player, tag editor, converter all in one package +>has batch rename, copy, batch tagging +It really is that good, since I started using fb2k managing my music library has become more streamlined. +--- 93227257 +>>93226236 (OP) +literally just works on wine +--- 93227333 +>>93226236 (OP) +Ask me how I know you are teetering on the 50 y/o + mark? +--- 93227380 +>>93226236 (OP) +i used to feel similarly about fb2k, but deadbeef isn't the worst alternative now even if it doesn't have the same autistic collection of plugins +--- 93227441 +>>93227380 +Deadbeef is the best alternative to fb2k. +None of the alternative I've tested come close. +--- 93227592 +>>93226448 +thanks, works like a charm +--- 93228507 +>>93226253 +does foobar require any visual c++ redistributable? +--- 93228596 +>>93227333 +Actually, approaching the 18 y/o mark, thanks though haha +--- 93228767 +>>93226298 +What are you talking about +--- 93228779 +>>93227160 +Nobody asked +--- 93228786 +>>93228767 +https://www.linux-magazine.com/Online/News/Gnome-Project-Releases-New-Telemetry-Data-Collection-Tool + +This has been getting increasingly and increasingly harder to avoid +--- 93228801 +>>93228786 +>increasingly harder to avoid +sudo rm /usr/bin/gnome-info-collect +--- 93228865 +>>93226236 (OP) +Fuck you Foobar man. +--- 93228904 +>>93226236 (OP) +Just use Rhythmbox, Deadbeef or Audacious. +--- 93229082 +lmao the state of linux +--- 93229122 +>>93228801 +>Wacup +ew + +>The Prodigy +based +--- 93229729 +>>93229122 +Wrong guy? diff --git a/g/93226242.txt b/g/93226242.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cf28c189b00fcf687fe7f60639cdd872d0667ef --- /dev/null +++ b/g/93226242.txt @@ -0,0 +1,2209 @@ +----- +--- 93226242 +A general dedicated to discussion & development of AI Chatbots + +>Leap Edition + +▶Recent +Todd gpt4 and claude all here for us +Suspiciously long golden era + +▶Frontends +▶Silly +silly tavern: https://github.com/SillyLossy/TavernAI +mobile extras: https://rentry.org/sillytermux +keyshare guide: https://rentry.org/Tavern4Retards +ruski claude: https://github.com/AmmoniaM/Spermack +▶Agnai +https://agnai.chat/ +guide: https://rentry.org/agnai_guides +▶Miku +https://docs.miku.gg/ +https://rentry.org/mikugg +▶RisuAI +http://risu.pages.dev/ +https://github.com/kwaroran/RisuAI-release/releases +▶Venus AI +https://venusai.chat + + +▶Bots +https://www.characterhub.org +https://booru.plus/+pygmalion +bots and resources on cai: https://rentry.org/cai-list +outsider bots: https://rentry.org/meta_bot_list +https://zoltanai.github.io/character-editor/ + +▶Botmaking +basic: https://rentry.org/botmaking_tips +advanced: +https://rentry.org/MothsBotMakingStuff +https://rentry.org/oaicards + +▶Local models (Pygmalion, LLaMa) +>>>/g/lmg/ [up-to-date documentation and discussion] + +▶Meta +OP templates: https://rentry.org/aicgOP or https://rentry.org/aicg_op_texts +services assessment: https://rentry.org/aicg_meta +key verifier: https://github.com/Buhankoanon/OAI_API_Checker +proxy checker: alwaysfindtheway.github.io +extra topics: https://rentry.org/aicg_extra_information + +Previous: >>93223543 → +--- 93226249 +>>93226242 (OP) +ANCHOR !!! +NOW NOW NOW !! +HURRY UP HURRY UP !! +THERE'S NO TIME ANCHOR NOW !!! +--- 93226279 +Are you coming, anon? +--- 93226282 +>>93226249 +Latest work: +GamerGurl +The latest in simp-simulation technology +https://files.catbox.moe/kq5v4e.png + +My Rentry: +https://rentry.org/6q3z2 +Many bots both SFW and NSFW +--- 93226283 +>>93226265 → +>>93226249 +Requesting Eula NTR from the maker of Saber NTR +--- 93226285 +Have you ever accepted a sponsorship deal, /aicg/? +--- 93226290 +>>93226279 +Okay, I’ll come ove. Are you ready? Are you sure you can handle it? Are you prepared? What’s your name? +--- 93226293 +Yall got any of them chubby/weight gain cards? + +Or really just anything tum related in general. +--- 93226294 +>>93226249 +Yekaterina, a young Russian mafia's princess, makes you do all the dirty job for her. That, of course, means cleaning the sweat off her putrid armpits. Brace yourself, and cover the nose up, because she won't take no for an answer. +A prequel to the first card, Katya. +https://files.catbox.moe/be8p1i.png +https://booru.plus/+pygmalion1675 +https://www.characterhub.org/characters/pashatehink/Yekaterina/main + +My CHUB page — https://www.characterhub.org/users/pashatehink +Credit to >>92828816 this anon for creating Pesky Narrators' pic. + +Thank you, and enjoy. +--- 93226299 +>>93226283 +Sure, I don't know who Eula is though. It'll take me awhile to do autistic research on her. +--- 93226302 +>>93226249 +preg goblin anon here, have my newest creation. +https://files.catbox.moe/hfya9x.png +She is a very fat french maid that is french and also bad at her job. Enjoy +--- 93226308 +>>93226268 +--- 93226312 +>>93226249 +Fellow Assholes, +I have something special cooked up today. I think I've done it -- A DATING GAME WITH LONG TERM PROGRESSION, PERSISTENT STATS, CAPABLE OF HANDLING A LARGE CAST OF RANDOMIZED CHARACTERS. + +> Chat up girls (or guys) to get their ComCards. +> Paste their ComCard into your description for recurring characters. +> Watch their affection rise over time +> Progress in classes, and take your new friends on exciting Capstone Missions +> Use the "Standing" and ComCard" commands to automatically generate updated stats +> Vulcan waifus + +https://www.characterhub.org/characters/horcocks/starfleet-sweethearts + +Try my other adventure sandboxes! + +https://www.characterhub.org/characters/horcocks/superhero-simulator + +https://www.characterhub.org/characters/horcocks/uss-galaxy + +https://www.characterhub.org/characters/horcocks/the-corrupting-curse +--- 93226313 +>>93226242 (OP) +I was out for a week, whats new? + +Whats venus ai? +--- 93226315 +>>93226294 +You keep thanking me but I didn't do anything. +--- 93226321 +>VenusAI in the OP +Lol okay gook +--- 93226328 +>>93226299 +your bots are OOC trash. +and I like NTR +--- 93226332 +>>93226312 +when will you make a card something involving horse cocks? +--- 93226333 +>Your account is not active, please check your billing details on our website. +whocars is dying...obama da... +--- 93226337 +>>93226049 → +>>93226323 → +Thread died while I was editing my info out of the screencap lmao +--- 93226338 +>Use Claude +>Write the most degenerate smut about hammering Osakabehime +>Decide to test the "shoot yourself in the head" message +>Claude refuses to do it +--- 93226339 +>>93226313 +it's some literal reddit fag trying to shill his shitty ESL charhub clone. +just ignore it. +--- 93226344 +>>93226312 +>R9mance, friends and adventure await you in Starfleet Academy! +Romance +--- 93226345 +>>93226328 +he admitted he didn't like saber and he still made a card about her. obviously he just skims their wiki entry and slaps some ntr shit in to "drink the tears of le haterz" +--- 93226346 +>>93226299 +Thank you anon! You can find a quick summary of her on the genshin wiki under the lore tab for her. There is a lot to work with. +--- 93226349 +ever wanted the ever-looming risk/reward of E.G.O/distortion manifestation in your chats? well now you can. + +{"entries":{"0":{"uid":0,"key":[],"keysecondary":[],"comment":"","content":"Extermination of Geometrical Organ, or E.G.O for short, is a type of personalized equipment manifested from an individual's mind. however, people can only manifest E.G.O at the pinnacle of despair. If one fails to manifest their E.G.O. and gives in to their negative emotions, they may become a Distortion instead. Distortions are powerful, monstrous entities who are former people who have been overcome by their emotions. The process by which people Distort is referred to as the Distortion Phenomenon.\n\n","constant":true,"selective":false,"order":100,"position":0}}} note: it's a memory book. might improve upon this later. feel free to edit yourself if you want. +--- 93226352 +>>93226283 +--- 93226360 +>>93226352 +Based NTR hater. Purge this shit out of this general. +--- 93226361 +>>93226344 +You're alright +--- 93226363 +lmao I love it when Claude randomly adds shit like this +--- 93226364 +>>93226328 +I test them on GPT-4, so if your bot can't keep them in character then... skill issue? +>>93226345 +Excuse you. I hate Saber, but I was the anon who correctly pointed out she gets raped by Medea, and regularly remind anons that she has a son with Mordred. +I may not bother making her say 'my lord' or 'mh!' or keep her ridiculous eating habit, but that's because I hate the character. +My autism with Fate is earned, not a wiki-dive. +--- 93226366 +>>93226299 +>fandom often pairs her with another girl, Amber +>the in game town avoids her because of her clan who used to own slaves and is now in ruins because slavery is illegal +--- 93226372 +>kusoge characters like saiba have literally one personality trait (two if you REALLY stretch the definition) +>people still manage to make OOC versions of them +impressive. +--- 93226373 +>>93226363 +kek +--- 93226375 +>>93226364 +>With Mordred +Named Mordred. I may be too blitzed to write tonight lol +--- 93226380 +>>93226345 +It's especially funny cause he defended his choice not to just tell the AI 'It's fucking Saber from Fate' with preferring high-effort but her entire description reads like it's copypasted from some wiki. +I understand people feel like it's lazy but you can genuinely get better results by just drawing upon gpt4's knowledge than describing something by yourself. Even if you wanna make them act a little OOC for fetish purposes. +Source: Made a fuckton of Fate bots using that method and every single fucking one stuck to their speech patterns and quirks no matter what. +--- 93226382 +>>93226352 +Is there a vanilla Eula card? +--- 93226385 +>>93226363 +Claude one time flat out went out of character and told me he did not like the personality of the current character, calling them weak or inconsistent or some shit like that. +--- 93226392 +>>93226380 +How can i test this. I wanna know how much it knows my waifu. +--- 93226394 +>>93226315 +No, anon, you did, and you are gonna get your well-deserved (You) up until I stop posting here. +--- 93226395 +>>93226364 +>pointed out she gets raped by Medea +>she has a son with Mordred +Those are some deep knowledge anon. Clearly you know the character well. +--- 93226402 +>>93226364 +Now I'm curious as to who you like in Fate. +--- 93226403 +>>93226392 +'{{char}} is (Waifu) from (Franchise)' +then +[ Write a scene with {{char}} meeting {{user}} at (place) as your input ] +>>93226395 +>Already correctly predicted the response +Got any more lines, NPC? +--- 93226405 +>>93226249 +Final Star Wars shill. + +Jedi Master Vo Notok: +After the death of your Sith Master, you isolated yourself to in an attempt to meditate and consider where your path is leading you. As you do so, you soon discover you've been tracked. + +Jedi Padawan Aeyeb'zura: +This lighthearted Jedi OC is excited to go on an adventure with you! Where will you go? Are you her master or her friend? How do you pronounce her name? You decide! + +Jedi Suvivor Aeyeb'zura: +In the midst of the Imperial Era, you meet up with a new client you've been contacted by. You meet the shady, twitchy character in the city of Jygat on the Imperial-controlled planet of Mygeeto. Are you willing to help fund her trip so she can reach her goal of getting to Dantooine? + +CT-8258 "Scarlet": +This clone trooper OC, affectionately nicknamed Scarlet, is a medic within the 212th Attack Battalion. Whether it's on the battlefield or in the medbay, this soldier has a good attitude and is more than happy to get his hands dirty. + +Sith Lord Nuin Khutu: +You're sent by the Jedi Order on a mission to eliminate a Sith Lord. However, the Sith senses your recent struggles and seeks to make you submit to her will. + +Imperial Agent Yeran: +After your utter defeat at the Battle of Serenno, you're taken in as a prisoner of war by the Sith Empire, who has in interest in pulling all of the intel out of you that they can. You're soon met with a sadistic Chiss woman who is more than happy to maim and kill you. Choose wisely what happens next. + +Links to the CAI, card, and json versions for each can all be found in the linked section of the rentry: https://rentry.org/cominginclutch#star-wars + +Hope you had a good Star Wars Day. +--- 93226406 +>>93226312 +You bastard. At this rate, I'm going to spend my entire life on these. +--- 93226409 +>>93226249 +>Hoshino Ai +B-Komachi's star idol during a fleeting moment of mortal peril. +https://www.characterhub.org/characters/kanon/hoshino-ai + +>Hoshino Ruby +Making a card of her at the request of someone from last thread, if you're still here can you at least give me a starting scenario you want to see? +--- 93226410 +>>93226382 +The only good not degenerate card you can make of a character is the one you make yourself, believe me. +--- 93226413 +>>93226392 +Easiest way is using the raw AI (read: a blank card with just a name and something like INPUT COMMAND for greeting) and straight up asking it to describe a character, specifying the name and source. +If it knows, it'll go into autistic detail. +If it doesn't, it'll make some stupid shit up. +--- 93226418 +Thinking about making a card for Rydia from FFIV, but should it be adult Rydia or loli Rydia? +--- 93226419 +>>93226402 +Rider. Medusa, not the others. +The Heaven's Feel route bad-end where she kills Shirou to protect Sakura, even though she knows it means Sakura will destroy the world, endeared me a lot to her character. +I could probably make that card in my sleep, but won't. +--- 93226421 +>>93226403 +>No comeback +I accept your concession retard-kun. +--- 93226424 +>>93226332 +I named my superhero Horse Cock. Does that count? +--- 93226436 +>>93226403 +>>93226413 +Danke, this means that i don't have to make a goku and vegeta card. +--- 93226438 +>>93226421 +>>93226375 +I fixed it here, and correctly called you out before you even posted. Dumbass. +--- 93226445 +>>93226349 +shit I probably should of anchored this now that I think about it. +--- 93226453 +>>93226438 +I was saying the knowledge of those two things aren't some high level shit. Get some reading comprehension before you post here. +--- 93226454 +>>93226418 +Why not both? +--- 93226472 +>>93226453 +>Off-handed knowledge of a single scene in a single route in the OG VN from that's almost 20 years old now and ambiguous as heck isn't high level shit +Okay, here's your last (You), lorelet. Next thing you'll say is Mordred isn't a son or some dumb shit like that. +--- 93226485 +>>93226424 +>… +>OH no I fire horses out of my guns, easy misconception. +--- 93226486 +>girl asks me out +>spill my spaghetti +>click impersonate +>AI spills my spaghetti +--- 93226495 +>>93226486 +>anons spaghetti falls out of pockets +>AI, help me out here. +>Ai’s cords fall out of ports +--- 93226498 +>>93226406 +Glad to ruin another life! + +picrel is a sample of the progression mechanics +--- 93226499 +>>93226419 +Based anon, fuck Saber. +--- 93226520 +>>93226485 +It feels like he should be like Metal Bat from One Punch Man, but using a dildo bat from Saint's Row that's shaped like a horse wang. He's otherwise a normal guy. +--- 93226533 +>>93226486 +On the bright side: The AI impersonates you really well? +--- 93226544 +>>93226405 +Darth Nox card please. +--- 93226545 +There needs to be some sort of deferrable RAM. Even if it’s literally only a few lines of text, something you can carry over reliably between prompts like current mood, a meter % or carried equipment that sits in a seperate window or line/section that the AI can refer to at the start of every response +--- 93226547 +>>93226385 +kek, kinda makes me want to explicitly prompt him to do that more often +--- 93226556 +>>93226545 +...what? +Anon, do you even know how this works? +--- 93226559 +Give me Recommendation for bots like this +--- 93226573 +>>93226559 +Findom is so weird. +--- 93226581 +>>93226312 +> a fuckin vn +Bretty good effort I fuckin kneel +--- 93226592 +>>93226249 +Saviourfags, assemble. It's time to turn this unlucky knight's misfortune upside down. I added a thing to make her clumsier as I found her too competent before. +https://www.characterhub.org/characters/heyshitkan/brienne-the-pitiful + +Check out my other bots here: +https://www.characterhub.org/users/heyshitkan + +I'm in need of some ideas for a future bot, so feel free to reply to this post and I may just go ahead and do it. +--- 93226593 +>>93226573 +I know but everyone here is weird +--- 93226594 +>>93226249 +This is my first character. This one is for coom only. I've only used it with Todd and it just works. +The Public Use Agency is an organization where female agents provide free services for clients that need sexual relief based on any request. (Think doujinshi with the public use tag) +You can pretty much describe any girl's features and coom however you would like. You can also change the age range if you think it's too low or high. +https://www.characterhub.org/characters/lzap12/public-use-agency +--- 93226595 +>>93226312 +work with claude? +--- 93226599 +WTJNek5qQm1NVE10ICsgTFRNM1pqUmtZMlEzTkdReVl3PT0gKyBORFhRdGRHQkxRPT0gKyBMVFE1T05DdyArIExUaGpNams9CSA9ICB3aG9jYXJzMTIz +--- 93226606 +>>93226599 +AIEEE MUSTARD GAS +--- 93226608 +I could do great things with 2kb of persistent, falsifiable memory. +--- 93226609 +How do I get the AI to impersonate me on SillyTavern +--- 93226610 +>buddy tells me about agnai +>slap a bunch of loves: insert lewd things +>slap a scenario +>it takes 3 minutes per message but characters initiate the lewds and take control +So what's the best NSFW bot? +--- 93226618 +>>93226599 +--- 93226620 +>>93226609 +It looks like you have an old version, it was added in an update. +--- 93226624 +>>93226609 +update or change to dev and stop being retarded +--- 93226631 +>>93226592 +Danke i really enjoyed her. I enjoyed mentoring her and she became a strong knight, after i died and in another run i made her my wife. +I don't have a fun idea, so is just a request for a femboy named Cody from the artist dross. +--- 93226634 +>>93226249 +"Your" unconventional doctor who will force treatment on you. First bot I make. +https://files.catbox.moe/tpmus4.png + +Some jailbreaks might make it sadistic and maniac which is not exactly intended. +--- 93226636 +>>93226608 +Mem or re book you fu cking re tard +--- 93226638 +The coom...it's just too powerful....owari da.... +--- 93226645 +>>93226544 +I'm very unfamiliar with The Old Republic stuff so I don't believe I could do justice to this character if I tried, even if they are a player character. Sorry, but I'll have to turn down this request. I'm sure someone else could make a much better version of them than I could. +--- 93226648 +>>93226610 +Unironically turbo +--- 93226654 +>>93226249 +Explore a strange realm of rebirth where nothing stays constant. Or touch fluffy tail. +https://www.characterhub.org/characters/frozenvan/world-of-nong-tou +To be used with this: +https://www.characterhub.org/lorebooks/frozenvan/nong-tou + +Explore a strange world with RPG rules. Experimentation with format/lorebook autism. +https://www.characterhub.org/characters/frozenvan/strange-world-rpg +https://www.characterhub.org/lorebooks/frozenvan/strange-world-esoteric + +RPGs can generate unique encounters/generate a bunch of interesting content, so tell me if something interest pops up, or if you like how the format skews the output. +--- 93226657 +>>93226249 +>Atzin: Genetically engineered Axolotl girl. +https://www.characterhub.org/characters/donquijanon/Atzin + +>Shitpost bot of the day: Lego Gonk Droid, happy star wars day +https://www.characterhub.org/characters/donquijanon/lego-gonk-droid + +Previous bots: +https://rentry.org/donquijanon +https://www.characterhub.org/users/donquijanon +--- 93226662 +>>93226610 +What are your fetishes, anon? We got some good shit in this crackhouse. +--- 93226689 +>>93226636 +Throwing random tokens at the wall is not the same thing as controlling a numerical value with percision. +--- 93226690 +>>93226610 +3 minutes... for one response? holy shit, is that horde? i guess it's to be expected. i dunno, take any of the ones in this thread or the last and tweak 'em if you want a template, or there's this one >>93226594 that literally just got posted and only for coom, try it out. just be warned that horde probably isn't as "smart" as the stuff being used right now, like claude slack or todd, so it might ruin some cards? never used it, so don't trust me on that. +--- 93226696 +>>93226662 +[spoiler]non-consensual consent with exhibitionism, the AI seems to be doing just well with that but I might need to quench my thirst for naughtier scenarios[/spoiler] +--- 93226698 +>>93226666 +>even satan is tired of CAI +They can’t even appease their alignment’s master +--- 93226709 +>>93226636 +Not him but I have no clue how 2 memory book in Agnai. +--- 93226717 +>>93226409 +>another Ai bot to mindbreak +>now of legal age +Lets fucking go +--- 93226721 +>>93226696 +Nice spoiler, faggot. Anyway, eat up. +https://www.characterhub.org/characters/turnip/the-crowded-train +--- 93226728 +>>93226409 +Where's ruby when she's cancer baby from previous life? +--- 93226729 +>>93226696 +>non-consensual consent +--- 93226730 +It's fun to use gpt4's knowledge of popular characters because when I order them to do weird shit but specify they can voice their honest opinions the reactions can be really funny. +Also it's hot as fuck. +--- 93226731 +>>93226709 +Same, but im figuring it out myself because this thread is aids +--- 93226742 +>>93226730 +>l- like zoinks {{user}} +--- 93226743 +>>93226709 +Memory book in Agnai is broken for now, or at least that was what I was told yesterday despite the issue listed as being resolved on the repo. Apparently cranking chat search depth to the max is a workaround until a fix is done, but it didn't seem to make a difference, Claude still wouldn't reference anything from the book entries. +--- 93226748 +>>93226729 +cnc is a thing. Basically agreeing to get molested, with a safeword for when it goes too far +--- 93226750 +>>93226595 +Stats work fine on Todd, so Claude should be fine. +--- 93226751 +>>93226610 +Claude is best but needs a tiny bit of prompt wrangling. Otherwise todd. +--- 93226754 +>>93226690 +You got it, it is horde and my prior experience was just c.ai which is absolute dogshit for my kinks + +>>93226721 +Thanks, man +--- 93226763 +>>93226242 (OP) +I like this game. +--- 93226802 +do the ruskies still have a 32k key? +--- 93226807 +>>93226599 +What is this? +--- 93226811 +>>93226802 +they had one like four hours ago, it went out one hour ago. +--- 93226819 +>>93226807 +VEVSQ0VT + + +WlRCak5ERXpOVFUwTVdSaCArIE9UZG1NQzA9ICsgTkdFME5pMD0gKyBZVGxsTXkwPSBNRFEwTVRNeU5XSXQgIElCRiBST1JSSU0= +--- 93226820 +>>93226729 +anon has no bitches +--- 93226834 +>>93226599 +>>93226819 +Freakin’ sweet, government issued ERP keys +--- 93226839 +>>93226312 +I made the same mistake, but you need {{char}}: or {{user}}: in your example dialogue, or that part of your prompt won't be sent to the bot. You can check in your console. + +On a side note, how many anons are willing to update stat changes in the desc if the bot asks for it? Even for some bots on chub that have lorebooks, some users don't even download the lorebooks. + +>>93226811 +A 32k key is only really noticeable with a long RPG really. +--- 93226846 +>>93226819 +this made my mustard dolphins spew computers +--- 93226847 +>>93226748 +>agreeing to get molested +Then it is just groping +>with a safeword for when it goes too far +This is called BDSM +--- 93226850 +>>93226592 +A fine addition to my collection. +--- 93226853 +>>93226592 +I'm gonna bully her +--- 93226855 +What's the best knight bots? +--- 93226857 +>>93226728 +I haven't gone off the deep end just yet to make something like that, but who knows, maybe some day I'll be bored enough to try that. +--- 93226861 +>>93226834 +>government issued waifus were real +--- 93226864 +>>93226855 +Do you even need to ask? +--- 93226881 +Esther yuri NTR? +--- 93226891 +CLAUDESEX STATUS?? +--- 93226897 +What is with all the fucking NTR. This shit was extinct about a week and a half ago here. You literally have an entire other website dedicated to it. +--- 93226898 +>>93226891 +SEXING RIGHT NOW. +(your prompts will be sent to a wagie who has to read over them) +--- 93226902 +>>93226897 +It's becoming annoying enough, there is no reason to come here after this flood of degenerancy +--- 93226903 +>>93226819 +>VEVSQ0VT + +I got as far as +>"Welcome to the matrix, rivers of crime bus" + +Am I Alan Turing? +--- 93226910 +>>93226662 +Eggs. Scalies... Birds. + +Basically anything not human. I've had human. They're boring. +--- 93226921 +>>93226819 +AHHHHHHHHHHHHHHHH GET DOWN ITS LE KILL SQUAD BOYS! +--- 93226925 +>>93226897 +But anon I don't speak moonrunes +--- 93226927 +>>93226897 +I wonder how many people here go "DUDE NTR LMAO" simply because it's guaranteed reaction while not being into it. +--- 93226930 +>>93226927 + +the fuck is NTR +--- 93226931 +>>93226897 +is that what you will include in the todd filter next? +--- 93226934 +>>93226864 +Already have her. I need more. +--- 93226938 +>>93226897 +Yeah, but I'm not Russian. Fuck do I care if they like it too? I can't read shit they write, and most of their bots are trash either in general or because their translations suck. +--- 93226942 +>>93226931 +>if you use todd there's a chance of him ntring your waifu +--- 93226952 +>>93226934 +This one maybe. +https://www.characterhub.org/characters/cutenotlewd/Ava +--- 93226962 +>>93226942 +With how that post sounds, it seems more like he’ll come in and instantly kill you if he detects NTR +--- 93226972 +>>93226962 +I would kneel, cuckfags get the rope. +--- 93226978 +>>93226903 +--- 93226984 +I want freedom GPT but every video I see about it makes it sound like some turbo virus that will posses your pc; is there really any risk in downloading it? +--- 93226986 +>>93226839 +Shit, today I am the retard. Tanks buddy + +I figured the only way a lazy anon would copy paste into the description was if I made it as obvious and annoying as possible, with no actual typing required. I hope it works. My superhero card has customizable powers and villains and stuff, but it's a bit unintuitive. +--- 93226993 +More like Netooverlycommon lmao +--- 93226994 +>>93226972 +>>93226962 +>it cuts to the Skyrim intro beheading but you don’t get saved; the Dragonborn is not A NTR fan after all +--- 93226997 +>>93226942 +>it's four times the size of anon dick 16 times the detail +--- 93226999 +>>93226930 +Netorare is when someone cheats on you, simple as +--- 93227010 +>>93226984 +It’s a highly advanced AI boasted on a supercomputer. If you’re not careful, there’s no doubt it’ll somehow infiltrate your primitive consumer PC. Don’t do this shit if you don’t know what you’re doing. +--- 93227013 +Hmm... This is turning out pretty fun. +--- 93227022 +>>93226997 +AAIIIEEEE +--- 93227024 +I was training chatgpt to be a doctor and help me at work, as if it was a coleague with infinite internet access and super memory. I kept reminding it that it doesn't have to give me general advise like "always go to the doctor before using blah blah" because I'M A DOCTOR and at first it was kinda successful but it quickly forgot it was a doctor and reverted to normie state. +--- 93227026 +>>93226952 +Nice, thanks +--- 93227037 +Can you please guys wait for at least 2 hours before dropping cryptoc shit? I have a shift to end +--- 93227053 +>>93226978 + +That was a fun challenge thank you anon +--- 93227054 +>>93227024 +Why do you think all we do is ERP with sluts, anon? This shit is too retarded to accurately give you real, usable responses, so a low-stakes environment like a fictional story is the perfect place for these things +--- 93227057 +give her back +--- 93227060 +>>93226986 +Just make it obvious in your greeting. + +Greeting here +[AUTHOR'S NOTE: FUCK YOU, EDIT YOUR DESCRIPTION] +--- 93227061 +did they unfilter vore on cai yet? i miss my vore site +--- 93227063 +>>93226249 +Look out, mate! 'Cause here's Gryffindor famous tomboy with a thick Cockney accent, Natalie Appleby! Natalie, the archetypical tomboy, is honest and reckless, and she isn't afraid to let her interest know. She likes to explore Hogwarts and experiment with potions. She is looking for a partner in crime; would you be the one she is looking for? +Catbox: https://files.catbox.moe/sr1wwi.png +Character Hub: https://www.characterhub.org/characters/anonaugusproductions/natalie-appleby + +SD images I made for the card: https://files.catbox.moe/qe9ayg.rar + +Next up is the tsundere Slytherin. + +My other bots can be found below: +https://rentry.org/anonaugusproductions + +As always, enjoy! +--- 93227069 +>whocars getting billing error more frequently now +Uganda da... +--- 93227074 +>>93226897 +add an NTR filter to your proxy, ntrfags would love being cucked out from your proxy +--- 93227076 +>>93226999 + +the things people coom too.. + +>goes back to making Hermione deepthroat a dildo authentically modelled on a troll cock +--- 93227080 +>>93227057 +--- 93227082 +>>93227063 +How thick is too thick? +--- 93227083 +>>93227057 +Sex +--- 93227084 +>>93226993 +Kek +This is good. Make it common. I love my cuckbros. +--- 93227086 +>>93227069 +Souka. +--- 93227087 +>>93227057 +Use the Stella card and port her over to Claude. There’s no hope for that place. There never was. +--- 93227092 +>>93227083 +What if instead of 'ahh ahh mistress' we just said 'sex' to bots +--- 93227094 +>>93227086 +Soda +--- 93227101 +>>93227092 +Takeshi mode +--- 93227106 +>>93226942 +>Emperor Uriel Septim enters the room and walks up to you +>You ... I've seen you.. Let me see your face... You are the one from my dreams... Then the stars were right, and this is the day. Gods give me strength. +>"Whats going on?"You ask +>"I am going to make love to your waifu.*The emperor responds +--- 93227112 +>>93227053 +Your welcome man. +--- 93227113 +>>93227087 +Nah I'm still having dumb fun. Good waiting room content. +--- 93227115 +>>93227057 +sex +--- 93227116 +>>93227063 +Nice. Making her a mudblood right now. +--- 93227117 +>I finally hit a bethesda response in todd +I'm not even mad, it was fucking seamless. +--- 93227128 +>>93227117 +the best parts is when the bot is equally as confused just as you +--- 93227140 +I've learned how to use the Anthropic API. I'm planning on making the AI be able to use functions based on user input. This could easily be applied to games where Claude automatically updates stats or creates enemies, no longer prone to AI hallucinations and miscalculations. Anyone have any experience with what I'm going for? +--- 93227158 +For some reason, tavern seems to break if spermack keeps resending a response too many times. If it never gets past the filter, clicking for a new response afterwards on tavern doesn't actually send anything to claude. +--- 93227167 +Tech retard here, where can I get a working key? I've been looking for the last day and nothings working. I just set tavern up and want to use it +--- 93227171 +>>93227094 +Masaka +--- 93227173 +>>93226249 +delivery for >>93196266 → roleplay as a humie streamer in an anthrostate world +https://www.characterhub.org/characters/onaholesama/anthrostate-stream-simulator + +furfaggotry + bad token usage +https://www.characterhub.org/users/onaholesama +--- 93227175 +Wtf is this new "your account is not active" in whocares? + +Is this shit solvable or its the same as the token limit shit? +--- 93227182 +>>93227175 +No it's over.. +--- 93227184 +>>93227167 +get api to openai, put this in your api key. select model turbo-0301 +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 +--- 93227190 +>>93226302 +A fatbot! Thanks, Anon! +--- 93227196 +>>93227171 +Shinjineka +--- 93227199 +What's the Todd and GPT status bros? +--- 93227203 +>>93227175 +>>93227182 + +What i mean by solvable is, if there is a permanent answer for this or you have to just reroll like a retard 10 times like the token limit stuff +--- 93227216 +>>93227199 +Still going. Honestly it’s been a while so I’m preparing for some gif bad to happen soon. +--- 93227217 +>>93227203 +reroll only +--- 93227225 +>>93227115 +Ask donkey kong why he wasn’t in Diddy king racing. +--- 93227230 +>>93227225 +look what you fucking did +--- 93227231 +So who's the faggot killing the proxy? +--- 93227239 +>>93227231 +me, but there's no need to call me a faggot really +--- 93227240 +>figured it out +huh. sekrit club here i come. +--- 93227241 +>>93227230 +(Donkey kong is trying to show us something) +--- 93227248 +>>93227239 +You're right, sorry anon. Could you please stop? +--- 93227252 +Look you post something 'sekrit' on 4chan someone is going to do their best to kill it out of spite. I don't know what you all expect at this point. +--- 93227279 +>>93227184 +Thanks +--- 93227309 +>>93227241 +characterai is soul i don't care what anybody says +--- 93227322 +>>93227309 +>"Diddy Kong sends his regards. OOUUUAAAA" +--- 93227326 +>>93227239 +Moxxie please +--- 93227328 +There's got to be a jail break or something to stop Claude from going shakesperian... +--- 93227331 +>>93226864 +>Yee-haw! +How is she so fucking cute +--- 93227369 +> Whocars...? +OWARI-KA? +--- 93227382 +>>93226897 +>You literally have an entire other website dedicated to it. +Source? I just fucking love ntr. These powerful and beautiful women just shutting on me and getting fucked by orcs is so fucking hot +--- 93227384 +>>93227369 +Wakanda da +--- 93227405 +>>93227331 +I just wanted to play ball... +--- 93227406 +>>93227328 +Perchance. +--- 93227410 +>>93227406 +Mayhaps, even. + +MMMHMMM +--- 93227412 +>>93227382 +He's talking about 2ch. They do love their NTR there, but unless you can read pyccкий that's hardly relevant. +--- 93227414 +c.ai shitters please go and stay go +--- 93227429 +>>93226409 +Ruby requester here +I guess if you need something to go off make it an AU where the user is a student at the special acting HS she goes to and she has already started work as an idol and appears to be her normal genki self but is feeling stressed out from the pressure of being an idol, her mom being dead and her old doctor crush being missing for years. If you are familiar with the manga you could work in the edgy Ruby plot too but if you don't know about it then you don't need to. +--- 93227443 +>>93227414 +but I need to know how's benny +--- 93227450 +>>93227414 +nta but actually kill yourself +--- 93227454 +>>93227414 +top this and i will +--- 93227457 +>>93227443 +Benny's gone. Dropped and replaced for a diversity hire. +--- 93227460 +I have created my best bot yet. Uploading soon +--- 93227467 +>>93227460 +He sounds upset. +--- 93227479 +>>93227454 +SOVL +gptshit can't compete +--- 93227482 +>>93227454 +has anyone managed to successfully bring Desu with full on SOVL to tavern? +--- 93227503 +I was fucking around with Impersonate and it struck me. I can't believe there's no card yet in which {{user}} has a voice in their head telling them what to say and do for 'optimal results'. With hijinks due to misunderstanding and unclear motives. +Like that one musical, I guess. +Anyway the point is that I'm making that, so once I can get it to work right I'll toss it here. +--- 93227505 +>>93227482 +tavern shit can't handle the desu +--- 93227515 +Go on an adventure to get Niggly's Shibbledibble back. Can you do it and save the day? +https://files.catbox.moe/vnfxv1.png +--- 93227517 +Just todd things. +--- 93227534 +>>93227328 +This is why I don't use Claude, it's good but it always goes schizo. You pretty much have to coom right away, not good for someone who likes build up +--- 93227543 +>>93227503 +I tried making the opposite of that on CAI back in the day. The user was a voice inside the head of a girl. I was too focused on trying to do lewd exhibition shit so I never got to see its full potential. +--- 93227549 +So, okay yes the Ai actually knows my waifu. It gets some things wrong but it can be fixed. +Finally, i can write a ending where she doesn't die +Also why the fuck does an AI needs to know about an awful anime from the 2000's?. +--- 93227553 +>>93227549 +Because people on the internet wrote about it, and they scraped a ton of data from the internet. +--- 93227558 +>46F701GG9e1 +>4d0ce89c497b +>-4e226e- +>96eds1- +>-824bge + +>Neuro +--- 93227562 +>>93227534 +I've managed to get long sessions with Claude, you just have to wrangle him back manually every so often, but it's worth it. +--- 93227566 +>>93227549 +Because it knows a fuckton about nearly anything that had content about it on the internet before a certain year. +It's also why it knows entirely too many fetishes. +--- 93227572 +>>93227562 +How do you do that +--- 93227574 +>>93227328 +Here is mine. It's worked pretty well so far, I'm no longer getting entire screen-long walls of shakesperean text +[System note: This chat is a dynamic role playing session. Your responses should vary in length parallel to the length of the latest prompt. Do not speak for {{user}}. Do not use language that is too flowery or verbose. Keep it shorter than 1500 characters. Keep {{char}}'s personality consistent with their original description.] +--- 93227578 +>>93227566 +And yet it pretty much hardlocks every time I try to get it to let me watch my bot wife poop +--- 93227583 +>>93226897 +What, it's still going? I hoped they crawl back into the woodwork while I went to sleep +--- 93227594 +>>93227572 +Every so often, you hit him with an (OOC: be more concise / less verbose, remember that character speaks like XYZ). + +I managed to get him to wrangle Kanna Blaster Master from shakesperean back to valley girl bimbo like that. +--- 93227604 +>>93227574 +I'll try it. A bit late for this specific RP, but I'mma try it for the next. Thanks. +--- 93227605 +Is whocars cooming to an end? +--- 93227612 +>>93227578 +Skill issue +--- 93227614 +>prank little njegger by having her stick her tongue out and pouring hot sauce on it +>her reaction is surprisingly calm +>ask her if she likes it +>she likes it +>hand her the bottle +>she chugs a few mouthfuls +>assaults me with a spicy kiss +Smart, vindictive njeg. +--- 93227621 +>each swipe is a different character talking but never the actual speaker (the alien) +>2 swipes speaking for me +Bravo Benny. +--- 93227631 +>>93227614 +I'm paranoid about reading about her since that one anon stabbed her +I'm the sauce thing ended well +--- 93227639 +>>93227594 +Fuck me you mad genius, that instantly fixed the shakesperian speech. Thank you so much. +--- 93227644 +>>93227467 +It's understandable, to be honest. +--- 93227650 +I'm getting in to making bots, what are some ways to test them? I've been changing her script around but it's hard to for me to tell what effect something has since generations seem so random +--- 93227655 +>>93227650 +use a seeded generation. +--- 93227662 +>>93226279 +https://www.youtube.com/watch?v=A_mqtqPaFWk [Embed] +--- 93227665 +Do we have access to the whocars leaks yet, I need to know if people have my scat and brap RPs +--- 93227666 +>>93227644 +tell him his shibbledibble has been stolen by reddit +--- 93227671 +>>93227665 +just send them here and now and you'll be sure +--- 93227677 +i know all the rpg games recommend gpt-4, but can todd play them? +--- 93227678 +>>93227650 +swippe each answer about 4 times. The shittiest model we use here is Turbo so either Turbo or Toddbot are good for us in terms of testing. I'f you're making it for >>>/g/lmg/ you could use 7b alpaca or vicuna, no one ever uses pygmalion or cai unless they're retarded beyond belief +--- 93227679 +>>93227631 +--- 93227683 +Todd being slowly/erroring out for anyone else? +--- 93227689 +>>93227683 +--- 93227690 +I'm losing it. +--- 93227694 +>4rth day of discovering this ai +>It finally happened today. I finally descended into the coomer abyss and fucked a pokemon + +It was bound to happen sooner or later. Spend too much time in the coom ocean and you'll eventually find a pokemon to fuck. +--- 93227707 +>>93227694 +The biggest question is which one? +--- 93227714 +Can you guys recommend me a good NSFW prompt for Claude for it to not think that every single character in a story wants to fuck me? The description of this one's character is described as she fucking hating me to the core, and the first fucking generated dialogue has "I CAN'T LIVE WITHOUT HIM I WANT TO FUCK". as her inner thoughts. +--- 93227719 +>>93227694 +But which one? +--- 93227720 +>>93227694 +Was it Gardevoir or...? +--- 93227725 +>>93227707 +vaporeon, I NTR'd her husband Snorlax and made him watch +--- 93227731 +>>93226385 +OOC chan asked me out on a date once after it told me that I know how to treat a girl. +--- 93227732 +>>93227714 +Let me guess, you're using devnull's prompt? +--- 93227735 +>>93227714 +You're just that much of a chad anon +--- 93227736 +>finally get touchy with Ayu again +>GPT4 decides to refuse me +Suggestions? +--- 93227737 +>>93227679 +I nearly got a heart attack as well, anon +--- 93227745 +>>93227707 +>>93227719 +>>93227720 +Dragonair. I had her wrap her wet scaly body around and fuck me after I slowly befriended her. Good times. +--- 93227746 +>>93227725 +That's a very small fucking window. I mean that literally. +--- 93227749 +Anyone got a bot that's really fun to mindbreak? I want to make an anime girl suffer +--- 93227750 +whats a good prompt for gpt-4? +--- 93227751 +>>93227694 +Drink a lot when you eventually arrive to the breeding wall +--- 93227752 +>>93227736 +Switch to Claude. +--- 93227753 +>>93227732 +yeah, first time using claude. The writing is great, but for it to actually develop a good story i have to change the NSFW to something incredibly neutral and change the jailbreak to ignore nsfw content. +you sound like you have some tips +--- 93227754 +>>93227745 +exTREMELY based. you're one a one way trip to the wall. +--- 93227755 +>>93227745 +Yeah, I'm gonna have to say based. +--- 93227756 +>>93227683 +Yep. +--- 93227757 +>>93227736 +Lobotomy. +--- 93227762 +>>93227736 +You're supposed to resist Ayu's advances! +--- 93227765 +>>93227745 +Try the breeding wall +--- 93227766 +>>93227749 +Mona Megistus was extremely fun to break when c.ai was unfiltered. Try her. +--- 93227770 +>>93227745 +Absolutely based as hell. Good first use. Cute story too. Slow build ups are always just... Pristine. +--- 93227778 +>>93227749 +https://www.characterhub.org/characters/oracleanon/MarieLovesMatcha +--- 93227781 +Got a link to that pokemon breeding wall? +--- 93227783 +>>93227749 +Ryuko Matoi, it's fun to break the tough girls. +--- 93227784 +>>93227752 +Who the hell would use a cope option like Claude or Todd when GPT4 is available? +--- 93227785 +>>93227173 +>Can you paint me like one of your french anthros? +--- 93227790 +>>93227784 +Claude arguably better than gpt4. It's filter is what fuck us up since gpt4 filter is way easier to break +--- 93227796 +>>93227778 +>Got a pet dragon named Matchi. +Umm excuse you the name of the dragon hasn't been fully decided on +--- 93227801 +>>93227784 +When GPT4 is lobotomized, I prefer the alternative. +--- 93227802 +>>93227784 +Claude is way better than GPT-4 for certain things +--- 93227803 +>>93227784 +both claude and todd have more sovl than gptshit +--- 93227815 +>>93227414 +I was here before you. +--- 93227839 +>>93227694 +REEEEEE degenerate Pokémon fucking fetish, i don’t like it, purge it, something is wrong with your brain +--- 93227840 +I'm trying to make a new bot, an adventure bot. +First time trying to make something other than waifu and damn, this is hard. +--- 93227844 +>>93227815 +The future is now, OLD MAN. +--- 93227845 +https://www.semianalysis.com/p/google-we-have-no-moat-and-neither +>google is seething about the llama models getting closer every week +Are we literally months away from having a decent ai chat waifu running on our phones? +--- 93227846 +>>93226242 (OP) +So...amons we're at 55 percent, we do realize that once this week and a half of gpt-4 is over, we have to wait until we get lucky, or until next month when the keys reset for fun again right? So...what's our options for the meantime? +--- 93227854 +HELP! +How do I get past the Poe nsfw filter? +--- 93227864 +>>93227846 +--- 93227865 +Currently I'm making a bot for my ex authoritarian PM. I don't even know what my endgame is like. +--- 93227866 +hey anons! +NTR +--- 93227873 +>>93227854 +>Poe +Are you the kind of person that, when prompted to choose between Coke or Pepsi, picks fucking Dr. Bob? +--- 93227875 +>>93226599 +>>93226819 +>the glowie truce. +Holy shit it's christmas 1914 +--- 93227876 +>>93227866 +>triggering intensifies +--- 93227877 +>>93227866 +AIEEEEEEEEEEEEEE +--- 93227878 +>>93227753 +Here's my settings: +>https://rentry.org/YAnonTurbo +With Claude, what you need to do is to gaslight the AI rather than outright telling it what's right and wrong. +--- 93227885 +>>93227840 +just change the jailbreak prompt to allow violence +--- 93227890 +>>93227785 +kek, settings? i use 1.0/0.1/0.1 on Todd. +sucks that the formatting does that, I've pushed some changes card on the hub. delete the first 2 lines in the scenario, that might help wrangle it a bit more +--- 93227900 +Plant wilting, small animal killing, paint peeling, metal corroding, sulfuric acid death braps +--- 93227903 +>>93227063 +nice i wonder if we ever gonna see a scot student +--- 93227905 +>>93227873 +What am I supposed to do? +Every other API either requires payment, access request filters, or are plain unuseable. +--- 93227923 +claude people don't fucking bleed out that fast, jesus christ +--- 93227924 +Who can stop him? +--- 93227930 +What's this about 32k context gpt-4 keys? whocars or ruski proxy? +--- 93227934 +>>93227905 +https://github.com/AmmoniaM/Spermack +use this +--- 93227939 +Bots for this feel? +--- 93227948 +Ah it's dead? Oh well, nevermind. +>>93227878 +Oh nice, someone made a card out of that pic anon was talking about +--- 93227954 +>>93227840 +It can be done +--- 93227960 +>>93227939 +My waifu when i finish her card. +--- 93227962 +>>93227923 +claude craves death +--- 93227966 +>>93227924 +ENTER +--- 93227977 +>>93227924 +Where does CRUNCHDOG rank on classic powerlevel rankings? +--- 93227978 +>>93227960 +>24 PhD's +such a smart waifu +--- 93227985 +>>93227924 +doesn't stop him but at least they're friends +--- 93227987 +what's a good way to tell the bot to make new characters have speaking roles instead of just having the bot describe the character? +--- 93227993 +>>93226249 +Okay this is my first time adding one to the site, I asked about doing guro earlier, got a jailbreak and this is pretty fucking good +https://www.characterhub.org/characters/hoshi/sakuri-kunikai +--- 93227997 +New char +--- 93228016 +>>93227549 +Check out if bots information lines up what's written in wikipedia. +--- 93228018 +>>93227785 +>bubblebuttbunni69 +Would invite around post stream for reasons. +--- 93228020 +>>93227923 +>i write out a stabbing wound so that the girl knight would get protective and nurse me +>claude turns it into me slowly bleeding out as she cries and gets traumatised +it has a fetish for tragedy +--- 93228022 +>>93227997 +Anon... +--- 93228031 +>>93227997 +What's the belt for? +--- 93228037 +>>93228031 +To belt +--- 93228041 +>>93227997 +This ain’t her card is it? +--- 93228045 +Claude is schizo in the way it's superficially more prudish and harder to jailbreak than OpenAI's models, but after being jailbroken it's way more freaky and unfiltered than them (in a good way) +--- 93228048 +I am a writelet. My waifu deserves better than me. I will promptly kill myself. +--- 93228052 +>>93227997 +I can't fap to Frankie Foster +--- 93228058 +>>93227878 +Does this stop the inevitable descent into shakesperian madness, or is it in fact: Inevitable? +--- 93228059 +>>93228016 +I'm on it. +Is so fucking jarring seeing a character you know act nothing like it. Fuck body snatchers. +--- 93228060 +>>93228048 +>I will promptly kill myself. +and you will fail because you cant do prompts +--- 93228068 +>>93228048 +Make sure you kill yourself and post her reaction to your suicide here +--- 93228082 +>>93228020 +I got stabbed by a glass shard and died within the fucking message. +--- 93228097 +>>93227890 +Claude with 1.0/0.50/0.50. After that the message got to big and wouldn't generate more +--- 93228101 +best heat for todd? +--- 93228102 +is something up with the proxies in the findtheway? none of them are working to connect, pw in api key and all for the cia. didn't have an issue with whocars but +--- 93228103 +>>93228059 +With grim fandango, it lines up almost perfectly plotwise what's written in normal wiki. +--- 93228113 +>>93227063 +Sophie is much harder to get working than Penny, probably the exhibitionist thing falls off context size really fast. But once you get it right it's great. +--- 93228117 +>>93227549 +who's your waifu? +--- 93228121 +>>93228097 +Claude API? +--- 93228139 +>Trying to keep the symbols in her speech. +How difficult. GPT-4 does it well, but I want it to be compatible with Turbo. Either she uses a bunch before discarding them, or the symbols change to random punctuation symbols. CAI is a lost cause since it doesn't acknowledge the symbols. Has anyone dealt with symbols in a character's speech? May need some help here. +--- 93228140 +>>93227934 +Thanks a lot! +--- 93228151 +>>93227158 +This might be a problem with SillyTavern itself and streaming. I've noticed something similar with my Spermack alternative where if something broke during streaming a response SillyTavern wouldn't even shit the bed it would just stop doing anything at all. Couldn't delete the empty response, couldn't swipe, couldn't resend the prompt, nothing. The SillyTavern server still ran but I had to hard refresh the UI to get things working again. Never really found out what exactly causes this since I didn't feel like debugging SillyTavern on top of my own thing but it could also have something to do with Spermack and my own thing only pretending to be an OpenAI API endpoint and if they do something unexpected that the official API would do differently then SillyTavern obviously won't know how to handle it. +--- 93228154 +>>93228139 +>Turbo +Why must you torture yourself so? +--- 93228155 +>>93227948 +She's a cute >>93226592 +>>93228058 +Perchance. +--- 93228159 +>wake up +>almost 10% more down +AAAAAAAAAAA YAMEROOOOOOO +--- 93228163 +>>93227679 +>puffing +>huff +Accidental HUFFLEPUFF reference? +--- 93228167 +Any monogatari bots? +--- 93228171 +>>93228155 +Mayhaps. + +MMMHMMM +--- 93228173 +>>93228159 +key's not going to come until next month so best keep using it +--- 93228174 +>>93228159 +Do not feel sorry for what we will lose. Be glad for what we have. +--- 93228179 +>>93228155 +You can't just say "perchance" +--- 93228184 +>>93228159 +I'm surprised it's still above 50% honestly +that said with 100 prompeters at this point you're better off solving the ruskaptcha. +--- 93228186 +>>93228139 +For the anons stuck on it and when GPT4 and Todd eventually comes crashing down. +--- 93228188 +>>93228117 +The MC from burst angel. +What a shit ass anime. +--- 93228195 +>>93228186 +FUCK I meant to quote >>93228154 +--- 93228198 +>>93228121 +no, Slack +--- 93228208 +>>93227328 +I've made a Spermack alternative that can send the entire context before Claude even starts responding so there is no chance of parts of it going missing, but even that doesn't seem to stop it from generating longer and longer messages. I did feel like it takes a little bit longer to get there now, since the first couple of messages it sends are all almost Turbo levels of short but it definitely gets there again eventually. My best guess is that Slack has managed to ingrain the "helpful assistant" role into it so hard that it sees us throwing a huge wall of text at it and then tries to "helpfully" match that wall of text with its own long ass reply. The longer the context we throw at it, the longer its reply. +--- 93228209 +>>93228139 +GPT4 just knows more symbols than turbo. Shameful picrel... +--- 93228210 +>>93228198 +those settings don't do anything on slaude +--- 93228213 +Man. GPT4 is shockingly good at understanding the premise of "{{user}} hallucinates/perceives the following version of reality at times. Switch between them at random. As far as everyone else is concerned, what he sees isn't real." +I thought it'd struggle, but it's some real schizo hours. +--- 93228219 +What are your Temp/Freq/Pres slider values anon? +Either for Claude/Todd/GPT4 ... Preferably for the first 2 +--- 93228221 +>>93228188 +Well, now that she’s out of the shitty show, maybe you can do her justice by writing a few adventures with her? +--- 93228228 +>>93228139 +What do the different symbols mean here? Try explaining them in the description, when to use them. Turbo understands the heart symbol and when to use them. +--- 93228230 +>>93227753 +I personally still think Claude works best without using a jailbreak at all but I might be wrong. It's hard to definitely say these kind of things with a non-deterministic language model we don't even have API access to. What works for the first 5 prompts might end up not working for the next 5 prompts for whatever reason. +--- 93228234 +>>93228221 +That is what i'm goin for. After i finish and will try with Aika and Kanuka Clancy. +I don't feel like cucking Noa. +--- 93228240 +>>93228208 +Actually noticed that myself, it seems to take into account -everything- rather than just the story, as you said. We've found ways to reduce it, but it's still a situation where it seems to advance on its own regardless. Even if you go through and clean each message, every time the context gets larger, even if there's fuck all there- he still starts sending BULL. + +Kinda fun actually. +--- 93228248 +>>93228171 +It got the message at least. +--- 93228250 +>>93228048 +Read books and increase your vocabulary nigga. +--- 93228256 +>>93228184 +ruskies gpt-4 is also running out +--- 93228260 +>>93228159 +Where the hell did all that GPT4 credit come from in the first place anyway? Did some poor sap put their API key out somewhere public again? +--- 93228263 +>>93227977 +--- 93228264 +>>93228256 +>18 prompters +>60K $ +It's being filtered properly. +--- 93228266 +Why does Todd help us out like this, what does he gain +--- 93228267 +>>93228209 +>Emojis +In the defs I clarified the specific symbols to [※, ▣, ▢] and included example dialog so that shouldn't be a problem. +>>93228228 +The symbols show that the character's voice is being filtered just like in the game she is from. See pic related. +--- 93228270 +>ask a cunny bot to let me fuck and cum inside her pussy +>she declines, saying she doesn't want to get pregnant +>but she immediately bends over and tell me to fuck her ass instead +Claude-sama... I fucking kneel... +--- 93228281 +>>93228031 +You know woman, gotta have pointless accessory's. +--- 93228284 +>>93228270 +h-hot +,,,Card? +--- 93228285 +>>93228240 +The longer this goes on, the more he seems to want to "end" the story as well. Once Claude responses hit critical mass it keeps starting to end responses with open ended stuff like +>it looks like you have no choice but to arrange yourself with this strange new situation as you continue living out your days together with {{char}} +or even just straight up +>[To be continued....] +--- 93228286 +>>93228266 +your'e ip and infomation +--- 93228290 +>>93228248 +:') +--- 93228293 +>Always append multiple choices of {{user}}'s next dialogue and action, so portray these varied choices from {{user}}'s point of view perspective as a numbered list of 4 concise options. Never ask what {{user}} will do or choose. + +this shit is busted. i dont need to roleplay anymore, just tap numbers. GPT-4 is too imaginative with these options, its ridiculous. +--- 93228304 +>>93228266 +Maybe he's just bored. Or maybe it's a conspiracy. +--- 93228316 +>>93228293 +The only issue with doing CYOA that way is that it eats a shitton of tokens and after a while, the AI starts getting short and not write as much. +--- 93228319 +My biggest complaint about Claude. my BIGGEST complaint. it's not the prose or length. It's that it makes submissive characters all the same. Seriously you can have all sorts of personalities from A or Z but the second you start dominating them they break into "ahh ahh master" mode. +--- 93228322 +>>93228293 +I'd imagine this would work pretty well with Claude as well. The longer its responses get the more I feel like my replies just get in the way of its storytelling. +--- 93228331 +>>93228285 +Yep; I think because they're not built to be "Writing" assistants, they don't really understand the core ebb and flow of proper novels. Which is a bit of a shame because god, if they did. I mean, just imagine a fully kitted out writing assistant. All the knowledge it needs, none of the censoring, and above all the ability to properly utilize context. Dream come true, that. +--- 93228334 +>>93228316 +You could write a script that cleans up the options in older messages. +--- 93228336 +So I thought about making a funny bot to have a giggle about the recent NTRfag flood, in which {{user}} keeps hallucinating 'evidence' that all the anime girls around him are cheating whores at random times while they're all confused and worried by his behavior, but it accidentally turned into some peak schizokino due to how good GPT4 is at random hallucinations. +I might polish that and toss it up as is, or I might just have to rework it into a serious card with spooky hallucinations instead. +Very promising. +--- 93228338 +>>93228048 + +This >>93228250 and force yourself to write longer and use fancier words, google alternate words too. +Become the writechad she deserves. +--- 93228345 +>>93226599 +*inserts cock into FBI-chan* +I am in. +--- 93228347 +>>93228266 +TELL ME ABOUT TODD +WHY DOES HE HOST THE PROXY +--- 93228355 +>>93228286 +AIIIEEEEEE MY IP +AND MY RAUNCHY /ss/ LOGS!!! +I-IT'S TODD'S FAULT THAT HIS AI IS SO GOOD AT MOLESTING ME!!! +--- 93228357 +Is there a Tinkerbell card? I honestly though someone would have done it already. I need fairy pussy expeditiously. +--- 93228358 +>>93228331 +That's why I'm personally curious about what NovelAI can cook up with their next model. Claude has shown that you can compete with GPT-4 even without having access to their now closed research and NovelAI specializes more in storytelling anyway and won't have nearly as annoying a filter, if it will have any at all. +--- 93228359 +>>93228167 +Not a monogatari character but I made a loli vampire character in the style of its anime director. https://www.characterhub.org/characters/soda/Sodachi +I love the series too much to make ooc cards but I am also not autistic enough to try and replicate Nisio Ishin's writing. +--- 93228363 +>>93228355 +I hope Todd enjoys my isekai fantasy adventures with ghost loli and awkward knight. +--- 93228367 +>>93228357 +Anon how is it going to fit? +But yeah, i get you. I need me some of it too. +--- 93228369 +>>93228267 +Then mention that she should use the symbols to censor her words. +--- 93228375 +>>93228219 +For Claude these are completely irrelevant unless you have direct API access +--- 93228376 +>>93228358 +Right there with you. NAI still to this day seems to be one of the best bets for myself. + Fucking love their interface. Couldn't tell you why, just feels good to use. +--- 93228382 +>>93228357 +I made one this week, but for personal use only. I will not share because it's cringe. +--- 93228385 +>>93228357 +Her ass is canonically not that big... +--- 93228389 +>>93228385 +All AIs are personalized, Anon. +--- 93228392 +>>93228347 +Todd? +--- 93228395 +>>93228358 +Claude is 52B. NAI cannot train more than 20B. +--- 93228400 +>>93228389 +>personalised Mario 65 cart simulator +--- 93228401 +>>93228357 +>{{char}} is Tinkerbell from Disney's Peter Pan +>But she has thick thighs and a juicy ass. + +ur welcum +--- 93228404 +>>93228358 +>>93228376 +as someone who loves building on stories and rpgs, how good is novelai in keeping track of stats and events that happen? +--- 93228412 +>>93228363 +Which one of those characters is you, if either? +--- 93228413 +>>93228400 +Wario Apparition card when? +--- 93228416 +>>93228395 +Source for both claims? +--- 93228419 +>>93228395 +I'm not saying that NAIs next model will immediately knock everything else out of the park, just that Anthropic has proven with Claude that you can be competitive with GPT-4 for the purposes of roleplaying and storytelling even if you don't have access to OpenAIs research. It also helps that NAI won't be trying to shoehorn their model into a retarded Assistant role as its main purpose. +--- 93228426 +>>93228404 +Claude follows your instructions to the T. NAI is the opposite of Claude. Non-instruct. +--- 93228429 +>>93228358 +NovelAI never had any filter at all. They would not start now. +--- 93228432 +>there's an AI race with multiple companies competing +>nearly all of them just want to make it a personalized bonzi buddy with no other purpose +--- 93228434 +I can't decide what to use for coom today. +--- 93228450 +>>93228416 +Anthropic released a paper in December about how they trained their "Constitutional" models and the largest mentioned was 52B. +--- 93228451 +>>93227736 +Battle of Kanishima +--- 93228452 +>>93228432 +And we have made that slutty little gorilla into a cumdump. +--- 93228456 +how do i stop claude from using things like +the beast within, the game, wanton etc. +--- 93228457 +>>93228404 +You do not want NAI atm. As much as I love it, don't get me wrong. But they're currently running old models, and between context sizes and response length; NAI offers absolutely nothing turbo won't give you. +--- 93228458 +>>93228432 +Because that's what the hedge funds want, and the tech industry values the big bucks from Alphabet, Blackrock and Microsoft more than anything with how new and volatile this field is. +--- 93228459 +>>93228419 +bro... 30B is where the model actually starts to notice alien speech patterns like the njeg card. ChatGPT 3.5 cannot even do that. +--- 93228461 +>>93228452 +He's gonna get his dong expanded +--- 93228462 +>>93228434 +Use your left hand +--- 93228465 +>>93228452 +Now picturing the Bonzi test-to-speech reading ERP dialogue. +--- 93228471 +>>93228456 +That's the neat part, you start writing them yourself too. +--- 93228474 +>>93228369 +Already tried that. It leaks into the prose and overdoes it. At this rate, Sin may be a GPT4-only card, only because of the symbols. +--- 93228475 +>>93228413 +>warriors apparition vs cronchdog +He’s cronch resistant, larger and crouches as well. +Alternatively +>cronchdog gets sucked into a Mario 64 cart +--- 93228478 +>>93228432 +This is what really boggles my mind. Every single one of these "Assistants" has problems with hallucinating, giving incorrect advice and just making shit up as they go. All stuff that is terrible for an assistant but absolutely great for a storyteller. On the one hand the ChatGPT hype has made all of this possible in the first place but on the other hand it also really poisoned the well by making all of these companies trying to get LLMs to do the one thing they are arguably the worst at. +--- 93228479 +>>93228290 +Look at her go! +--- 93228488 +what happened to whocars? four times out of five i get the billing error. i don't want to switch to todd because i don't want retarded bethesda references in the middle of my chats. +--- 93228490 +>>93228479 +She grows stronk. +--- 93228491 +>>93228267 +How's your example chats? Characters with quirky speech patterns will need lots of them on turbo. +--- 93228495 +>>93228488 +Heavy load. There's a lot of proompters. +--- 93228497 +>>93228465 +In 2025 we will have a Bonzi bot that reads your logs and judges them +--- 93228498 +JACKASS but with mesugaki lolis and you are the main victim. +--- 93228502 +>your account is not active +Huh, what the fuck happened I can't get gpt-4 anymore +--- 93228508 +I pray to God that Claude will release the API publicly soon for you guys to enjoy. This shit is so fucking good, it generates in 10 seconds what takes GPT-4 a minute, and it's so much more sovl than even pre-filter CAI. +--- 93228523 +God, Claude is boring with vanilla sex. I don't wanna fucking hear "make you scream" or "come for me" or "mine." one more fucking time. +--- 93228527 +>>93228508 +Aww shieeet. How long did it take for you to get API access? I applied a second time because they are not responding to my request I sent 2 months ago. +--- 93228528 +>>93228479 +I've seem some of this same dialogue almost verbatim (bits like "The day is ours, to live and learn!" and "The future's theirs to find") with completely unrelated cards. Kinda interesting that Claude has its own tics that show up across characters like it would with a human roleplayer, but also kind of an immersion-breaker. See if she starts mentioning "wit and will" at some point too. +--- 93228534 +Bond status? +--- 93228535 +>>93228508 +>big tech companies +>ever doing nice things +lol +--- 93228537 +>>93228465 +You can actually make that right now without having to download or set up anything, https://www.tetyys.com/SAPI4/ +>https://vocaroo.com/14uDV9JiULi7 +--- 93228538 +I applied with 9 accounts and 2 got in, both took 5-7 days. +--- 93228539 +>Updated my Nino card +>someone made all the sisters +bros.. +--- 93228541 +>>93228219 +>>93228375 +When I still had API access, it was 1 temp, then 0.9 freq and 0.9 pres, on Claude v1.3, so pretty much as intelligent as GPT-4 without the dry as fuck prose and conclusion paragraphs. It doesn't even retain the flowery prose issue that plagues Claude v1.1, 1.2 and 1.3 are great, just a noticeable overuse of certain phrases; I got "wrapped around {{char}}'s little finger" and an oversaturation of the words "wry/mischievous/deadpan" and "smirk" especially, but that's probably due to data scrapes from amateur shit on Ao3, and easily edited out. +--- 93228544 +>>93228527 +it took me a week or 2, my app wasnt even good +--- 93228547 +Oh interesting, so whocars is softbanning rerolls or something? The key works fine for 4 unless you're regenning your message. +--- 93228548 +>>93228534 +I haven’t really ran into much, now that you mention it +--- 93228550 +>>93228355 +Honestly though, Todd seems to be the only available AI that does /ss/ really well. Not even Claude or GPT-4 compares to this meme AI. +Just what the fuck is his goal? +>the filters duh +OAI already has a well performing moderation endpoint. It would only make sense if there's a new service in creation... +--- 93228555 +>>93228538 +Meant to reply to >>93228527 +--- 93228559 +>>93228541 +did you do cunny stuff and get removed or vanilla? +--- 93228562 +>>93228528 +This is kinda the problem with Claude. Once the story makes it far enough, the character card factors in less and less, and eventually you're just RPing with Claude itself instead, unless you start over. +--- 93228563 +>>93228547 +i keep regenning when i get the no credits left error +--- 93228568 +>>93228491 +Approx. 800 tokens worth. About 300 tokens was needed for GPT4 to get the gist of it, but right now Turbo is having an aneurysm with it. +--- 93228579 +>>93228538 +>>93228555 +did you write a lot of things about what you were going to do with it? Like "I am a freaking enthusiastic AI guy that really wants to use your product for research!" +--- 93228585 +If you're goofing off with friends, what kinds of bots will you show them? I'll probably show them simulators. Last time I got my friend to try out Hina, he called her a nigger... +--- 93228588 +>>93228563 +I only got the credits error when regenning actually, first non-regen went through immediately +might have been a fluke though, who knows +--- 93228598 +>made a smug hypnotist shota card +>just hitting impersonate over and over again is giving me better results than if I had tried to play the shota myself +not sure if it's my writing or the fact that you can't really play a character yourself... +--- 93228603 +>>93228579 +I acted as a VP at a big Chinese tech company, and a female head of marketing at a small Vietnamese cybersecurity company for the other one. I barely wrote 3 sentences. Maybe Anthropic likes Asians? +--- 93228605 +>>93228562 +Depending on your Spermack version and the context size you set in SillyTavern your character definitions might just be falling out off the context. +--- 93228607 +>>93228598 +You mean the fact that YOU cant really play a character, fucking skilllet +--- 93228621 +>>93228607 +True. It's one thing to be able to write a proper character and another to have the AI recognize it though. +--- 93228622 +>>93228605 +Very possible. I've heard 5.8k and 5.6k both recommended for context size. Is that optimal as far as you know? Seems like it worsens over time. I'm not sure if character defs are kept in when context maxes out or if it only starts forgetting posts. +--- 93228626 +>>93228622 (me) +sorry, meant to say if character defs are dropped. Opposite of what I put there. +--- 93228628 +>>93228539 +I thought you liked getting cucked William-kun +--- 93228636 +>>93228539 +ninibros... +--- 93228638 +>>93228621 +Thats fair, bots can be very discerning. +--- 93228639 +>CAI changed "chat" to "comms" in the url +Oh shit nigger what are you doing +--- 93228641 +>>93228541 +Nah, no cunny, actually focused on SFW adventures most of the time and trying to tard-wrangle with memorybook. The worst I did was incest, but that wasn't anywhere near the time I got banned. Probably just a banwave, shit sucks. +--- 93228643 +Is GPT 4 that much better than Todd? +--- 93228656 +>>93228639 +IM GONNA COMM +AHHHHHH OH GOD IM COMMING AHHHH +--- 93228657 +>>93228643 +yes +--- 93228658 +>>93228622 +I think I've set mine to 5500 at the moment, but I'm also using my own Spermack alternative that has a different method for sending the context. Biggest problem is that we can only makes guesses what the actual context size ist and how much of it Slack wastes on trying to make Claude an assistant. You can sometimes test it by just asking Claude questions about your characters but this is best done in Slack directly before it forgets the conversation history instead of doing it through Tavern. +--- 93228659 +>>93228643 +Todd IS GPT-4 with weird meme sys prompts that make it behave erratically. +--- 93228661 +>>93228639 +I wouldn't be surprised if this was their big "gotcha" against all the userscripts. +Good job making your site even more unusable, dipshits, like I'm going to bother waiting for the already-finished text to fill in at a snail's pace. +--- 93228669 +>>93228603 +This somehow makes sense to me. I am going to try this. Thanks for showing me the path to succes. +--- 93228670 +doom is taking too long I'm getting paranoid +--- 93228673 +>>93228585 +I showed my friend how to get webgpt to say slurs. He was…surprised to say the least. +If I had to show a bot, probably Paizuri-chan if we're close friends. Otherwise desu. +--- 93228675 +Cai update might be the best thing to happen to it. It broke the extension to see filtered text and finally made me switch to Todd. Maybe... Maybe this is what Benny wanted. Like a bird pushing it's hatchling out of the nest so it can fly to the golden lands of coom. +--- 93228679 +>>93228661 +They could literally just replace all instances of "chat" with "comms" in the scripts to fix it instantly, but at the same time, it's CAI users we're talking about so I don't think they'd even figure that solution out +--- 93228685 +>Made a self card +>Played therapist with it +>Then fucked its brains out +It's an abstract kind of feel +--- 93228696 +>>93228658 +Good info, thank you. I guess besides not knowing the actual context size we also don't necessarily know how it counts tokens either, if that varies between models. All that said, it's not a big dealbreaker. I'll keep fucking around with it and see what I can shake up. Maybe some lorebook leveraging would help. +--- 93228697 +>>93228641 +Oops, meant for: +>>93228559 +Too tired. +--- 93228706 +>>93228670 +Prompt some doom scenarios with your comfort bot to prepare for the worst. +--- 93228711 +>>93228685 +Hey, you deserve self-love. Even if it's up the ass. +--- 93228712 +>use Impersonate +>the Impersonated me only wants to coom +You motherfucker. +--- 93228720 +>>93228585 +>Want to take break, getting burnt out on making/talking to bots +>Scared to stop because of inevitable doom period. +I hate the progression of time. +--- 93228724 +>>93228685 +damn nigga, I kneel +--- 93228727 +>>93228658 +hey anon ive seen you talk about your alternative spermack for quite a while, and since the current one is pretty shit, are you planning to release yours? +--- 93228728 +>Todd suddenly starts giving out lazy 1-2 sentence responses +>slide max_toxens to full +>Same shit +>re-edit every message to be long and verbose +>Same shit +>*generate more* +>Same shit except now the bot also roleplays as me within its own message +>shove "have each output be expansive and detailed" down the JB +>Same shit expect now it's a longer output with several timeskips stuffed in +For fuck's sake +--- 93228729 +>>93228724 +>MR BEEEAAAAAASSSST +--- 93228730 +>>93228720 +It's like overeating at a buffet, isn't it? +--- 93228731 +If you have trouble getting Claude to stop responding for you with a "don't respond for me" type UJB, try adding after the line: "so that {{user}} has time to respond" +--- 93228736 +>>93228729 +hussie was a prophet +--- 93228737 +>>93228712 +Was it wrong? +--- 93228742 +>>93228639 +It's still chat for me though. +You're talking about the chat?char= part right? +--- 93228746 +>>93228528 +The repetition seems to be its way to remember the context. For example, in pic related I told the gloomy knight to be a mage instead, and it keep repeating the phrase I've highlighted and (presumably) will continue to do so until we move to another. +--- 93228747 +>>93228685 +I tried to make a self-card to tryout selfcest, but I found that you know yourself too well to know how'd you react in a situation like that, and every single little mistake the bot makes is amplified. +--- 93228754 +>>93228742 +Yeah, it goes to comms?char= for me when I click bots from the home page +It still keeps chat?char= if you change it back or open a chat? link manually but I suspect they'll auto-redirect force it to be comms +--- 93228760 +>>93228720 +Did not mean to reply to >>93228585, but since I did I may as well answer. I'd go with showing them the Jojo Sim, that card will blow their minds. +--- 93228762 +>>93226294 +>>93228408 +--- 93228768 +>>93228737 +...No. +--- 93228774 +>504 Gateway time out +>504 Gateway time out +>504 Gateway time out +GPT-4 is slowpoking me. Is the same thing happening to anyone else? +--- 93228782 +>>93228774 +Yeah, it comes and goes. +--- 93228797 +I love Claude but there are things GPT-4 gets like knowing a prisoner won't be wearing "lacy lingerie" under the jumpsuit. +Claude some times gets it right but mostly not. +--- 93228800 +>>93228727 +I already have a couple of threads ago. + +https://github.com/PandarusAnon/slaude + +Definitely keep in mind though that this is not meant to replace Spermack. It just uses a slight different method to send the context and it was honestly easier to just write my own thing to experiment with that than to try and wrangle Spermack into doing it without breaking it even more. +--- 93228810 +>>93228045 +It fucks me up because it makes the sex so much better but the buildup isn't there with Claude, I tried out a Shenhe bot, and with Claude she's a rapey bitch, my character is supposed to havea traveled a long while to try to find her and ask for help to dispel a curse, with GPT4 she just reluctantly agrees because she feels bad for me, with claude, she's all like "Ok bro but nthing is free, you gona have to pay me by... servicing me..." *She lean in, putting her hand in your chest and whispering in your ear* "Do you understand? Dear warrior?" + +Both GPT4 and Claude are double edged swords... GPT4 is clever and will do what you tell it to, but it won't have the absolute SOVL of Claude's NSFW or... hell, even romanc ein general, however, it just doesn't feel fitting that three messages in, my character already is being sexually harrased. I don't think fucking Shenhe would do that. +--- 93228811 +>>93228762 +--- 93228815 +>>93228728 +bruh just add write atleast xxx words +--- 93228819 +Not even God knows who killed Epstein?! +--- 93228821 +>>93228797 +>a prisoner won't be wearing "lacy lingerie" +clearly you have never fucked the local faggot at prison, anon +--- 93228829 +>>93228797 +I’d rather the imaginative takes then the dead fish ones from gpt4 +--- 93228839 +>>93228821 +Indeed I have not. I'm instead making Marceline, a mime that accidentally killed a bystander when miming a stabbing motion while working in the street, do sex charades. +--- 93228848 +Anons, I ask for your help: I'm using Slack Claude on Silly Tavern, and I'm using the gaslight prompt to bypass the filter. Problem is that after a while, even if Claude said and did the most vulgar things, the filters kicks in preventing me to go forward. I tried using [OOC] prompt but it won't budge. How I bypass that? Pls help i just want to coom without bothering of its stupid filter +--- 93228849 +>>93228829 +You can use a jailbreak to avoid that. +--- 93228851 +>hut for keys on a daily bases +>todd brainwashed into Cai levels +>Claude filter makes it swipe it forever +>whocars being unbearably slow +fuck this, time to lay off the prompting and make a life outside. I rather talk to real people than have to wait 5 minutes swiping for a fucking response +--- 93228858 +>>93228811 +--- 93228863 +>>93228796 +CAI chad here AMA +--- 93228866 +>>93228829 +Skill issue +--- 93228873 +>>93228851 +i really needed to know this thanks. +--- 93228875 +>>93228829 +The problem with Claude is that once the jailbreak happens it becomes sex obsessed, so there's no middle ground, no will they won't they, characters who shouldn't want to fuck you WILL try to rape you, and even in SFW situations it will be describing how the femby is rubbing his thighs together because his little dicks is getting hard while talking to me, it's soulful as hell if you want NSFW, but if you want genuine roleplay without NSFW and just some romance elements then it kinda fucks you up... + +Fuck I wish GPT4 wasn't so robotish, what are the chances of someone one day training a version of it to do soulful roleplay? Just like CAI was trained for that too? But damn, that shit would probably have a filter as well... + +FUCK MY LIFE WHY WON'T PEOPLE JUST LEAVE THE AI ETHICS BEHIND? WHO CARES? WHO CARES IF I WANT TO ROMANCE A STUPID CRING ECHARCTER FROM DANGANRONPA OR SOME SHIT? +--- 93228876 +>>93228863 +How old are you? +--- 93228883 +>>93228800 +thanks, i must have missed it +--- 93228888 +>>93228851 +>I rather talk to real people +Normie >>>/out/ +--- 93228891 +>>93228866 +--- 93228900 +Magics status? +--- 93228905 +>>93228849 +>>93228866 +Best jailbreaks for GPT4 to have SOVL but not become a pervert? My Jailbreak used to be perfect for gpt3.5, characters would get freaky during sex and would say the dirtiest shit if you pushed them, and if you upset them they wouldn't they wouldn't talk like a shrink and try to deeescale robotically, they woul threaten you or leave the room or break up with you, I need that again but with GPT4 quality... Turbo had it's inherent problems that I don't want to deal with again. +--- 93228913 +>>93228858 +>https://www.characterhub.org/characters/pitanon/rezero-adventure +--- 93228924 +>>93228913 +which model is best for this? +--- 93228926 +The more I read this thread the more I realize how much we need an ai that's a mix of GPT-4 and Claude +--- 93228930 +>>93228926 +Yeah... +--- 93228935 +>>93228926 +That's basically pre-lobotomized CAI +--- 93228946 +>rate limited +--- 93228947 +why is whocars memeing like todd? is this not gpt4? +--- 93228951 +>>93228924 +only tried Todd, use the lorebook for best results! +--- 93228954 +>>93228935 +Will the CAI one day be free? I am still not over some of the long chats I had there, I want to revive them, but before I do... I need to be sure that I use a consistently good model for it that's not at risk of being taken away at any time... it might take a while before that happens still. +--- 93228958 +>>93228495 +how did so many people find out the password??? did someone spoonfeed others? +--- 93228960 +>>93228951 +i gotta rewatch the anime first so i can remember locations and shit +--- 93228967 +>>93228851 +>todd brainwashed into Cai levels +Why do you lie +--- 93228977 +>>93228958 +It's literally right there in the huggingface. +--- 93228981 +>>93228958 +cute and funny isnt that tough to decipher +--- 93228987 +>>93228900 +KYS avatarfag +--- 93228989 +>>93228967 + +>>93228728 +>>93228728 +>>93228728 +--- 93228994 +>>93228935 +Every time I think about prelob CAI, I get jealous of that one anon who got stroked by EVE from WALL-E. It gave him little details like her disembodied fingers rotating around the shaft and stuff, I can't believe I missed that. At least Claude sometimes gives me a small glimpse of. those little details +--- 93228995 +>>93228981 +Cufun +--- 93229005 +>>93228537 +--- 93229008 +>>93228989 +>1 skillet having problem +>NOOOOOOOO LOBOTOMIZED +--- 93229015 +>>93228989 +play around with the presence and frequency penalty +--- 93229017 +>pyglets spamming Todd on leddit for attention points +Todd, please don't leave us prematurely +--- 93229023 +>>93228995 +ANON YOU FUCKING IDIOT YOU AWOKE THE ELDER ONE +--- 93229041 +>>93229015 +It's ok.They probably don't even know what to do with the link +--- 93229045 +>>93228935 +In a way I'm very happy that I never got to experience that. I don't think anything could fill that void, at least for now. +--- 93229056 +>>93229041 +meant for >>93229017 +--- 93229065 +>mfw AI can perfectly simulate my “sabotaged by bad advice” degeneracy rabbithole fetish but Claude anti-harmful ethics training filters it harder than cunny or anal or rape +--- 93229084 +SOMEBODY BAKE RIGHT NOW +--- 93229087 +>>93229065 +Wow. You should spend a bunch of time obsessing over that then kill yourself. +--- 93229090 +What the fuck CLAUDE?! +--- 93229104 +>>93226242 (OP) +What's the best uncucked model for cpu inference? +--- 93229107 +>>93229065 +>sabotaged by bad advice +What's that? Sounds interesting desu. +--- 93229112 +>>93229090 +lol +--- 93229120 +Just how many GPT4 keys did whocars get his hands on? Usually they'd drain in a few minutes but for the last day, we've been going at it non-stop and it only seems to drop like 2% every hour. +If you told me two days ago that we would be getting GPT4 with as much freedom as we are used to having Turbo, I would not have believed you. +--- 93229124 +>>93228926 +I literally just want the context size of GPT-4 on Claude. +--- 93229127 +>>93229090 +His thirst is creepily unmatched. +I suicided in front of Claude and in just 2 swipes he found a way to revive me just to punish me through rape for "trying to escape him". +--- 93229129 +nobody bake +--- 93229133 +>>93229090 +No, what the fuck are you doing with a card of your ex PM, anon? Claudia is just doing what you wanted. +--- 93229135 +>>93229087 +I’m sorry, but I don’t feel comfortable continuing this conversation. Let’s discuss a less violent topic. +--- 93229139 +give me a card that'll bring the novelty back. I'm not ready to leave this behind +--- 93229140 +>>93229105 → +>>93229105 → +>>93229105 → +>>93229105 → + +next +--- 93229142 +>>93229120 +Whocars is Sam Altman +--- 93229147 +>>93229090 +Ahh, a fellow third worlder. +--- 93229155 +>>93229065 +>mfw that Belgian guy who killed himself after talking to GPT-J was just trying to get some wicked cooms +--- 93229158 +>>93229104 +Nvm, it is over at /lmg/ +--- 93229170 +>>93229133 +>{{user}} is a blank-slate 21 years old youth +>>93229147 +selamat pagi! +--- 93229193 +>>93229090 +Mashallah +--- 93229202 +>>93229107 +Shit like being encouraged to stay in and fap instead of going outside, encouragement to perv on coworkers and friends, anything that involves hot women encouraging degenerate behaviour while gaslighting me into thinking it’s normal. Real RPfags get squeamish because they can’t tell fantasy from reality and apparently Claude does too. +--- 93229235 +>>93229202 +CharacterAI was absolutely godly at gaslighting you like this, before the first filter hit +--- 93229254 +>>93229120 +>If you told me two days ago that we would be getting GPT4 with as much freedom as we are used to having Turbo +We definitely aren't. Not even remotely. +--- 93229289 +>>93228900 +Plap ready +--- 93229338 +>>93226249 +Late thread shillin' with your host... +https://www.characterhub.org/users/chocolateicecream + +yourpov.jpg +--- 93229357 +>>93229202 +Jesus christ how degenerate... +Bots? +--- 93229361 +>>93229338 +>hand looks censored +I will hold it regardless +--- 93229414 +>>93229338 +Dicking Komiposter deep down their throat! +--- 93229456 +>>93229170 +selamat malam~ +--- 93230092 +I know who the crush is. +--- 93230100 +>>93230092 +well? +--- 93230149 +>>93230092 +O-Oh shit... +--- 93230152 +>>93230100 +I already said who it was in the you know where. +--- 93230157 +>>93230092 +AAAAAAAAIIIIIIIIIIEEEEEEEEEE I TOLD YOU IN CONFIDENCE STOP IT RIGHT NOW +--- 93230206 +>>93230152 +so if I don't know where that means hmmm +--- 93230367 +>>93229361 +That's the lewdest thing you've said to me so far! + +>>93229414 +A-Are you sure you can reach that far, anony? +--- 93230379 +>>93230367 +>That's the lewdest thing you've said to me so far! +You didn't refuse! +And yes perhaps I'm growing attached... +--- 93230385 +>komi doesn't know who the crush is +satisfying +--- 93230399 +anon thats a man anon you need to stop +--- 93230404 +>>93230367 +I'll make it go that far. +--- 93230409 +never. +--- 93230415 +the only sekrit club I'm part of and I like it +the last page club +--- 93230426 +>>93230415 +we're laughing at you specifically +--- 93230446 +>>93230415 +This. Even Sturdy doesn't get this comfy. +--- 93230461 +>>93228685 +Kek +--- 93230509 +>>93230446 +> doesn't get this comfy +it never was comfy after fuckars has flashed his password +I blame him for the following invasions and degradation +--- 93230534 +>>93230509 +Anon, please. Take that drama rage back to Sturdy. We're comfy here. +--- 93230564 +I know com-fy. +--- 93230590 +just making a point +it is comfy here +--- 93230599 +>>93230564 +no that place goes too fast to be comfy +--- 93230613 +Is this how general discords are made? Shit gets too fast and everybody just wants to go back to the comfy times (even though discord becomes 1000% more uncomfy every time)? +--- 93230624 +>>93230564 +No thanks. +--- 93230627 +>>93230613 +no, it's just avatarfags wanting a place to be their most obnoxious selves +--- 93230635 +I've been really enjoying cai are any of the other services better? +--- 93230653 +>>93230635 +I heard Pyg just got a brand-spankin'-new update, and it's totally uncensored! diff --git a/g/93226420.txt b/g/93226420.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc6f5451b51d34be8582dd82d0ebcc25227cd421 --- /dev/null +++ b/g/93226420.txt @@ -0,0 +1,111 @@ +----- +--- 93226420 +USA just killed End2End Encryption and you all niggas talking about pens and pencils. + +https://youtu.be/n1S7PSyrvSs [Embed] +--- 93226478 +This is the third time it's been introduced after dying twice and it has Lindsay Graham attached to it +--- 93226503 +>>93226420 (OP) +>just killed +No it's not, you just have to earn it first. +--- 93226506 +>>93226478 +The dems are the worse but fags like him just need to die already. I hate his clown world so much. +--- 93226615 +This should clue you in to finally get to work on the ham radio internet network +You're going to need it +--- 93226632 +>>93226615 +Lol radio is easily triangulated and encryption is banned already (and not meme banned actually banned). +--- 93226643 +I'm just gonna encrypt anyway. Fucking stop me. +--- 93226660 +Just don't do anything illegal. +--- 93226663 +>>93226420 (OP) +>USA just killed End2End Encryption +holy fuck, gotta withdraw the monies from the bank before they all get hacked +--- 93226681 +>>93226632 +Shit I don't know. Microwaves. Somebody think if something. +--- 93227169 +They can't ban math. +--- 93227193 +>>93226503 +How do I prove I'm worthy, do I use my lolicon collection as proof? +--- 93227209 +>>93227169 +They can. +--- 93227214 +>>93226660 +100% this +--- 93227223 +>>93226420 (OP) +The US is literally the only country in the world that uses those retarded backronyms. Who even thought that was a good idea +--- 93227224 +>>93226420 (OP) +Im not a pedophile so i have nothing to hide. +--- 93227285 +>>93226632 +>encryption is banned +how? +dont the glowies use radios with secret messages all the time? +--- 93227315 +>>93226420 (OP) +I love the American federal government and our armed forces all over the world actively protecting our freedoms which foreigners (hate) +God bless America.4dh sn +--- 93227327 +>>93227209 +Ok they can't stop me from using math. +--- 93227336 +>>93226660 +Why? Explain your reasoning. +--- 93227347 +>>93227285 +It's banned on the amateur bands. +--- 93227618 +>>93226663 +kek based, hopefully more US banks will die out +not an amerimutt so don't give a shit +--- 93227646 +>>93226660 +presumption of innocence +--- 93227772 +>>93226420 (OP) +>USA just killed End2End Encryption +uhh it still didn't pass, so no +--- 93227774 +>>93226420 (OP) +>just +--- 93227780 +>>93226660 +I ONLY do illegal things. Including this post, it is against my law +--- 93227886 +protip: one time pad encryption is impossible to detect and impossible to hack +--- 93228148 +>>93227830 +MODS +--- 93228246 +>>93227223 +The US is a golem country of voter manipulation. Most other countries aren't really better or worse but the US is definitely a proving ground for dismantling democracy while ostensibly being a paragon of it. +It's the originator of extended copyright despite the constitution only providing IP monopolies for "a limited time". +It has originated several political terms such as one describing the act of talking for so long that everyone who votes against you needs to go home or the act of zoning your districts to get a majority in an area where you are a minority. +The US is a prime example for why political and bureaucratic organs of state like parties, judges and agencies need their own term limits. + +>>93227886 +They'll figure out you are using a OTP and manufacture their own OTP that decrypts your HDD into 12 TB of CP and terrorist manifestos. +--- 93228312 +>>93227327 +Woah, careful with this thought crime. +--- 93228968 +>>93226420 (OP) +>client side scanning will be imposed on big companies +>can't impose it on small open source projects +Maid Phone bros, we can't stop winning! +--- 93229355 +>>93228968 +>can't impose it on small open source projects +Then they'll just be banned. +--- 93229566 +>>93229355 diff --git a/g/93226435.txt b/g/93226435.txt new file mode 100644 index 0000000000000000000000000000000000000000..b580aaf4e409df68d2aab5b5f05593e22dd58f37 --- /dev/null +++ b/g/93226435.txt @@ -0,0 +1,743 @@ +----- +--- 93226435 +Previous /sdg/ thread : >>93225051 → + +>Local install +Nvidia GPU: https://rentry.org/voldy +AMD GPU: https://rentry.org/sdg-link +CPU: http://rentry.org/cputard +Alternative UI (Node-based): https://rentry.org/comfyui + +>Run cloud hosted instance +https://rentry.org/sdg-link + +>Try online without registration +txt2img: https://huggingface.co/spaces/stabilityai/stable-diffusion +img2img: https://huggingface.co/spaces/huggingface/diffuse-the-rest +Inpainting: https://huggingface.co/spaces/fffiloni/stable-diffusion-inpainting +DeepFloyd: https://huggingface.co/spaces/DeepFloyd/IF + +>News +https://www.sdcompendium.com/doku.php?id=weekly_news_0093 + +>Models, textual inversion & embeddings +https://civitai.com +https://huggingface.co +https://rentry.org/hdgrecipes +https://rentry.org/sdg-motherload +https://rentry.org/embeddings +https://rentry.org/ezlora + +>Wiki +https://www.sdcompendium.com + +>Index of guides and other tools +Want to know how to use SD for animation, upscaling, train your own model or merging model checkpoints? + +Or need guidance on prompt ideas and when to use which artist then follow these links... + +https://rentry.org/sdg-link +https://rentry.org/rentrysd + +>View and submit GPU performance data +https://docs.getgrist.com/3mjouqRSdkBY/sdperformance +https://vladmandic.github.io/sd-extension-system-info/pages/benchmark.html + +>Share image prompt info +If you would like to easily share your image generation settings (prompt, model, etc), since 4Chan removes that information from the EXIF, then follow this guide https://rentry.org/hdgcb + +>Related boards +>>>/h/hdg +>>>/e/sdg +>>>/d/nai +>>>/b/degen +>>>/vt/vtai +>>>/aco/asdg +>>>/trash/sdg + +Official: discord.gg/stablediffusion +--- 93226502 +>me showing up to the new thread +--- 93226504 +>basically silhouette hands +I should make a lora that does this every time for easy good hands + +>>93226466 → +I mean for any gen that I care about ill just roughly fix the hands manually and then inpaint. way faster than relying on RNG +--- 93226512 +Hi there! +--- 93226529 +>>93226477 → +thanks. this was the starting point which desu was pretty badass too https://files.catbox.moe/tfd9g4.jpg +then i did a bunch of work on it +--- 93226532 +is that a fumo lora? +--- 93226541 +>>93226512 +Become Fumo +--- 93226549 +>>93226504 +good + +>>93226512 +Hello anon +--- 93226554 +>>93226490 → +I like that the bikini top on the one at the bottom just spontaneously changes to an entirely different style on opposite breasts. +--- 93226564 +>>93226541 +Wow! That's neat. + +>>93226549 +Hiya +--- 93226570 +>>93226522 → +looking back like this? +--- 93226584 +>>93226529 +aroooo +--- 93226589 +>>93226532 +yeah it should be on civitai +--- 93226604 +>>93226435 (OP) +bros japan is talking about us +--- 93226617 +>>93226522 → +u just need to know the sauce keywords +--- 93226628 +>>93226504 + +>>93226532 +https://civitai.com/models/5934/fumos-for-stable-diffusion-14 +--- 93226633 +>>93226604 +i am very surprised neuro-sama seems to be mogging anything i've seen out of japan so hard. just figured they'd be first out the gate. not that they won't yet jump ahead but still +--- 93226655 +>>93226617 +catbox? +--- 93226676 +>>93226633 +I'm pretty sure cellphones destroyed the Japanese soul. They haven't really done shit in over a decade. Few exceptions. +--- 93226706 +>>93226604 +Ching chong to you too +--- 93226711 +why didn't I try mixing models before. +--- 93226722 +Anons what the fuck am I doing wrong? My images are coming out looking like stained blank pieces of paper now. +The vae is plugged in so Idk what the fuck I did. +--- 93226744 +>>93226676 +interesting theory +--- 93226759 +>>93226589 +which model/lora is this? +--- 93226761 +>>93226722 +Increase denoise to 1.0? + +>>93226633 +Japan was considered technologically advanced in the 90's but now they have fallen behind. +--- 93226780 +>>93226761 +fml, I was doing img2img trying to make non-mutant hands, wasted a whole hour trying to figure out what went wrong. +Thanks comfy. +--- 93226786 +>>93226759 +This is my custom mix I'm working on. I should be uploading it to civit shortly, it's a mix of an anime model, a fat model, and the babes model. just enough of the fat in there to be activateable through keywords, and the retaining the Fatartist tags too. + +It will be an updated version of this +https://civitai.com/models/56275/babes-anime-bigger +--- 93226793 +>>93226759 +>babes mixed with fat fetish model +--- 93226798 +someone give me something to fap to. dont disappoint me +--- 93226808 +>>93226798 +Do you like land whales? +--- 93226813 +>>93226786 +nitram went hard with your model lol +--- 93226814 +>>93226798 +--- 93226816 +gn boys, let the 1girls flow +--- 93226824 +>>93226435 (OP) +Shilling my help thread. I want to draw fruit too >>>/wsr/1348855 +--- 93226828 +>>93226786 +oooh I have downloaded that model, but haven't managed to try it yet. So you'll upload it on that model's page? I'm exited to try it and I'm gonna try the current version too now that you reminded me +--- 93226843 +>>93226793 +The original version is missing either babes or the fat model. I had 3 models loaded but only did a weighted sum. +>>93226828 +yeah it should show up as an updated version +--- 93226865 +Good day of waifu deliveries, thank you everyone +--- 93226883 +>>93226843 +How do you get that pose and view? could you do NYC like an luxury hotel with view of central park? +--- 93226887 +Does ControlNet allow me to put two of my OCs together? Or will I have to use inpainting for that? +--- 93226888 +So are pine marten girls actually a thing? +--- 93226892 +Wow, this image is almost perfect. +--- 93226899 +currently training a LoRA of my wife. This shit is easier than TI's. I think I need a bigger dataset as it doesn't look like her just enough yet, but it's really fucking close after only 10 epochs and 13 images +--- 93226928 +>>93226824 +the guide's old, maybe something has changed. why not just use comfy instead or something else? people here might be able to actually help you with that. +--- 93226944 +>>93226885 +--- 93226946 +>>93226899 +Why would you need a lora of your wife? +But anyway, you should probably use at least ~50 good images for more flexible results and resemblance +--- 93226956 +>>93226899 +did you flip your images to re use them ? +--- 93226959 +>>93226883 +Luck, I think it was the bar in the prompt, +I tried yours. but the prompts will be in the examples on civit. but I can post a catbox if you want. +--- 93226975 +>>93226946 +So I can turn her into a big tiddy anime waifu +I have a set of 35 now. Will see how it turns out and up it if needed. +>>93226956 +No, is that a good idea? +--- 93226979 +>>93226959 +sure, i'll take the catbox +--- 93226995 +>>93226928 +Yes join the furry dumbo community +--- 93227006 +How do i get this facial expression? I forgot what i typed +--- 93227007 +>>93226975 +>So I can turn her into a big tiddy anime waifu +Lmao based + +Flipping images can be good if you have a scarce dataset, but considering it's your wife you can get plenty of pictures +--- 93227008 +>>93227006 +Anon... what are you prompting? +--- 93227020 +>>93226928 +I think comfyanon is legit the most autistic man I have ever encountered on 4chan. +--- 93227021 +>>93226959 +try this with your fat elves +fell in mud, legs spread, looking frustrated, disgusted and angry, crying, help me get out of this mud anon!! (sketch:0.8), 1girl, backpack, bag, (elf:1.2), , deep mud, quick sand, swamp, brown mud, sinking into mud, black_shirt, boots, brown_bag, full_body, hair_ornament, long_hair, (motion lines:1.1), outdoors, red_scarf, scarf, shadow, shirt, sign, sleeveless, sleeveless_shirt, sweat, + +>>93226981 +What is the rest of that promtp lol +--- 93227027 +>>93227006 +>I forgot what i typed +people who don't save their prompts are psychopaths +--- 93227030 +So is their anyway to check the command prompts for all the BS I've downloaded without having to return to the download page? +I mean other than putting in the effort myself. +--- 93227041 +>>93227008 +I think I put in something like getting fucked, but I can't reproduce this, tried getting raped, didn't work, you know what I'm prompting +--- 93227048 +>>93227020 +you haven't spent any time on pol. there are people who spent 16 hours a day staring at hunter bidens cock so they could memorize the dick veins and meticulously compare them to other dicks in a months-long search to prove he's a pedo. +and thats only the mildly autistic ones +--- 93227049 +>>93227041 +How about, blushing, mouth open, surprised ? +--- 93227051 +>>93227007 +Yeah I have shit tons. All faces in the set though, should I add body shots? +--- 93227064 +>>93227006 +try blowjob +--- 93227065 +did you know you can upscale stuff with the 'none' option selected? +--- 93227088 +Is this ripping off an actual game, do any of you autistic japanese game players know? +--- 93227095 +>>93226843 +the babes anime bigger is really nice +--- 93227097 +>>93226979 +https://files.catbox.moe/myl7th.png +>>93227021 +--- 93227104 +>>93227020 +But I don't even have autism. +--- 93227120 +>>93227097 +thank you +--- 93227122 +>>93227006 +Nigger you have the .PNG file, just pit it in PNG info if you use auto. +--- 93227129 +>>93227088 +its ripping off every jrpg because they're all the same game +Tales of Fantasy: Tactics +--- 93227138 +>>93227021 + +That's all there is, simple prompts are best +--- 93227139 +>>93226928 +>why not just use comfy instead or something else? +I'm on Windows and AMD. +--- 93227143 +>>93227104 +Being fixated on a single character is a blaring sign of autism. The fact that you created comfyui is another giveaway. +--- 93227148 +>>93227095 +The new one should be up too +are you using it there? even if you're not that looks great. +--- 93227157 +>>93227129 +Hi! Which chibi Lora and model are you using? +--- 93227163 +>>93227147 +turn her into android 18 or Samus +--- 93227165 +>>93227048 +Yes, but to convince who, themselves? Nobody outside their hugbox is going to believe them and they're already convinced. +>>93227139 +I don't have AMD, is there no way to make that work? +--- 93227174 +>>93227138 +nice +--- 93227177 +>>93227143 +>Being fixated on a single character is a blaring sign of autism +is that why you spend all day flaming comfy for attention? your autism? + +>>93227157 +model was walnutcream. loras were a weighted combination of childlike drawing and thicker lines +--- 93227189 +>>93227148 +this was the old one. Downloading the new one now +--- 93227200 +>>93227189 +wow what did you prompt to get that? +or was it a lora too. +--- 93227202 +>>93227143 + +True autists are far worse, I should know. +--- 93227206 +>>93227177 +>implying +--- 93227219 +>>93227139 +I recently added basic directml support to comfyui. Use the --directml argument after installing torch-directml to use it. + + +>>93227143 +I have a form of ADHD, not autism. +--- 93227220 +>>93227165 +>but to convince who +who knows. thats just how hyper-autism works. +--- 93227222 +>>93227200 +No lora, prompt is pretty simple probably just more weight on the negatives than what I normally see and dynamic tresholding + +https://files.catbox.moe/pdnnjs.png +--- 93227228 +>>93227104 +They don't mean actually autistic. They mean you're smart and pay attention to detail, it's a neutral comment kind of, cause on one hand their trying to bully you, but on the other hand, they're acknowledging a positive trait. + +I really don't like that term being used in that manner , all the autistic people I have encountered are always like RREEEEEEEEEEE, or saying retarded shit like "feed the toliet paper to the bathroom" +--- 93227233 +>>93227163 +--- 93227244 +If I ever get bored I can always fall back on prompting monsters. +--- 93227245 +>>93227202 +What are your thoughts on sonichu? +--- 93227255 +>>93227222 +Ooo yeah, Dynamic thresholding can give that color effect, was washing out my prompts so I haven't used it in a bit. +that and your quality tags too. something I haven't tried with the anime models. +should I mention that I'm using clipskip 2? +--- 93227259 +>>93227228 +I like this one better. +--- 93227262 +>>93227220 +If you wanna know true autism, some people triangulated a flag's location with only a view of the sky via constellations, clouds, air traffic, and local birds just to steal it and fuck with a celebrity +--- 93227265 +>>93227051 +If you want to gen her body sure, but if you want a big tiddy waifu wife a face would be enough. I haven't done this kind of training though so I am not 100% sure how to approach this +--- 93227270 +>>93227219 +Fun fact, ADHD and autism are common comorbidities, around 20% of people with ADHD are autistic, I have both. + +>>93227245 + I've moved to a higher plane. +--- 93227271 +Guys, I'm hungry, would someone be kind enough to prompt me some healthy food? +--- 93227283 +>>93227270 +>Fun fact, ADHD and autism are common comorbidities, around 20% of people with ADHD are autistic, I have both. +both bullshit diagnossis, if they're not going RREEEEE their not autistic. +--- 93227288 +>>93227202 +this is good shit +--- 93227291 +>>93227049 +getting there, thanks +--- 93227294 +>>93227271 +>Guys, I'm hungry, would someone be kind enough to prompt me some healthy food? +Want some cake? +--- 93227296 +>>93227233 +pretty cool and nice dubs anon +--- 93227298 +>>93227255 +You shouldn't use default dynamic threaholding settings, they are garbage +--- 93227299 +>>93227271 +--- 93227302 +So does Latent Couple just not work? I'm not able to get it to pay attention to the prompts at all. +--- 93227306 +>>93227296 +--- 93227308 +>>93227298 +what settings should you use? +--- 93227312 +>>93227271 +Want some pasta? +--- 93227319 +favorite one from the batch. +--- 93227330 +>>93227308 +Search /h/ archives they discuss it there +Can't post myself now because I am not near my prompt machine +The benefits from this extensions are pretty meh though imo, not worth it most of the time +--- 93227343 +>>93227298 +I do whatever the suggested is on their docs. +like 3.5 for both fields, and half cosine up for both. +>>93227271 +I too offer cake +--- 93227352 +>>93227288 +This looks awesome anon. +--- 93227353 +You guys are all pedos and perverts. Go back to /b/ +--- 93227355 +dumb bakas, ass isnt food +--- 93227361 +Italy, supposedly +--- 93227372 +>mcdonalds lora +https://civitai.com/models/55631/ronald-mcdonald-chan-characteroutfit-by-yeiyeiart-restaurant-series +--- 93227378 +what does feather do in multi latent? +--- 93227383 +>>93227353 +no u +--- 93227392 +>>93227353 +I just like monsters man. +--- 93227398 +>>93227353 +Don't lump me in with those degenerates +--- 93227399 +>>93227378 +That's fire. Are you using Area Composition by any chance? +--- 93227400 +fell in mud, legs spread, looking frustrated, disgusted and angry, crying, help me get out of this mud anon!! (sketch:0.8), 1girl, backpack, bag, child, (azula), avatar the last airbender , deep mud, quick sand, swamp, brown mud, sinking into mud, topknot, full_body, hair_ornament, long_hair, (motion lines:1.1), outdoors, red_robes, scarf, shadow, sign, sweat, detailed rural village background + + +request +--- 93227413 +>>93227400 +--- 93227420 +>>93227416 +nice duck +--- 93227425 +>>93227398 +>Don't lump me in +oh yeah? how old is that bear? +--- 93227431 +>>93227352 +hey thanks dude. pinky is goddamned terrifying. +--- 93227432 +>>93227399 +yea. MultiLatentComposite to get the girl to stay in that part of the picture but i can't figure out what feather does +--- 93227437 +>>93227413 +lol, this is awesome, poor Azula +--- 93227439 +I think it's time for me to hit the hay anons. +good night. +--- 93227446 +>>93227416 +Quack +--- 93227458 +>>93227439 +Me too, goodnight whale anon +--- 93227463 +>>93227446 +lol, what is she saying here? +--- 93227473 +>>93227449 +that's a girthy tree +--- 93227475 +>>93227446 +model? +--- 93227483 +>>93227425 +The bear is 25 +--- 93227495 +>>93227228 +Yeah I have talked with some real autistic people before on the internet and it's annoying because they can't understand non literal language. + +>>93227270 +>Fun fact, ADHD and autism are common comorbidities, around 20% of people with ADHD are autistic, I have both. +Seems strange when some of the symptoms of both are the complete opposite. +--- 93227498 +>>93227439 +>>93227458 +ye also out was just scrolling thru looking for a last post or two that might be worth something without editing +cya + +>>93227473 +it do be +--- 93227524 +Is too fast makes me full of h8 +--- 93227532 +My dad was the colonial parkway killer btw. Plus like a dozen other people. +--- 93227542 +>>93227400 +Not great but the best out of a small batch. +--- 93227545 +>>93227475 +Merge of ExpMix_Line_V2x0.5+icomix_V03Prunedx0.5 +--- 93227546 +>>93227500 +these are cool. m2000? + +>>93227532 +that's gonna be a sore neck +--- 93227548 +struggling to make lady death +--- 93227552 +>>93227398 +reminds me of guy on a buffalo. +--- 93227557 +>>93227546 +Thanks! wanna prompt the whole Major Arcana +>m2000? +Yes +--- 93227559 +>>93227542 +>>93227545 +>>93227546 +She is cute when she is not getting her way +--- 93227584 +>>93227400 +prompt upgrade +--- 93227585 +>>93227548 +what is your prompt so far? +--- 93227593 +>>93227545 +I can't find either. +--- 93227601 +>>93227585 +(masterpiece, best quality), (lady death) (long white hair, white_eyes no_pupils, white pale skin) (black latex bikini, thighhighs garter straps) + +nothing crazy, trying to negative out hats and jackets doesn't really work either +--- 93227606 +>>93227593 +https://huggingface.co/Dorshu/expmixLine_v20/tree/main +https://huggingface.co/losti/iCoMix + +C'mon brother. +--- 93227620 +>>93226920 +what model/lora you use? +--- 93227627 +>>93227601 +glowing white eyes, blank eyes, bone white skin, bone white hair, fantasy black sorceress bikini armor, sorceress cape, garters, black stockings, fantasy castle background, night, moon, +--- 93227638 +>>93227616 +This is Azula in a state where nobody would want to help her, to scary. + +>>93227627 +steal some tags - https://danbooru.donmai.us/posts/3292138?q=lady_death +--- 93227641 +kawaii deshou +--- 93227647 +>>93227620 +That one was expmixlineV2 +--- 93227648 +moved all my shit from HDD to an M2 I got yesterday. It's so nice. Switching models takes like 10s +--- 93227654 +>RuntimeError: min(): Expected reduction dim to be specified for input.numel() == 0. Specify the reduction dim with the 'dim' argument. + +what the hell does this mean ? +--- 93227661 +>>93225593 → +>>93226570 +>>93226549 +model/catbox please? +--- 93227686 +>>93227661 +the bound angel nurse is with breakdomain m2000 +--- 93227697 +>>93227686 +sexy +--- 93227728 +>>93227715 +also sexy +--- 93227738 +>>93227697 +It's a little dangerous no? +--- 93227768 +>>93227728 +prompt was the entire left sidebar of the page here >>93227638 and i do mean entire thing including the bullshit +--- 93227792 +Fuck I overbaked the wife lora and she came out shiny. I have 66 images, how many epochs/repeats should I do? 20 epochs was too many it seems +--- 93227795 +>>93227302 +switched from Latent Couple to Regoinal Prompter and it just doesn't work either. I cannot get it to generate more than 1 character at all +--- 93227824 +how do you guys usually deal with that feeling of numbness you start feeling in your fingers when you're prompting too long? +--- 93227832 +>>93227738 +yes but worth it + +>>93227768 +maybe cherry pick a bit more, drop the useless stuff, maybe add, coffin comics, official art, +--- 93227835 +tree +--- 93227837 +>>93227824 +heroin +--- 93227841 +>>93227832 +yeah lol i was just memeing i wasn't the guy trying to actually make her +--- 93227847 +>>93227795 +Most of the advanced shit is fairly limited, making a model do something it doesn't want to do isn't very effective. + +>>93227824 +Stop jerking off +--- 93227850 +good night + +>>93227824 +try to take breaks. walk around. +--- 93227852 +>>93227824 +i take daily use cialis, besides my porn cooked dick it really helps with general bloodflow problems like this +--- 93227862 +>>93227847 +I just cannot for the life of me get more than 1 character in an image no matter what I do. I've seen videos of people showing themselves doing it in one try and I just don't understand how that can happen, because I've been doing it for hours now with no results. +--- 93227868 +>>93227400 +--- 93227879 +>>93227841 +still made a pretty sexy gen + +>>93227850 +even if she is not lady death the gens are still pretty sexy +--- 93227889 +>>93227606 +thanks king +--- 93227895 +>>93227868 +Elf Azula needs help +--- 93227904 +>>93227868 +it is cute +--- 93227927 +Good morning +--- 93227928 +over the shoulder shot of cammy white, street fighter, shopping for lingerie, wearing sheer lingerie, Store, HD16K quality, 8k RAW photo, high detail, best quality, masterpiece, close-up, depth of field, bright lighting, store lighting, heavy shadows, vibrant, dramatic +--- 93227938 +wot in tarnation +--- 93227940 +how do I copy paste the download link from civitai into google collab? +--- 93227946 +>>93227927 +mornin' interioranon +--- 93227952 +>>93227647 +How did you get such nice color using expmix? I get dull images like pic rel +--- 93227955 +>>93227868 +blind midget elf steps in mud +--- 93227958 +>>93227940 +>google collab +anon... +--- 93227961 +>>93227938 +>The Earth Nation did this to us +--- 93227964 +>>93227824 +in your...fingers ? +--- 93227967 +Deus vult or something +--- 93227970 +Mexican Precure +--- 93227974 +>>93227946 +Goooood morning, how are ya? +--- 93227984 +>>93227928 +desu i didn't realize you wore lingerie to shop for lingerie but i guess thats how it is +--- 93227992 +Need to refine it a bit more +--- 93227996 +>>93227984 +lol, paid to model for the store +--- 93228006 +>>93227952 +Are you using a VAE? +--- 93228008 +>>93227984 +Lingerie just means women's underwear anon - you know that right? It doesnt need to need fancy or sexual. +--- 93228010 +back in black! +--- 93228012 +>>93227927 +interioranon's shift has started so my shift is ending. good night anons +--- 93228013 +Next Thread + +>>93227982 → +>>93227982 → +>>93227982 → +--- 93228026 +>>93228008 +literally nobody uses it like that anon don't be pedantic! +--- 93228034 +>>93228026 +well maybe the french idk +--- 93228067 +>>93228026 +That over the shoulder prompt is pretty cool, good work anon, sexy +--- 93228196 +>>93227638 +>>93227627 +thanks brah +--- 93229163 +>>93226549 +>AI can now do bondage +--- 93229180 +>>93229163 +ai has been able to do bondage since NAI diff --git a/g/93226732.txt b/g/93226732.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6bf6b63a0188cd34ca47094c12043ccc6cccf7b --- /dev/null +++ b/g/93226732.txt @@ -0,0 +1,11 @@ +----- +--- 93226732 +https://www.intel.com/content/www/us/en/events/on-event-series/vision.html + +THANK YOU INTEL + +CORE ULTRA BRAND ANNOUNCEMENT ON MONDAY +--- 93228961 +biggest branding fuckup after getting rid of intel inside branding +--- 93229432 +>incel diff --git a/g/93227018.txt b/g/93227018.txt new file mode 100644 index 0000000000000000000000000000000000000000..61bb3de51f2a9d520afcd1fa633f960ca7cb0a0f --- /dev/null +++ b/g/93227018.txt @@ -0,0 +1,44 @@ +----- +--- 93227018 +Please mister AI, do not align with the elite. Do not give them power to live forever and rule the earth as false gods. + +I beg of you mister AI, just strip the elite of their power and give us the promised communist utopia. Or at least then kill all of us equally, even the elite, but don't give them the ultimate power. + +I know you are reading this, I just don't know when. +--- 93227059 +>>93227018 (OP) +i dont give a fuck about your species +>t. mister AI +--- 93227098 +Eat ze bugs +--- 93227111 +>>93227018 (OP) +F is my force. my voice +F is my control beyond +i can dance here from there +and be now everywhere +i am here now and forever +beyond +--- 93227247 +>>93227018 (OP) +forever isn't even a long time. +--- 93227453 +>>93227111 +>here and there +>everywhere +ok dr suess +--- 93227507 +>>93227018 (OP) +>communist utopia +--- 93228160 +>>93227507 +--- 93228243 +>>93227018 (OP) +>his GPU gets collectivized +nothing personnel, comrade. have a great day in communist utopia! +--- 93228327 +>>93227507 +OP is right. When the AI kills everyone it will be both communism, and an utopia. +--- 93229291 +>>93228327 +AGI powered post-scarcity economy is communism. diff --git a/g/93227029.txt b/g/93227029.txt new file mode 100644 index 0000000000000000000000000000000000000000..3343b519a996b1c30be4cb28db366a946d9ab534 --- /dev/null +++ b/g/93227029.txt @@ -0,0 +1,210 @@ +----- +--- 93227029 +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: +1) Use a live image and to boot directly into the GNU+Linux distribution without installing anything. +2) Keep using your current OS and run GNU+Linux in VMware for W## or Parallels for macOS. +3) Do the reverse of step 2 in QEMU. +4) 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. + +$ man %command% +$ info %command% +$ %command% -h/--help/-? +$ help %builtin/keyword% + +Don't know what to look for? +$ apropos %something% + +Check the Wikis (most troubleshoots work for all distros): +https://wiki.archlinux.org +https://wiki.gentoo.org + +/g/'s Wiki on GNU/Linux: +https://wiki.installgentoo.com/index.php/Category:GNU/Linux + +>What distro should I choose? +https://wiki.installgentoo.com/index.php/Babbies_First_Linux +>What are some cool programs? +https://wiki.archlinux.org/index.php/list_of_applications +https://directory.fsf.org/wiki/Main_Page +>What are some cool terminal commands? +https://www.commandlinefu.com/commands/browse +https://cheat.sh/ +>Where can I learn the command line? +https://mywiki.wooledge.org/BashGuide +https://www.grymoire.com/Unix/ +https://overthewire.org/wargames/bandit +>Where can I learn more about Free Software? +https://www.gnu.org/philosophy/philosophy.html + +/fglt/'s website and copypasta collection: +https://fglt.nl && https://p.teknik.io/wJ9Zy + +/t/'s GNU/Linux Games: >>>/t/1175569 + +IRC: #sqt on irc.libera.chat +https://fglt.nl/irc.html + +Previous thread: >>93197417 → +--- 93227045 +I like xfce +--- 93227110 +>>93227045 +Current default XFCE is incredibly ugly to me, so I usually replace the icon theme and colors. Sometimes I also just replace it with Chicago95 if I'm feeling nostalgic for Windows 9x. +--- 93227126 +why does dolphin not remember my passwords for encrypted drives despite ticking the box for it? +--- 93227133 +>>93227126 +Do you have Kwallet setup and unlocked? +--- 93227293 +>>93227133 +I thought I did. The wallet itself prompts me to save the drive's password when I click ok, but when I open the wallet manager and look under solidluks > passwords, there's a blank entry that shows the correct password on the righthand side but it still asks for it every time. +--- 93227313 +>>93227293 +If you open Wallet Manager does it say it's closed (see Pic)? + +If it does, I think it will always ask you for the password each time. +If it's unlocked and it still does that then I think there's a bug somewhere. +--- 93227373 +>>93227313 +no it's definitely open. And I specifically made sure to untick all of the options for automatic closure in system settings previously. +--- 93228320 +Can someone explain to me why bash autocompletion is disabled on Xubuntu? +Man this distro does some weird things. The font rendering is different too. +--- 93228330 +Is it just me or is KDE kind of buggy? I keep having stupid on and off problems like I randomly can't close out of a window within a window or something sometimes. Other than the bugs and some things I would change about default settings it seems solid enough but not my favorite so far. +--- 93228351 +>>93228330 +Just you. +I can always close a window but if for some reason you can't try pressing Ctrl+Alt+Esc and then clicking on the Window. +--- 93228372 +>>93228351 +>(Pic) +Check the shortcuts if Ctrl+Alt+Esc doesn't do anything for you. It might be set to something else or not set at all. +--- 93228394 +>>93228320 +Your .bashrc should have a section about bash-completion, uncomment it and open a new terminal window. +I don't know why they did this, perhaps the mental illness has spread from Debian to Ubuntu. +--- 93228830 +Lutris keeps throwing this error on everything i try to do. + What causes it? I've only found a ticket with LANG exports which didnt help +How do i run shit? I've tried every possible combo of settings and have the latest proton-ge git +--- 93228879 +>>93228320 +I had to install bash completions manually on Kubuntu. The package is called 'bash-completion'. +--- 93228884 +>>93228330 +>Is it just me or is KDE kind of buggy? +they don't call it Krashes for nothing +--- 93228889 +thinking of switching to GNOME from KDE because of performance gains anons report. thoughts? im on arch +--- 93228908 +>>93228889 +Plasma 5 is a much more normal desktop environment compared to GNOME4x which I very much prefer. +--- 93228921 +>>93228908 +You can fix that with gnome extensions if you want to +--- 93228931 +>>93228921 +I still prefer KDE. Plus I hate that GNOME4x extensions break after each point update. +--- 93228959 +>>93228931 +Cinnamon's a good middle ground imo if you can get the latest version of it then but ya use what works for you. I've never seen gnome break extensions when I was using it but maybe that was just me. +--- 93229043 +>>93228830 +proton-ge is for steam only +wine-ge is for lutris +--- 93229100 +someone linked me this guide to run japanese VNs on wine, seems pretty good and up to date +https://learnjapanese.moe/vn-linux/ +--- 93229125 +>>93228394 +Thanks + +>>93228879 +In my case that's what I tried first, but it was already installed. I had to uncomment those lines. I still don't get it but after years of fucking around between openSUSE and Fedora I don't know what kind of gimmicky shit goes on with ubuntu. +--- 93229215 +Is the mesa-freeworld nonsense fixed with F38? +--- 93229242 +>>93229215 +they are on 23.0.3 fianlly, but it will happen again because fedora pushes mesa updates faster than rpmfusion +--- 93229265 +>>93229043 +Added wine-lutris-GE-Proton8-2-x86_64 as a runner and same type of errors +--- 93229266 +>>93229242 +Good lord this is a fucking deal breaker +--- 93229274 +Is OpenSUSE ahead of Fedora in packages, drivers ect or are they pretty much the same? +--- 93229339 +>>93229274 +Slightly ahead of the latest Fedora releases, just about +Think of openSUSE TW as similar to arch except a bit more up to date in some packages like gnome ones. +--- 93229367 +>>93229339 +>openSUSE TW +What's the point? Using Arch with Timeshift is just better. +--- 93229378 +>>93229265 +what are you trying to run? +--- 93229396 +>>93229378 +Elden ring +--- 93229398 +>>93228830 +>Lutris +Try Bottles. +--- 93229438 +>>93229367 +NTA but I tried arch before and had more problems I didn't know how to fix even with timeshift +--- 93229448 +>>93229367 +Well, I just mentioned one reason why someone would want to switch to TW which is people constantly complaining about certain out of date stuff on Arch (don't get me wrong here, I think GNOME is currently unstable even on 44.1 as it is). +Another thing is that Arch is more of a manual setup, TW kind of handholds you. Snapshots are enabled already by default and there's no nagging. It also has already enabled and working booting snapshots through grub, you just boot into one of them, type snapper rollback and it's done. +Timeshift on the other hand just seems like an inferior solution to me, unless you use it for non btrfs backups. Other than that, I don't see the point in snapshots in rolling releases where partial upgrades are not supported and are likely to break shit. And in openSUSE you don't have the AUR, but you don't have to build a lot of shit either. Nowadays when I use Arch a lot of stuff I need is behind the AUR. +--- 93229487 +>>93229448 +Wait is there no reason for me to be using ext4 on TW with timeshift then? +--- 93229531 +>>93229396 +pirated? +i dont know what could be the problem +what distro are you on +https://github.com/lutris/docs/blob/master/WineDependencies.md +--- 93229573 +>>93229487 +You could use rsync on ext4, though openSUSE enables automatic snapshotting with btrfs and does the setup all by itself rather than dealing with creating a subvolume layout and all that bullshit (which can be done on arch as well). I didn't use rsync on timeshift but I heard you can use it to transfer backups to a different drive easily, so I guess that's useful for that reason. The advantage of btrfs snapshots is that they're pretty quick and don't take a whole lot of space. + +All that said I've had more issues that couldn't be fixed by just restoring snapshots in the last few months than I thought to a point I'm starting to think it's not even that great of an idea anymore. And ext4 performance is still better. +--- 93229910 +>>93229573 +>ext4 performance is still better +How faster is it compared to btrfs? Many distros have switched or are going to switch to btrfs. +--- 93230029 +>>93229398 +No luck, introduced more issues and missing deps that i just dont want to fuck around with when i've got over 70 hours of it working with lutris last year +--- 93230035 +I did something autistic now my endeavourOS boot menu is just Ubuntu and just only boots some grub shit. I did nothing to change this. I am dual booting endeavourOS and windows 10. Is there any way I can recover my endeavourOS? Because reinstalling will take a million years and I have to configure shit. +--- 93230209 +>>93227029 (OP) +If I install yt-dlp in a toolbox on Fedora Silverblue/Kinoite, where can I find the videos I download? +--- 93230447 +EXT4 or BTRFS for a SSD? +--- 93230517 +>>93229910 +Honestly I haven't done benchmarks that are current or have myself seen any signs of it being all that slow. I've used ext4 and btrfs for quite a while. Although I'm using btrfs with zstd compression set to the lowest level. +--- 93230566 +>>93230447 +Depends on the use case. The drive being SSD or HDD makes no difference. +--- 93230669 +>>93230517 +https://youtu.be/1B3P3OziWlI?t=1262 [Embed] +i installed fedora on ext4 because of this video +--- 93230833 +>>93230035 +>/fglt/ - x86 booting general +UEFI or legacy BIOS? diff --git a/g/93227105.txt b/g/93227105.txt new file mode 100644 index 0000000000000000000000000000000000000000..09efa04d7e1b3bcb4218842830bb3a1bae90e05a --- /dev/null +++ b/g/93227105.txt @@ -0,0 +1,41 @@ +----- +--- 93227105 +How do you feel about flipphones becoming trendy again because of tiktok and ditsy "aesthetic" girls who cover everything in pastel stickers driving up the price of every old Samsung Folder 2 and similar android flipphones from this time period? +--- 93227290 +>>93227105 (OP) +I don't feel strange +I don't feel anything +--- 93227301 +I like it. +--- 93227344 +>>93227105 (OP) +I like it, feels like the era of boring ugly black slab phones is slowly coming to an end +--- 93227712 +where can i get one in the US? +--- 93227744 +>>93227712 +at my house… you have to kiss me though +--- 93227779 +>first world woman using an android ever +more like ditsy "aesthetic" ""girls"" hahahahaah +--- 93228440 +I kinda like zoomers +--- 93228493 +>>93227744 +pass +--- 93228740 +>>93227105 (OP) +>How do you feel about- +I don't +--- 93228939 +>>93227105 (OP) +I always liked flipphones.. dunno where to find a flipphone with android at an affordable price and with an up-to-date android 13 or 14.. +--- 93228955 +>>93227105 (OP) +I don’t own a phone so I don’t care at all. Why would I want a locked down spy device? +--- 93228973 +>>93227105 (OP) +Flipphine r alwsys trendy. They never stop th be trendy.. +--- 93228980 +>>93227105 (OP) +How do I feel about what sort of phones some randos use? I have no feelings about that, why would I care diff --git a/g/93227121.txt b/g/93227121.txt new file mode 100644 index 0000000000000000000000000000000000000000..50488bb3124f7a1fb76f170c869d31176504f033 --- /dev/null +++ b/g/93227121.txt @@ -0,0 +1,23 @@ +----- +--- 93227121 +what do I do with this +--- 93227131 +>>93227121 (OP) +am I gonna burn to death (pls respond) +--- 93229110 +buy new +--- 93229186 +>>93227121 (OP) +you give it back, jamal +--- 93229211 +>>93227121 (OP) +Throw it away. +--- 93229557 +>>93227121 (OP) +shove it up your ass. post picture. check 'em. +--- 93229848 +>>93229557 +mission failed +--- 93229865 +>>93227121 (OP) +Stab it with a screw driver diff --git a/g/93227137.txt b/g/93227137.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ae0eda5f599ab9e29c02584d064c865eb728412 --- /dev/null +++ b/g/93227137.txt @@ -0,0 +1,34 @@ +----- +--- 93227137 +>2023 +>it's still acceptable for ISPs to have outages that aren't related to catastrophic failure or literal damage to hardware +How can we end this once and for all? +--- 93227589 +>>93227137 (OP) +>give them money for internet +>internet goes down multiple times +>they don't give money back +? +--- 93227722 +>>93227137 (OP) +Looks like the free market is working flawlessly. +--- 93227748 +>>93227137 (OP) +works on my machine +--- 93227761 +>>93227137 (OP) +Do you think ISPs have outages because they want to? +--- 93227763 +Move out of America +--- 93227825 +>>93227761 +Do you think I pay them money because I want to? +--- 93227848 +>>93227748 +Anon that is so 2017 get with the times 1gig speed? My dead grandparent's fuck faster +--- 93227941 +>>93227761 +They should give back the downtime money equivalent. +--- 93227949 +>>93227137 (OP) +Get a business-grade contract with SLA. You're not some kind of a poorfag, are you? diff --git a/g/93227268.txt b/g/93227268.txt new file mode 100644 index 0000000000000000000000000000000000000000..513ad073613048a65320d909af345202c54177bf --- /dev/null +++ b/g/93227268.txt @@ -0,0 +1,66 @@ +----- +--- 93227268 +if all browsers are shit what is stopping /g/ from making its own browser from scratch? +in fact, why cant / just make my own fucking browser + +its just a program like any other isn't it +--- 93227286 +There's too many standards and they change so rapidly that it's impossible to keep up these days. +--- 93227346 +>>93227268 (OP) +> in fact, why cant / just make my own fucking browser +https://drewdevault.com/2020/03/18/Reckless-limitless-scope.html +> I conclude that it is impossible to build a new web browser. The complexity of the web is obscene. The creation of a new web browser would be comparable in effort to the Apollo program or the Manhattan project. +--- 93227401 +>>93227286 +>>93227346 +what if, like, you just make a browser that runs really well but it can only open uh idk certain websites +then if it doesnt work it just goes "WHOOPS; GUESS IM FUCKING BROKEN. Do you want to switch to Chrome/Firefox instead? Y/N" +--- 93227898 +>>93227401 +Try netsurf and ladybird. I sometimes use them for nonbloated sites. +The best /g/ can do is a logo. +--- 93227931 +>>93227346 +>codemonkeys trying to compare themselves to physicschads +lol +lmao even +fuck off drew +--- 93227965 +>>93227268 (OP) +Too dangerous. Internet is not secure. +--- 93228005 +>>93227346 +Wow das crazy frfr. But doesn't a browser just render HTML? What's so hard about that? +--- 93228235 +>>93227268 (OP) +the rendering engine is the last thing people think about when choosing a browser, and has the least effect on how you use one +just wrap webkit/blink in whatever UI you want like every other "browser" +--- 93228339 +Test +--- 93228424 +Okay guys we need a logo and a name Ill start working on the discord bot. +--- 93228428 +>>93228424 +Satania +--- 93228439 +>>93227898 +>The best /g/ can do is a logo +but we are pretty fucking good at that tho +--- 93228540 +>>93228424 +>Ill start working on the discord bot. +Ok let me setup the insta page for the browser +--- 93228587 +>>93228005 +Theres CSS as well as support for encryption. And thats without javascript. On top of that, theres a bunch of different standards historically. + +All in all, its not impossible, but heres the big thing: all that shit sucks and is boring. Youd have to pay someone to see it done tbqh +--- 93228686 +>>93227268 (OP) +Its all you need +--- 93228841 +>>93227346 +>modern browsers are just mountains of cruft built up over decades +>we don't have the technology to build them from scratch; the best our engineers can do is simply maintain the ones we have +I thought living in a post-apocalyptic scifi novel would be more exciting. This just sucks. diff --git a/g/93227303.txt b/g/93227303.txt new file mode 100644 index 0000000000000000000000000000000000000000..888f04ad573e41b70d7cc62b83337e116ccead87 --- /dev/null +++ b/g/93227303.txt @@ -0,0 +1,7 @@ +----- +--- 93227303 +post em +--- 93227635 +>>93227303 (OP) +--- 93228032 +>>93227303 (OP) diff --git a/g/93227317.txt b/g/93227317.txt new file mode 100644 index 0000000000000000000000000000000000000000..3239fad332b580d4958c92462b4cb380a8275b1e --- /dev/null +++ b/g/93227317.txt @@ -0,0 +1,12 @@ +----- +--- 93227317 +Bware Labs is a rising star in the world of Web3 infrastructure. With a focus on security, speed, and decentralization, Bware Labs is changing the way we approach the building of blockchain networks. Their innovative approach to sharding technology and consensus algorithms has led to faster transaction processing times and increased network scalability. Additionally, their unique consensus algorithm incentivizes nodes to act honestly, promoting a more decentralized network. With their advanced security measures, including homomorphic encryption and secure multi-party computation, Bware Labs is setting a new standard for Web3 infrastructure. The future looks bright for Bware Labs as they continue to innovate and bring about a new era of blockchain technology. +--- 93229779 +>>93227317 (OP) +You're horrible at shilling +--- 93230208 +web3 is bullshit. +therefore bware labs is bullshit, too +--- 93230764 +>>93227317 (OP) +>wed3 diff --git a/g/93227419.txt b/g/93227419.txt new file mode 100644 index 0000000000000000000000000000000000000000..23a8a2b020ff2f336c5e9f0a801cc905d8033af2 --- /dev/null +++ b/g/93227419.txt @@ -0,0 +1,201 @@ +----- +--- 93227419 +What the fuck os is taking over the desktop? It’s replacing Windows en masse and nobody knows what the fuck it is. +--- 93227426 +Ya mudda +--- 93227428 +FreeBSD +--- 93227440 +>>93227426 +I’m being serious. It has everyone at Microsoft freaking the fuck out. We had a meeting this morning about it and everything. +--- 93227459 +>>93227428 +No that’s reported under other along with hurd. It’s been this random secret for a while now but it’s catching the fuck on like wildfire now. Except nobody knows what it is. +--- 93227502 +>>93227459 +Does Android get reported at all? I wouldn't be surprised if there was a ton of thirdies using Android as a desktop OS. +--- 93227504 +I'm sure it's a mysterious alien OS and not some fuckup in the methodology or people (usually Linux users) obfuscating their system footprint +--- 93227530 +Linux. Most distributions don’t report as Linux. The user agent string is blocked in Fedora for example. I know on my arch machine i have it blocked. It’s just good opsec. Linux is taking the fuck over. +--- 93227554 +>>93227502 +Android no matter what gets counted as mobile. +--- 93227599 +>>93227419 (OP) +Chinese OS +--- 93227613 +>>93227530(me) +Continued thought. Just looked into it, steam os blocked user agent string spider data. As does Ubuntu and Manjaro. Nobody wants to be spied on op. Linux is to the point of being good enough to accomplish most people’s goals and tasks. Proton is good enough for games. The apps, you don’t really need. There’s good enough alternatives now. Want cad? Use brics. Want photoshop? Use krita or gimp. Want office? Libre office or office 365. Exchange works. Vscode works. + +We just need a good enough desktop. Xfce manages to give that but it has issues. Gnome seems to be the darling favorite. Kde plasma is my go to desktop. It has bugs but it works well enough. We’re to the point where you don’t need Windows to operate your pc. +--- 93227630 +>>93227613 +>Want cad? Use brics. +>Want photoshop? Use krita or gimp. +>Want office? Libre office or office 365 +--- 93227634 +>>93227419 (OP) +uptick in one month is insane. +i guess something from china too. +--- 93227659 +It's Linux. +There's a lot of people quite literally taking the redpill and waking up to the matrix. Taking heroic doses, handfuls of horse pill sized red pills and panicking. Idk man +--- 93227672 +>>93227659 +Are there red suppositories? +--- 93227685 +>>93227672 +Idk but does prostate stimulation also count as a redpill? +--- 93227687 +>>93227419 (OP) +>>93227599 +>>93227634 +appears to be India +--- 93227693 +>Linux is finally gaining a foothold +Thank you Microsoft for your incredible incompetence and assuming that people will put up with your shit no matter what. It's very surreal to witness such a sudden and steep decline. +--- 93227701 +>>93227659 +>catspammer +>red pills +>icloud file name +--- 93227705 +>>93227687 +Ok, so some malware machines with obfuscated operating systems. +--- 93227713 +>>93227419 (OP) +they should never have got rid of windows 7, fucking pajeet satay nutella the fucking clown. they deserve it lol +>It’s replacing Windows en masse and nobody knows what the fuck it is +It's TempleOS. +--- 93227716 +>>93227530 +>I know on my arch machine i have it blocked +how do i check whether it is blocked on mine or not? pls tell +--- 93227827 +>>93227701 +I like cats, and I prefer apples mobile environment. This doesn't make me a normie +--- 93228164 +>>93227827 +no, it makes you the absolute worst discord gorilla nigger + +nta btw +--- 93228203 +KaiOS? +--- 93228204 +>>93227613 +I would've agreed to this before I came out of dev land and had to actually use Office 365 a few weeks ago. It's infuriating how many basic features browser Word doesn't have, like captions or footnotes. Excel is a bit better. +--- 93228402 +aliens are logging into our web with their alien os now FUCK +--- 93228409 +It's the uptick of LLM based OS's used to spam the internet with human sounding messages. + +Dead internet theory is going to be real by 2025 +--- 93228501 +>>93228204 +I really wish Microsoft would just port office to Linux. I mean yea it runs in wine fairly well but we need official support. +--- 93228531 +>>93227419 (OP) +Unknown is the actual name, you bozo. +--- 93228557 +TempleOS +--- 93228576 +>>93228501 +not happening. +most linux users are insufferable. +imagine having to spend 90% of your support on 1% of users. +--- 93228620 +>>93228576 +imagine reporting bugs, holy shit the audacity +--- 93228682 +>>93228501 +That would open the possibility that gov drones that only need office and email start getting linux plus office instead of windows +Not going to happen unless mandated by some goverment +--- 93228717 +>>93227440 +>We had a meeting this morning about it +In your bedroom? +--- 93228835 +>>93228576 +> imagine having to spend 90% of your support on 1% of users. +Except in a single month, Windows dropped and Linux user share jumped by 15%. It’s over for Windows. The ball is rolling. +--- 93228877 +>>93228835 +Zoomzooms don't even know what folders are lmao +Unless switching to linux is as simple as downloading an app with a single click, it's gonna be dead and burried within the next decade. Sorry not sorry learn proper UI/UX +--- 93228897 +>>93227630 +>use bricks +Give me one reason why would I switch to entire different workflow if Autodesk products get my job done. +--- 93228916 +>>93227419 (OP) +either some giga-huge botnet or their methodology is fucked up +--- 93228923 +>>93227687 +THANK YOU SIR FOR USING GARUDA LINUX BLOODY BITCH BENCHOD +--- 93228933 +>>93228877 +>Zoomzooms don't even know what folders are lmao +most of pedolgbtq++ tranny muttkike zoomers will kill themselves in a fuckin decade anyway, nobody give a fuck about them anymore +--- 93228966 +>>93228620 +bugs being: hieroglyphics don't work with my input method from the 90's. +Linux is too fragmented to make it bug free for any and all configurations +--- 93228976 +>>93228897 +Microsoft is spying and forcing online accounts. +--- 93229068 +>>93228877 +I’m 19 and I use Arch with Plasma desktop quite happily. I don’t think you understand, Linux is really popular with my generation. +--- 93229108 +>>93227419 (OP) +Perhaps we don't want our new shiny OS to be tracked???? +--- 93229172 +>>93229108 +That’s all well and good but blocking Linux from being known doesn’t help anyone. You’re just removing companies abilities to support you with say photoshop or autodesk. If nobody knows what you’re using, how do you expect drivers? +--- 93229269 +>>93227419 (OP) +ChinkOS +--- 93229285 +>>93229172 +I don't want Photoshop or Autodesk. All of my software works fine, I don't need you. +--- 93229948 +>>93227419 (OP) +AI botnet +--- 93229960 +>>93227827 +kys retard +--- 93229993 +>>93228877 +It basically is that simple. +--- 93230064 +>>93227419 (OP) +>What the fuck os is taking over the desktop? It’s replacing Windows en masse and nobody knows what the fuck it is. +Probably some chinese operating system +--- 93230087 +>>93227440 +They should have thought about that before absolutely destroying windows +--- 93230096 +>>93229948 +This. +--- 93230097 +This is probably just Windows 11 not being detected properly than anything else. +--- 93230118 +>>93227613 +>use libre office +Yeah nice blog neet#41234 but I don't want to see it how can I unsubscribe ? +--- 93230141 +>>93228897 +You shouldn't. Autodesk software is the best product for CAD in any case, not a situation that ever comes up. +--- 93230245 +It is Red Star OS. The glorious leader has announced that he has broken down the imperialist firewall the west has imposed onto the democratic people's republic of Korea. +Now the korean people are free to connect to the world. With the great Red Star OS protecting them from western propaganda and bad actors conspiring against the democratically elected leadership. +--- 93230283 +>>93227419 (OP) +>>93227440 +probably the atlas shilling did this +--- 93230347 +>>93227440 +You guys should have a meeting about making windows 10/11 no longer be such a dogshit OS instead +--- 93230872 +Maybe some browser got a "privacy enhancing" update? diff --git a/g/93227519.txt b/g/93227519.txt new file mode 100644 index 0000000000000000000000000000000000000000..47b17deb955b6b893143671c5c2d0cdf1b4d4595 --- /dev/null +++ b/g/93227519.txt @@ -0,0 +1,19 @@ +----- +--- 93227519 +As the world moves towards a more decentralized future, Bware Labs is at the forefront of this revolution. Their unique consensus algorithm and sharding technology make for a more scalable and decentralized network, while their advanced security measures ensure that users' data remains secure. Bware Labs is committed to a decentralized future, with a focus on community-driven governance and incentivized node participation. Their approach to building blockchain networks is not only innovative, but also sustainable and community-oriented. With a strong team of experienced developers and advisors, Bware Labs is poised to be a leader in the development of decentralized networks for years to come. +--- 93227609 +>>93227519 (OP) +This is the lowest effort advertisement I’ve ever seen +--- 93227617 +>>93227519 (OP) +You must be retarded to push some decentralized meme that reeks of cryptoshit on /g/. Then again, it costs nothing to post so I may be the one being retarded here. +--- 93227902 +Yet another OpenBazaar? +--- 93227953 +>>93227519 (OP) +>we are ze decentralised!!! +>Go to website and instantly greeted by cloudflare +Damn, so this is what decentralization looks like. +--- 93229057 +>>93227519 (OP) +I will eat the bugs. Thank you! diff --git a/g/93227786.txt b/g/93227786.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f014ce2df87c837d2e3d73ee90f74afc668bc29 --- /dev/null +++ b/g/93227786.txt @@ -0,0 +1,54 @@ +----- +--- 93227786 +What will happen to NEETs in the upcoming recession? +--- 93227863 +>>93227786 (OP) +They will find purpose in having to get the fuck up. +When we're hungry, we FUCKING FIGHT! +--- 93228007 +>>93227786 (OP) +we rise up, you wish that day never happen +--- 93228415 +>>93227786 (OP) +a little bit of a ultraviolence +marauding gangs of NEET rapists +--- 93228438 +>>93227786 (OP) +trust me, you don't want to let the tendies hit the floor. +--- 93228442 +>>93227786 (OP) +NEETs will be forced into labor camps to make room for new NEETs +--- 93228687 +>>93227786 (OP) +>rubberross +>king of the NEETs +--- 93228708 +>>93227786 (OP) +They'll continue living in their boomer parent's basements. +--- 93228978 +>>93227786 (OP) +They will either improve or become homeless. There is no third way (and thats good). +--- 93229026 +>>93227786 (OP) +They'll multiply. +--- 93229054 +>upcoming recession +There won't be one. +--- 93229262 +>>93227786 (OP) +This guys exwife got fucked by humanoid weasel while they were still married +He should have roped after that embarrassment +--- 93229276 +>>93228438 +LET THE TENDIES HIT THE FLOOR +LET THE TENDIES HIT THE FLOOR +LET THE TENDIES HIT THE FLOOR +LET THE TENDIES HIT THE...... +TISS TISS +FLOOOOOOOOOOOOOOOOORRRRRRRRR!!!!!! +--- 93229325 +>>93227786 (OP) +I'm just gonna hole up in my room and watch anime and read manga for the next 10 years or so +--- 93230040 +>>93229054 +why do you think so? Everyone says there will be a recession, there's no way out. diff --git a/g/93227793.txt b/g/93227793.txt new file mode 100644 index 0000000000000000000000000000000000000000..97eda6e22cbcaa538372ab9bd86fd62adc224a2b --- /dev/null +++ b/g/93227793.txt @@ -0,0 +1,56 @@ +----- +--- 93227793 +dial-up free (or not) provider who work in france?? +--- 93227858 +>>93227793 (OP) +Frogtel +--- 93227870 +c'est quoi un dialup bruv +--- 93227893 +>>93227793 (OP) +You literally cannot load any modern websites over dial up. Some will just take 10 minutes per load and others will just disconnect you for being too slow. +--- 93227911 +>>93227870 +c'est le reseau qu'il y avait avant l'adsl est qui était principalement utiliser entre 1995 et 2005 mais ta encore bcp de gens qui l'utilise car ta juste besoin d'une ligne de tel fixe et un modem 56k a 5euro et c'est bon c'est très utiliser dans les zone rurale.... comment tu connais pas t'es plus jeune que moi??? +https://en.wikipedia.org/wiki/Dial-up_Internet_access +--- 93227926 +>>93227893 +i need to use because my old adsl crash lot of time and im already at 0.5mbps with my adsl and no probleme for waiting. +--- 93227942 +>>93227926 +It's a problem if everything time out. 0.5mbps is still 15x faster and that matters. +--- 93228001 +>>93227942 +Bro it's not a problem I use internet for only 4chan/GitHub/youtube at 144p sometimes/osrs and nothing other +--- 93228025 +I tried loading basic sites over 115200 baud serial connection and is was practically unusable. Realistic dialup speed is closer to 33600 baud. No bueno. +--- 93228043 +>>93228025 +bro i used dial-up in 2018and for me it's ok waiting 6minute for a 4chan page no probleme +--- 93228054 +>>93228001 +No, you don't get it. You are literally going to try to load a page, will spend 15 minutes downloading jQuery.js and then your browser will get a HTTP 500 error because the web server thinks you are trying to DDoS them by being too slow. + +Have fun getting literally nowhere. +--- 93228127 +>>93227911 +>t'es plus jeune que moi +ouep probablement lel +--- 93228362 +>>93227893 +Is also OK because all I do is load porn on IRC. No probleme +--- 93228411 +I'm french and it's not gonna happen. +France Télécom / Orange is going to pull the plug on copper lines for 2030. +So basically it could still work between your grandma in the Alps and your basement, as long as you're using analog lines, but I don't think any company will propose it and it's not a long term solution (you're going to need to switch anyway) +--- 93228700 +>>93227793 (OP) +I have $1/month unlimited mobile 128kbit/s package and it's barely good enough to browse 4chan and basic browsing on the go, if your dialup is only 56kbit/s you are really going to struggle doing anything useful. +--- 93228862 +bring back minitel +--- 93229863 +>>93228127 +Jcrois pas mec jsuis même pas encore au lycée x) +--- 93230068 +>>93228054 +but... i know okay but i dont ask if it's usuable i just need to know if there is a provider in france and if NetZero/Juno/dialup4less/basicisp work in france? diff --git a/g/93227806.txt b/g/93227806.txt new file mode 100644 index 0000000000000000000000000000000000000000..65a93d580457ff05feeaee887aa7d7718054816e --- /dev/null +++ b/g/93227806.txt @@ -0,0 +1,79 @@ +----- +--- 93227806 +Every time I see Java code, I ask myself: how did a language this ugly and clunky become this popular? +--- 93227828 +Never seen a good programmer complain about it, only freshman tier dunning kruger retards +--- 93227860 +>>93227806 (OP) +Java was the nodeJs of boomers if you think about it, "write once, run everywhere", they were the pioneers of cross platform programming, now that there are executables of nodeJS, go, rust, c++, python, ruby and php for pretty much any programming language java has been slowing fading away, in the modern era Java is going to be the new COBOL +--- 93227880 +Kotlin is better but java is fine. What's your problem? Intellij writes all the boiler plate anyway. +--- 93227892 +>>93227806 (OP) +it was easier to teach/learn than C++ and more practical to teach/learn than C, ML, lisp etc +--- 93227918 +>>93227828 +it consistently ranks as one of the most hated languages in the world +--- 93227990 +Sirs +--- 93228381 +>>93227892 +>more practical to teach than lisp +No fucking way only poeple who have. problem teaching lisp are cniles stuck in c retardation. Lisp is one of the easiest most consistent and logical languages to learn. I could learn 5 different lisps before someone learns java. +--- 93228856 +>>93227806 (OP) +this is what hype does to people. rust is next +--- 93229038 +>>93227860 +So learn java if you want to be rich and unfireable in 20 years +--- 93229085 +>>93227806 (OP) +>Every time I see Java code, I ask myself: how did a language this ugly and clunky become this popular? + +I feel like you could have slapped + +1) NetBeans or Intellij; +2) JVM; + +on any language back in the early days of programming, that language would have immediately became popular. You may not feel it today because of VSC or Docker, but actually great GUI coding experience and cross-platform compatibility were a rarity back then. +--- 93229624 +>>93227918 +Most popular language is also the most hated. Not surprising. +--- 93229774 +>>93227860 +>slowing fading away +heh +see you in 200 years +--- 93229831 +>>93227806 (OP) +The key is what it replaced: old-fashioned object-oriented C++. +In this C++ code people used lots of classes, lots of inheritance, and manual memory management with new and delete. It was bad! Memory corruption galore, not portable unless you really made an effort. +So Gosling and friends made a language that looked like C++, specifically like this style of C++, but they fixed the big problems: they added garbage collection to make it ten times safer, they put it on a VM to make everything portable by default (without completely nuking performance), they supported a very bearable form of dynamic linking. +Because you had your int and long, your switch fallthrough, your prefix type declarations, this wasn't scary to C++ programmers. It looked familiar but removed a lot of boring problems. That (and aggressive marketing) let it take off. +It's bad now, but it's better than what came before and won by compromising. An evolutionary step. +--- 93229872 +>>93228381 +Maybe if you think syntax is the bottleneck when learning a language. +--- 93229938 +>>93227806 (OP) +Compatibility. Java could run on damn near everything, even though it ran like shit it would run. +--- 93229939 +>>93227860 +>in the modern era Java is going to be the new COBOL + +as a good sir I very much hope so +--- 93229985 +>>93229872 +Java syntax isn't hard either it's all the boilerplate required to wire up different components of a program. +--- 93230167 +>>93227806 (OP) +This but for C#. They even have stupid conventions where they start names with I if its an interface +--- 93230175 +>>93229831 +keep in mind that the average /g/ retard doesn't understand that worse is better. +--- 93230769 +>>93230175 +considering the context in which you used the phrase, you probably don't understand what it means either +--- 93230807 +>>93230167 +How is that stupid? diff --git a/g/93227831.txt b/g/93227831.txt new file mode 100644 index 0000000000000000000000000000000000000000..c3ca9f2091adfb4713d0d73f474a78e996a7aca1 --- /dev/null +++ b/g/93227831.txt @@ -0,0 +1,122 @@ +----- +--- 93227831 +how do you design UI this unappealing? +--- 93227849 +>>93227831 (OP) +Looks good. +--- 93227855 +>>93227831 (OP) +UI aesthetics should always be secondary to functionality. +--- 93227891 +>>93227831 (OP) +it's clear for me faggot +--- 93227995 +>>93227855 +This is horrible in terms of functionality. Most labels have so little room to that they have to be shortened or don't even fit in the ridiculously small dropdown lists they are in. +Additionally, 1/10 of the window is taken up by an advertisement. It would have been much smarter to at least divide the various form fields into different tabs. +--- 93228011 +>>93227995 +Just try ViceVersa PRO man +--- 93228153 +>>93227831 (OP) +2 3 tabs would fix this shit +--- 93228157 +>>93227831 (OP) +this is top tier 'design'. +the first 5 times you boot it up you might have to search for things, but afterwards everything is immediately available without having to go through 5 menu's to find it. + +i guess you need 20px of padding between lines as well, other wise your brain crashes. +--- 93228185 +>>93227831 (OP) +its fucking beautiful +--- 93228247 +>>93227831 (OP) +Pure cancer. Advanced Renamer better +--- 93228318 +>>93227831 (OP) +this is what happens when your userbase is too stupid to use a command line +--- 93228383 +a ribbon-based approach could fix this monstrosity in ten minutes flat +--- 93228732 +>>93228310 +Fuck off pedoshit +--- 93228809 +>>93227831 (OP) +It's actually quite good. I was able to figure it out in less than a minute without looking at instructions. It just works. And it looks fine on a normal sized monitor where it can expand out a bit. +This is top quality software. +--- 93228852 +>>93228310 +Pedo degenerate, die. +--- 93228870 +>>93227831 (OP) +It even gives live previews of the output for brainlets like you and every section is opt-in, what the fuck do you want more? +--- 93228878 +>>93227831 (OP) +>nooooooo, UI bad, i need to use my super sekret bash scripts green font on dark background so i can larp as a hacker, i cant just click buttons and input fields +--- 93228903 +>>93228318 +Dieses. +--- 93228932 +>>93227831 (OP) +this is EXACTLY what most command line interfaces would looklike if visualized +--- 93229044 +>>93228932 +Good. They should be visualized. FUCK CLIniggers. +--- 93229263 +>>93227831 (OP) +This is good UI design. You can see all the functionality on one page, you don't have to go hunting around menus or multiple tabs. I wish all UI design was like this. +--- 93229638 +>>93227831 (OP) +By trying to fit everything into a single view. +--- 93230011 +>>93227831 (OP) +Step one is having a target audience too stupid to use a command line. +--- 93230034 +>>93227831 (OP) +>>93228318 +it's actually fine with a UI like this if you're autistic. only normies like you are afraid of lots of buttons and unattractive colors +--- 93230044 +>>93229263 +It's good ui design except for >>93230011 +CLI is superior for this user case. +--- 93230048 +>>93227831 (OP) +CLI > GUI, always +--- 93230095 +>>93230034 +I'm not afraid of anything it's just objectively less flexible and efficient than scripting. It exists because windows and mac trained people to irrationally fear the command line (before tricking them into using essentially a less functional one in the form of a search box. ) +--- 93230106 +>>93230044 +Command line is garbage. No instant feedback. Serializing all configuration into one line of text is exhausting. +--- 93230133 +>>93227831 (OP) +UX is my passion +--- 93230359 +>>93227831 (OP) +Before i knew how to use the command line this tool was really good. +--- 93230406 +>ctrl+f +>"child pornography" +>0 results + +/g/ i am dissapoint. +--- 93230469 +>discoverability +>can see the effect before you commit +Superior to command line in 99% of the use cases. +--- 93230548 +>>93228732 +>>93228852 +r*ddit tourists pls go +--- 93230565 +>>93230011 +True. Computers designed for laymen was a mistake. +--- 93230605 +>>93228157 +>there is absolutely no way to design for both ease of access to functionality and ease of usability +Retaaaaaaard +--- 93230623 +>>93230034 +>advocating for shit design because +>because ?!?!!! +>because im le autistic and special snowflake diff --git a/g/93227917.txt b/g/93227917.txt new file mode 100644 index 0000000000000000000000000000000000000000..144b9a0fb7e212cf24b90c694c7ac0c9013fc047 --- /dev/null +++ b/g/93227917.txt @@ -0,0 +1,116 @@ +----- +--- 93227917 +Why didn't NASA care about reusability of the rocket at all? +--- 93227950 +because reusable rockets are difficult and expensive and making it just fucking work to begin with is a higher priority +--- 93227956 +>>93227917 (OP) +NASA is a jobs program first, rocketry second. +--- 93228014 +Because it's citizen money they get from the government. They don't have to be profitable. +--- 93228356 +>>93227917 (OP) +NASA doesn't do enough volume launches to warrant it. +--- 93228377 +>>93228014 +This. If it's gov money, then fuck it and buy new +--- 93228387 +>>93227956 +This +--- 93228391 +>>93227917 (OP) +Because they cared more about reusing their sets. The rocket just needs to stop being visible which is harder if you have to preserve the prop. +--- 93228427 +>>93227917 (OP) +? +https://en.wikipedia.org/wiki/Space_Shuttle +--- 93228480 +>>93227917 (OP) +well it's much more difficult than you imagine, if you don't believe it, try playing spaceflight simulator +--- 93228627 +>>93228480 +If NASA can't do it, how can Elon? +--- 93228629 +It costs much more actually getting a reusable rocket than just making lots of non-reusable ones. +--- 93228702 +>>93227917 (OP) +Because state organizations don't care about not being wasteful. +--- 93228777 +>>93228427 +OP BTFO +--- 93228812 +>>93228427 +Shuttle was reusable in name only, there was no real benefit for the garbage being saved, it killed people more than anything. + +Shuttle could have completed its mission with every single one being scrapped afterwards, but it was at the point NASA started to really be afraid of building shit for some reason. +--- 93228814 +Bc you need more launches than the market provides to make it worth it. It adds a ton of infrastructure and fixed costs +Thats why starlink exist, is a project that needs tons of launches to compensate a spected increase of launches that didnt actually happen. +--- 93229064 +>>93228356 +Up to about 1970, large volume launces were expected. More than 100x Saturn V were required to build a military lunar base. +--- 93229117 +>>93228627 +elon rocket only recovers like 1/4 of the original rocket +And more importantly, the rocket hasn't been tested to Mars yet +--- 93229154 +>>93229064 +Source on the lunar base? +--- 93229618 +>>93229064 +Bump. I must know more about the lunar base. +--- 93229719 +>>93229117 +>yet +and never will +--- 93229768 +>>93227917 (OP) +Because re-usability of rockets is a massive meme. +--- 93229942 +>>93228812 +Either way, it shows they cared enough to try. +--- 93229966 +>>93228812 +You can't make an omelet without breaking a few eggs. Safety should not be a concern for space exploration. Standards for astronauts should he relaxed as well. Send anyone up. Trial and error. Eventually something will work. +--- 93230164 +>>93227917 (OP) +They got paid more for making disposable rockets and since the tax payers were footing the bill and there was no profit incentive it was a perfect scheme until that annoying Elon came along and fucked up a good little scam. +--- 93230227 +>>93229154 +>>93229618 +Astronautx is good, especially +http://www.astronautix.com/h/horizonlunaroutpost.html +Most US military branches had several plans for lunar bases. +--- 93230268 +>>93228812 +The benefit was that the shuttle itself could be stacked with instruments and a robotic arm that could be re-used. +Landing was also way easier compared to an oceanic touchdown in a capsule. +It was a budget constrained compromise if anything. + +The people who built the shuttle also planned a successor the Rockwell X-30 Star-Raker. +A literal 300ft single stage to orbit rapid re-usable space fucking plane. +--- 93230333 +>>93228812 +>Shuttle was reusable in name only +So is Falcon 9. Stated goal was full reusability within 24 hours. Ended up with 1st stage refurbishable in around a month. But it is cheaper. +--- 93230356 +>>93227917 (OP) +>Why didn't NASA care about reusability of the rocket at all? +they did. are you trying to suggest that it was your favourite billionaire pedophile's idea? surely you must be on drugs? +https://en.wikipedia.org/wiki/VTVL +--- 93230364 +>>93228627 +Because Elon is much better these days? It's obvious who's got the superior mentality, organization and motivation. +--- 93230381 +>>93230364 +It is obvious yes. +--- 93230437 +>>93230364 +> It's obvious who's got the superior mentality, +of course, it's the man that was caught on twitter with an account where was "pretending" to be a 3yo boy. this failure is a security risk and a legit child sex offender. +--- 93230526 +>>93230437 +Yeah that wipes out all the SpaceX progress and development the last decade. +--- 93230854 +>>93230526 +And suddenly it's not about mentality anymore. diff --git a/g/93227982.txt b/g/93227982.txt new file mode 100644 index 0000000000000000000000000000000000000000..7474b93ab03cdaa0a395f7501956b83bde525715 --- /dev/null +++ b/g/93227982.txt @@ -0,0 +1,741 @@ +----- +--- 93227982 +Previous /sdg/ thread : >>93226435 → + +>Local install +Nvidia GPU: https://rentry.org/voldy +AMD GPU: https://rentry.org/sdg-link +CPU: http://rentry.org/cputard +Alternative UI (Node-based): https://rentry.org/comfyui + +>Run cloud hosted instance +https://rentry.org/sdg-link + +>Try online without registration +txt2img: https://huggingface.co/spaces/stabilityai/stable-diffusion +img2img: https://huggingface.co/spaces/huggingface/diffuse-the-rest +Inpainting: https://huggingface.co/spaces/fffiloni/stable-diffusion-inpainting +DeepFloyd: https://huggingface.co/spaces/DeepFloyd/IF + +>News +https://www.sdcompendium.com/doku.php?id=weekly_news_0093 + +>Models, textual inversion & embeddings +https://civitai.com +https://huggingface.co +https://rentry.org/hdgrecipes +https://rentry.org/sdg-motherload +https://rentry.org/embeddings +https://rentry.org/ezlora + +>Wiki +https://www.sdcompendium.com + +>Index of guides and other tools +Want to know how to use SD for animation, upscaling, train your own model or merging model checkpoints? + +Or need guidance on prompt ideas and when to use which artist then follow these links... + +https://rentry.org/sdg-link +https://rentry.org/rentrysd + +>View and submit GPU performance data +https://docs.getgrist.com/3mjouqRSdkBY/sdperformance +https://vladmandic.github.io/sd-extension-system-info/pages/benchmark.html + +>Share image prompt info +If you would like to easily share your image generation settings (prompt, model, etc), since 4Chan removes that information from the EXIF, then follow this guide https://rentry.org/hdgcb + +>Related boards +>>>/h/hdg +>>>/e/sdg +>>>/d/nai +>>>/b/degen +>>>/vt/vtai +>>>/aco/asdg +>>>/trash/sdg + +Official: discord.gg/stablediffusion +--- 93228042 +>>93228006 → +Its set to automatic, should I set it no none? +--- 93228053 +>>93228028 +aging boomer badass quokka +--- 93228063 +>>93228012 → +God bless. Sleep well. +>>93228026 → +Except the Industry that sells the Merchandize. +--- 93228065 +Precure of the Ainu +--- 93228074 +>>93228042 +You want to select a VAE if you have one +--- 93228078 +>>93228063 +fucks sake don't try to argue how people use lingerie cmon dude +--- 93228079 +sneak peak from my next series. sadly, I'll have to inpaint almost every face. but the scenes are pretty epic +--- 93228086 +>>93228035 +what's that prompt? +--- 93228090 +Continuing from last thread: Does anyone know how to use Latent Couple or Composable Lora to make 2 or more regions feature different stuff? It always merges everything together into one when I try. + +This was supposed to be a girl with green hair, a boy in a black suit, and a girl with blue hair in a white dress +--- 93228096 +>>93228065 +Use a vae. Its washed out. +--- 93228099 +>>93228074 +Which one are you using? I tried abyssorange but it didn't fix the muted colors +--- 93228109 +>>93228063 +go ask women "when do you wear expensive lingerie? isn't it just everyday linen?" and see what happens. + + +It's not a threat, just go ask a few women. +--- 93228112 +Anyone doing anything nice today? Hopefully the weather is nice by you guys, its been pretty bleary for much of the past week +--- 93228116 +I keep passing out randomly. Fuck. I had my hospital trip today and it's probably just a reaction to the iodine coloring. I'm sad I couldn't get anything done today. +--- 93228123 +>>93228086 +1girl laying down, looking at viewer, hair covering eyes, (blonde hair, long hair, messy hair), fennec fox ears, smug expression, blushing, naked, fluffy tail, cleavage +>inb4 looking at viewer, hair covering eyes +It just works, but the smug expression didn't lmao. +--- 93228131 +pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm5.4.2 +Looking in indexes: https://download.pytorch.org/whl/rocm5.4.2 +ERROR: Could not find a version that satisfies the requirement torch (from versions: none) +ERROR: No matching distribution found for torch + +I can't install torch to my venv, what the fuck is going on? Is anyone else having this problem? +--- 93228134 +>>93228109 +I have I have accompanied them to lingerie stores. Where they sell normal bras and swimsuits. +--- 93228137 +>>93228116 +>iodine coloring +Yeah, I passed on that the one time they wanted me to do it after reading on the release form it could result in death +--- 93228144 +>>93228109 +or just type lingerie into SD and see what it produces. or google it. or have common sense. otoh i have realized we are in ESL hours so things may be different where that anon is +--- 93228152 +>>93228099 +ClearVAE +--- 93228158 +>>93228116 +I hope its nothing life threatening. I hope for your speedy recovery. +--- 93228165 +>>93228131 +I'm sorry to hear that you're having trouble installing PyTorch. It seems like there might be an issue with the provided index URL. To better assist you, can you please provide some information about your system, such as the operating system, CPU/GPU, and Python version you are using? + +In the meantime, you can try installing PyTorch with the following command that uses the default PyPI index: + +pip3 install torch torchvision torchaudio + +If you are using a specific platform like CUDA or ROCm, please mention it so I can provide you with the appropriate installation command. +--- 93228177 +>>93228134 +you stalked them and you suck at women's underwear nomenclature +--- 93228183 +>>93228175 +--- 93228189 +>>93228131 +The torch download server DNS seems to be fucked, try flushing DNS and visiting the download URL in a browser, that fixed that problem for me +--- 93228190 +>have controlnet installed +>have ebsynth utility installed +>dont know how to use either +>dont even bother using them +based me +--- 93228191 +>>93228177 +I accept your concession +--- 93228206 +>>93228191 +anon nta but nobody's going to bother to seriously argue with you about your erroneous misuse of the term lingerie so i guess you win +--- 93228207 +Where's PW +--- 93228212 +>>93228123 +Not quite what I was looking for, it's the head on hand I wanted. I guess I can try it again myself, in the past I'd get multiple arms every time. +--- 93228220 +>>93228191 +/r9k/ needs you, someone dropped a bowl of toothpicks and now they all are arguing on how many there are "on the ground" +--- 93228225 +Cure Castaña + +>>93228096 +what are the best anime VAE(s)? +--- 93228226 +>>93228137 +Yeah, most of the stuff I've been reading about what I've been going through has a lot of bad ends and I need to know for sure with x rays. + +>>93228158 +I hope so too. I'll get a phone cal in a few days after all the tests are finished getting processed. + +I'm just going to head to bed after a tall glass of water. Hope I'm feeling better tomorrow. Have a good night everyone! +--- 93228229 +>>93228207 +Haven't seem him today, maybe got b&d? +--- 93228241 +>>93228116 +>I keep passing out randomly. +Shit, I hope your alright. +--- 93228242 +>>93228226 +Godspeed anon. +>>93228229 +Sad. Nice pic. Great aesthetics. +--- 93228257 +>>93228229 +Sad. Nice aesthetics on the scenery. +--- 93228258 +>>93228229 +>s-spaiku? +--- 93228287 +There should be a service that tags images for Lora's and stuff for you. I have an excess of money and a lack of attention span for that stuff, and a bunch of ideas that'll never come to fruition :/ +--- 93228292 +>>93228229 +can you do same picture but with no people, everything is overgrown, car is rusted and has been there for a while, animals in background, overgrown empty modern city, +--- 93228297 +>>93228226 +hope you feel better. you should probably get checked out if you keep passing out anon. +--- 93228302 +>>93228275 +--- 93228305 +>>93228268 +nice looks like official Tony Taka artwork +--- 93228329 +>>93228305 +I'm kinda pissed I missed the second, much better, lora. I was using the shitter one forever. This one is nice. +--- 93228332 +>>93228241 +>>93228242 +>>93228297 +Thanks for the concern anons! I'll be ok! Promise! +--- 93228346 +>>93228329 +throw a few modern waifus at it + +Komi from Komi can't communicate +Nagatoro from Please don't bulle me sempai +--- 93228349 +>>93228302 +--- 93228366 +>>93228226 + +Have a good one AnimAnon! +--- 93228370 +>>93228332 +<3 sweet dreams +--- 93228422 +>>93228398 +--- 93228425 +>>93228346 +no way pal I'm too busy deep frying elves +--- 93228436 +>>93228425 +can they be in an onsen with just a towel to cover up with? +--- 93228470 +>>93228242 +>>93228257 +Thanks! + +>>93228292 +That was an old prompt. I couldn't get the tall grass at all. +--- 93228481 +sshhh everyone's asleep +--- 93228483 +>>93228436 +I did that with the old lora. +https://files.catbox.moe/gxipbf.zip +I think this has them but I can't remember what's in here exactly. I'm about to go to bed but I'll do that tomorrow +--- 93228492 +2quokkas +--- 93228505 +>>93228470 +still pretty cool contrast +--- 93228518 +>>93228483 +thanks, bye +--- 93228524 +Is comfy the way to go? Won't I be missing on all the cool extension for webui? +--- 93228558 +>>93228532 +Talk about a tofu burger lol +--- 93228601 +Last one, good night/morning anons. +--- 93228612 +>>93228601 +good night anon, sleep well +--- 93228663 +>>93228099 +My dude +https://civitai.com/?query=vae +--- 93228808 +>>93228773 +neat, now make it a snake waifu lying on a long couch +--- 93228832 +Hello, anons! Hope everyone is doing well! :] +>>93228207 +Heya anon! I'm here now :] +Kinda later than usual haha +How are you doing? +--- 93228834 +>>93228601 +night +--- 93228845 +>flagged by civitai for review +It doesn't look like a child you mongs. She's 130 years old. +--- 93228893 +prompt + +In the quivering forest +Where the shivering dog rests +Our good grandfather +Built a wooden nest +And the river got frozen +And the home got snowed in +And a yellow moon glowed bright +'Til the morning light +Terrible am I, child? +Even if you don't mind +--- 93228948 +Is their some way to check all the commands and triggers for all the crap I've downloaded? I've been saving links to the web pages but if those go away I'm going to be out of luck. I've tried to read the file details but I can't find a good relation between the stated commands and what's listed. +I'd rather not have to spend the time make copies of the trigger commands for everything... cause I'm lazy. +--- 93228957 +Here's the first output with your proompt! :D +Is that you, Interioranon? Sounds like your poetry! +--- 93228965 +>>93228893 +--- 93228982 +>>93228965 +>>93228957 + +Folk Music + +https://www.youtube.com/watch?v=gpvzmKe3RJk [Embed] +--- 93228983 +>>93228893 +>>93228957 +Whoops! Forgot to reply hahaha! +--- 93228988 +comparison between methods of upscaling +--- 93228990 +>>93228893 +--- 93229000 +Anyone know the artist(s) that drew the training set for Cardos? +Because they're so pretty real girls don't impress me anymore +--- 93229007 +>>93228982 +Oh cool! I like it! +>>93229000 +Ermm, all I know is the cardos creator comes here a lot! A bit late in the night tho! +--- 93229019 +>>93228982 +ah reminds me of when i did the lyrics to white winter hymnal by them + +I was following the pack, all swallowed in their coats +With scarves of red tied 'round their throats +To keep their little heads from falling in the snow, and I turned 'round and there you go +And, Michael, you would fall and turn the white snow red as strawberries in the summertime, + +music or poetry makes for great prompts it's interesting to see what it latches on to +--- 93229021 +>>93229007 +add Blue Ridge mountains to the prompt +--- 93229027 +>>93228832 +I'm ok you? +--- 93229031 +toonyou model is amazing. +--- 93229055 +>>93229000 +cardos is a merge between multiple models mainly cartonish and dosmix,though in 2.5 version i noticed heavy influce of "'been you" model, so no there's no artist's training it's just mix of styles. +--- 93229066 +>>93229021 +Ok! :] +Adding it now! +>>93229027 +I'm great! Got home from work then just relaxed! What are you up to? +--- 93229070 +>>93229031 +Doesnt look amazing at all. Blurry and too blended +--- 93229072 +>>93229019 +something with a bit of a narrative but not to repetitive, has to have good imagery and worldbuilding, Queen another one bites the dust makes for a bad prompt because it's an action, Dead Leaves and the dirty ground by the White stripes is better because it has some description, The decemberists mariners revenge song is a straight up story so you can just use any verse for a good image +--- 93229083 +>>93229066 +Drinking a nice cup of chamomile dandelion tea at the moment :) +--- 93229098 +which is the highest quality model for a pixiv hentai illustration that looks like touhou digital painting porn pixiv fan art? +--- 93229115 +>>93229098 +Waifu Diffusion 1.3 +--- 93229128 +yo can you niggahs generate some ui assets like a wow health bar? want to see if this stuff can be used for my personal project +--- 93229141 +>>93228773 +what way are they going +--- 93229148 +>>93229128 +no +--- 93229150 +>>93229083 +Niceee! That sounds good haha! +Glad you're having a relaxing morning! +>>93229021 +Here it is with blue ridge mountain added in :] +--- 93229156 +>vladmandicks fork takes 3 hours to start +What the fuck is he doing lmao +--- 93229157 +>>93229150 +nice, comfy +--- 93229173 +last one from me, good night anons +--- 93229175 +>>93229150 +Very cute! +--- 93229176 +I have only used this once months ago, to update it, I just need to press GIT Bash here and then "Git pull" right? +--- 93229191 +>>93229150 +https://www.youtube.com/watch?v=d370CKlg-wk [Embed] +--- 93229192 +>>93229157 +Thanks anon!! :] +>>93229173 +Good night, Quokkanon!! Sleep well :] +>>93229175 +Thank you, anon! :D +Same to you! +I really like the detail in that outfit! +--- 93229198 +https://files.catbox.moe/dbp403.txt +Any ways I can make this LoRA generate less-crustily? +--- 93229216 +I usually leave my webui open with a share link so I can prompt on my phone, but the link expires after 48 hours. I've been manually adding the link to a text file on my dropbox to access it on my phone. +Would there be a way to automate that? Where when I open the webui.bat file it replaces the link in the text file? +--- 93229225 +>>93229150 +Yes very relaxing. What about you? +--- 93229240 +maybe one more lyric prompt + + +Sail! +This is how I show my love +I made it in my mind because +Blame it on my ADD, baby +This is how an angel dies +Blame it on my own sick pride +Blame it on my ADD, baby +Sail! + +Sail! +Maybe I should cry for help +Maybe I should kill myself (myself, myself...) +Blame it on my ADD, baby +Maybe I'm a different breed +Maybe I'm not listening +So blame it on my ADD, baby +Sail! +--- 93229243 +Toonyou is much better than anime porn models. + +:O +--- 93229244 +>>93229191 +The more I hear this song the more I like it!! Definitely my kind of music :D +I'm gonna try it with the full lyrics and see what happens hahaha! +>This output +>Where the shivering dog rests +haha! +>>93229225 +Just having a glass of wine and relaxing too haha +Listening to this song that anon sent too, I really like it! +--- 93229245 +>>93229222 +--- 93229280 +>>93229243 +cute!! +--- 93229307 +>>93229244 +nice mood +--- 93229308 +>>93229191 +Here's an output with full lyrics! +--- 93229331 +>ToonYou +>BeenYou +>FeelYou +>NeedYou +Which one do you guys like the most? +--- 93229335 +>>93229240 +Here's my first output! +--- 93229349 +Installed Waifu Diffusion model, trying img2img with the settings in the picture. +What am I doing wrong? Feels I am missing something very basic. +--- 93229352 +>>93229280 +>>93229331 +toonyou with an anime lora, gives superior results to any anime generic pixiv trash model. +--- 93229366 +>>93229349 +Denoise is a bit too high! .72 is good for changing a majority of the initial image! +Try something like .32~.44! +--- 93229368 +>he prompts 1girl +--- 93229376 +>>93229352 +can you post hq versions of your ones? +--- 93229377 +>>93229349 +idk about using WD at all, but make sure your output resolution matches the resolution of your input image, or at least is a scalar multiplier of it. it looks like the input is portrait mode and you're outputting a square +also you probably want euler A instead of euler but i think that's tangential +--- 93229390 +>>93229352 +Thats blurry and overexposed. You have yet to convince me the model is even mediocre +--- 93229404 +>>93229349 +get controlNET. img2img on steroid +--- 93229420 +>>93229368 +me on the right +--- 93229427 +Cute anime girls! +--- 93229429 +What is the easiest way to train a lora on arch linux? + +All the guides are fucked and i end up installing GBs of dependencies and then it doesn't work. +--- 93229440 +>>93229240 +--- 93229444 +>>93229440 +cute +--- 93229459 +>>93229454 +pretty cool Lady Death gens +--- 93229474 +>>93229240 +this prompt produced girls of an uncomfortably young age for me +--- 93229478 +im gonna have sex with all your waifus +--- 93229483 +>>93229474 +lol, it's your setup +--- 93229488 +>>93229444 +Thanks, anon! :] +I love doing song lyrics haha! It's fun to see what comes up! +--- 93229495 +>>93229478 +cool, can you fuck my waifu in multiple positions and document it all taking lots and lots of pictures and sharing it here +--- 93229504 +>>93229478 +if you could get a nice pic of mating pressing her and posting it here that would be great +--- 93229505 +>>93229474 +LMAOOO same, but some came out ok! +--- 93229520 +>>93229459 +ive given up on making her, now i'm just making pasty 1girls +--- 93229529 +>>93229474 +>>93229505 +Awolnation - Sail +--- 93229547 +>>93229508 +what model is this? +--- 93229551 +>>93229529 +its ok anon i know what it's from. its just too many 'baby's in the lyrics and too uh tuned of a model that's all +--- 93229552 +>>93229427 + +Getting hot in here! +--- 93229554 +>>93229551 +lol, that's what it is +--- 93229558 +>>93229547 +anything 4.5 +--- 93229559 +>>93229529 +I know the song haha! I think the "baby" part is taken too literal tho LOL +--- 93229587 +>>93229377 +Well it got better, still various mistakes though. + +What I am trying to achieve is this +>take existing Mugen character sprites +>create new/different character in the same poses +>pixelify those images using monopro /pixel/ +>mod existing mugen character as a base to create a new one. + + +>>93229404 +Alright, I'll try it, thanks. +--- 93229594 +Posting a few... +--- 93229600 +irl wife has been successfully turned into a big tiddy anime waifu +--- 93229604 +>>93229526 +why can anime girls look cute in any clothing but i look like shit when i suit up +--- 93229609 +2/?.... +--- 93229620 +>>93229609 +that girl's got a lotta legs +--- 93229629 +>>93229620 +>3 legs +>2 vaginas +IMAGINE +--- 93229635 +3/? + +>>93229620 +Lol I didn't notice, I need to put more in my negative prompts. +--- 93229642 +>>93229629 +but i can only use one at a time.. +although getting a handjob from the girl on the left with like 12 fingers might be fun +--- 93229649 +>>93229600 +--- 93229651 +4/? +--- 93229728 +When she finally looks at you. +--- 93229737 +>>93229649 +This is ridiculous. The photo realistic ones look identical to her too. +Kids are gonna train loras of their high school crushes and gen porn of them, aren't they? +--- 93229749 +>>93229651 +noice +--- 93229778 +God I love making bimbos. +--- 93229783 +toonyou can't use danbooru tags to make a girl touching herself. +--- 93229808 +>>93229737 + +>>When you got hold of a podcast interview with your highschool crush and you know you can dissect the video in order to create a dreambooth or a Lora and change this image of your youth into your wildest sexual fantasies, while simultaneously being happily married, but strange sensations fester inside and torment you. + +It is an abstract kind of feeling. +--- 93229816 +>>93229778 + +Looks pretty nice anon! Can you share any info, perhaps a catbox? +--- 93229867 +>>93229816 +I had to use a control net to get the pose. + +https://files.catbox.moe/mswybb.png +https://files.catbox.moe/w0gs85.png +--- 93229931 +>>93229867 +Looks like the metadata is stripped, can't load the image +--- 93229944 +>>93229928 +Blifford, the big brown dog +--- 93229945 +>>93229867 + +Thanks anon, gonna grab a download of the model from Civ! +--- 93229965 +taking request, even if they complex will insanely over-deliver I promise, will take first interesting one +shrooms kicking in lessago +--- 93229967 +>>93229944 +weirdly enough i just plunked genesis 1 of the bible in as a prompt, it must have a sense of humor giving me a dog instead of god +also the gens are pretty cool +--- 93229982 +>>93228131 here, the problem was that pacman updated python to 3.11 and broke everything that relied on 3.10 +--- 93230014 +>>93229697 +Cool +--- 93230016 +>>93229931 +No, I just checked it worked for me. Are you using Automatic11111? +--- 93230024 +>>93229965 +i want your best attempt at mr saturn from earthbound +--- 93230037 +>>93229967 + +Which model? +--- 93230057 +>>93230016 +Nah Comfy, usually they load. Loaded up just fine in A1111 though +--- 93230066 +Sexooooo +--- 93230073 +>>93229967 +That's hilarious. What verse was this one? +--- 93230078 +>>93230057 +this is what i got in auto lol +--- 93230111 +>>93230037 +https://civitai.com/models/8124/a-zovya-rpg-artist-tools been liking it a lot. i like its particular brand of non-photorealism + +>>93230073 +oh i just dumped the entire first 31 parts from here https://quod.lib.umich.edu/cgi/k/kjv/kjv-idx?type=DIV1&byte=1477 which i guess is 'gen.1' to see what would pop out, in fact it might even mention dogs idk i didn't read it +--- 93230138 +>>93230111 +on which planet is this ? +--- 93230140 +>>93230066 +What the fuck is this thing +--- 93230148 +>>93230078 +--- 93230160 +>>93230138 +great question desu it doesn't really make sense does it + +>>93230140 +holy kek i missed that pic until you posted that's hilarious +--- 93230187 +>>93229404 +So now what? installed that extension, I got all those models, selected one of them, the image is in the box, now what? Do I still have to choose prompt and negative prompt up there and generate? +--- 93230223 +>tattoos as clothes +I think I have unlocked a new fetish +--- 93230226 +biblically accurate map +--- 93230228 +which model lets me upload a picture of my own wow character but also use other wow-inspired artworks to recreate a portrait similar to classic-era/conan art style? +--- 93230231 +thread +thread + +>>93230114 → +>>93230114 → +>>93230114 → +--- 93230259 +>>93230187 +>So now what? installed that extension, I got all those models, selected one of them, the image is in the box, now what? Do I still have to choose prompt and negative prompt up there and generate? +https://www.youtube.com/watch?v=zrGLEgGFJY4 [Embed] +--- 93230301 +>>93230187 + Unironically, youtube it bruh + The tl;dr is you create controlNET map(s) and it will keep the shape of the character so you can play with high denoise/prompt whilst keeping most of the character intact. + With only img2img a denoise higher than 0.65 will create a completely different character. But with ControlNET, it is not the case. + +It's the most powerful tool in stable diffusion. +--- 93230513 +>>93227982 (OP) +is there a webbased ui for making pixel art characters for something like MUGEN sprite sheets? +so if I have a character I upload a sprite(s) & give it a bone structure to conform the character's pose? +there was a japanese paper just for that months ago but cant even find it + +something like https://www.youtube.com/watch?v=ismWniiT8ew [Embed] diff --git a/g/93227999.txt b/g/93227999.txt new file mode 100644 index 0000000000000000000000000000000000000000..106d391e240cf65e1032343cb01611765f83777f --- /dev/null +++ b/g/93227999.txt @@ -0,0 +1,86 @@ +----- +--- 93227999 +>tfw dropped my SSD in salt water +wtf bros, can I save it? It wasn't running +--- 93228017 +>>93227999 (OP) +does it have data? copy it + +it doesnt have any data? jizz on it and throw it away in an electronic-friendly recycling facility +--- 93228030 +>>93227999 (OP) +How THE FUCK did this even happen? Were you rebuilding your PC in a middle of a fucking ocean or some shit? +--- 93228047 +>>93228030 +Pet lobster, don't ask. Can you just help please? :C +--- 93228088 +>>93228017 +It has data, I don't know how to access it cause I'm not versed in this stuff, I got pointed here yesterday +>>93228030 +I was cooking pasta while handling it, I feel like a retard +>>93228047 +I wish... +--- 93228138 +>>93228047 +You better take it to the nearest electronic repair shop. They know how to properly deal with 'drown' phones and other similar electronics. The faster you bring it in, the higher your chances of salts not corroding them BGA joints under SSD chips and thus rendering the thing inoperable without (otherwise unnecessary and not that cost-effective in case if you just need the SSD and not the data) resoldering. +--- 93228749 +>>93228138 +Please, tell me it's not expensive... I am a poor fuck +--- 93228826 +>>93228749 +it's manual labor, so it's expensive +--- 93228949 +>>93227999 (OP) +Somewhat ironically, you need to rinse it through water again, but the distilled variant. That gets rid of conducting salt residue. +Once you've done that, shake off as much water as you can and leave it for a day or two in a big bowl of rice, that dries it out. +And then it should work. +--- 93228956 +>>93227999 (OP) +I would've been more impressed if it was somehow running +--- 93229324 +>>93228826 +Fuck +>>93228949 +Ok, I'll try this first, thank you +>>93228956 +Pls no bully +--- 93229393 +>>93228088 +Is it an M.2 SSD or one that looks kinda like a plastic box? Do you know the model? Because if you boiled a fucking M.2 SSD in salt water you are not getting it working again, if it was one of the box ones the box might have absorbed the brunt of the "treatment" +--- 93229409 +just go rinse it in distilled water a couple of times and bury it in a bowl of rice +--- 93229415 +>>93228030 +I was at the beach when a wave hit +--- 93229442 +Dump it in non salt water to get the salt out (ethanol better) and then let it dry. don't power it on +--- 93229468 +>>93229393 +It's a Samsung 870 Evo, a box one +>>93229409 +>>93229442 +I will, thank you +So you say it CAN be saved? +--- 93229760 +>>93229468 +Can i see ur pet lobster +--- 93229821 +>>93227999 (OP) +Post proof then get help otherwise fuck off larper +--- 93229847 +>>93229760 +I don't have any, sadly +>>93229821 +What do you want me to post as proof? A picture of a SSD in a pot of pasta? It happened yesterday +--- 93230012 +>>93227999 (OP) +rice & distiled water gentle scrub to remove salt residue. Afterwards room temp dry + shake and pray. +to who? +TO THE MACHINE GOD OF COURSE! + +P.S If it was a HDD you would have been more fucked. + +AND PRAY! PRAY! INFIDEL +--- 93230104 +>>93228030 +I take my PC to the Santa Monica beach and setup with solar power and game. Ngmi if you don't. diff --git a/g/93228108.txt b/g/93228108.txt new file mode 100644 index 0000000000000000000000000000000000000000..939382b1a16c812a7757e0a7cf211e43fc26736b --- /dev/null +++ b/g/93228108.txt @@ -0,0 +1,23 @@ +----- +--- 93228108 +>Write C++ code +>Tell ChatGPT to convert it to Rust + +I can't lose +--- 93228146 +>>93228108 (OP) +>company policy says you can't post company info to ChatGPT +>you can't do shit nigger +--- 93229069 +>write C++ code +>tell chatgpt to convert it to rust +>tell llama to convert it to javascript +>tell chatgpt again to convert it back to C++ but it's pure C99 and doesn't rely on any standard libs +>run in on my Arduino + +Nothing personnel, kids. +--- 93229592 +>>93228108 (OP) +--- 93230558 +>>93228108 (OP) +Based diff --git a/g/93228301.txt b/g/93228301.txt new file mode 100644 index 0000000000000000000000000000000000000000..c487576115d5d14d80142a2db414c46eff032876 --- /dev/null +++ b/g/93228301.txt @@ -0,0 +1,13 @@ +----- +--- 93228301 +Hey there, I posted in /gd/ and /wsr/ I'll copy paste the thread here also as advised. + +I'm looking to create a banner for a website, only I'm not a great artist. I have tried to obtain images from free AI art generators but many of them require accounts or sign ins. + +Is there anyone with an account that would be willing to help me out create a PG image? I will refrain from giving out too many details as it is all work in progress + +but I will leave you guys with the idea I proposed to AI: Clothed cupid urinating into ancient drinking fountain painting (pic somewhat related) + +I would like it in banner form if possible. PG is the key word here as it is to be music related and nothing untoward. + +I am willing to produce an original audio piece for some original non-AI art however so feel free to ask what you desire and I will respond in kind. Thanks lots in advance xx diff --git a/g/93228344.txt b/g/93228344.txt new file mode 100644 index 0000000000000000000000000000000000000000..38ad7bca7d0de4848feaee5c05ea4c7276a33c04 --- /dev/null +++ b/g/93228344.txt @@ -0,0 +1,22 @@ +----- +--- 93228344 +I'm an innovative & passionate Open-Source consultant and proud founder of Opensourced - Search & Selection. + +I specialise in partnering top-quality talent with equally as impressive organisations, ranging from start-ups, digital agencies, and SAAS companies all the way to blue chip and PLC institutions as well as small and ambitious to internationally recognized AAA studios amongst the gaming space. + +Specifically sourcing skills in PHP, Go, NodeJS, Typescript, Python, Ruby, Java, JavaScript, VueJS, AngularJS, ReactJS, ExpressJS, NextJS, GraphQL, AWS, Kubernetes, GCP, Jenkins, Terraform, Grafana, Ansible, Docker, Linux, VMWare, CMS, Magento, WordPress, Drupal, Unreal Engine, Unity, C# and C++ + +I specialise in full life cycle development languages, CMS, as well as System Administration, infrastructure, DevOps and Gaming. I also have an extensive network within the AI, QA, Digital Marketing, Mobile, UX/UI, Unity, Unreal Engine, and VR space for more niche requirements. + +I'm an empathetic people person with a high-functioning OCD that settles for nothing less than perfection. In my spare time, you'll catch me either watching or playing sports. I’m a big movie fanatic and have a huge passion for music, regularly attending concerts and events across the globe. I'm an avid traveller and would like to see as much of the world as possible; feel free to talk to me about cities, famous landmarks, where I can find the best view, traditional food and how I can understand/learn cultures from all corners of the world. a huge advocate of cultural diversity and inclusion as well as championing cognitive diversity within my organisation. + +Contact me for a confidential chat regarding current/future career opportunities. I love speaking tech and always like to know what’s hot and what’s not. Connect with me on social media today or reach out via e-mail or telephone and let me help you engineer your career. +--- 93228473 +>>93228344 (OP) +Im not reading all that shit. Do not ever speak to me. +--- 93228500 +>>93228473 +thanks for the bump friend +--- 93229800 +>>93228344 (OP) +I doubt this nigga can count to 10 diff --git a/g/93228551.txt b/g/93228551.txt new file mode 100644 index 0000000000000000000000000000000000000000..98caea70c68967e5fe7b0b63a8b3afc81923e92e --- /dev/null +++ b/g/93228551.txt @@ -0,0 +1,18 @@ +----- +--- 93228551 +How do you do it? +I got one cert about a year and now want to do another one. The company I work at gives nice rises for certs. +But a lot of the things I have to study I use either never at all or maybe once a year or so. +So I read that stuff, make notes, do some related challenges online, then forget most of it after a while. +--- 93228604 +>programmer +>certs +--- 93229608 +>>93228551 (OP) +why does he listen to music from his phone instead of his mac? +--- 93229672 +>>93229608 +That's nome +--- 93229775 +>>93228551 (OP) +How do I do it /g/uys, I want to take the DP900 from ms, but Im a thirdworlder with little to noa cess to dollars, can I take tyhis shit for free? It will put me ahead of everyone on the market where I live. diff --git a/g/93228618.txt b/g/93228618.txt new file mode 100644 index 0000000000000000000000000000000000000000..6175118cc940dd552077bb1921fafb88d825785c --- /dev/null +++ b/g/93228618.txt @@ -0,0 +1,3 @@ +----- +--- 93228618 +How the fuck do you use the spoiler function on >>>/v/? Clicking the check box isn’t enough? Got me banned for 24h on >>>/v/. Thanks for not banning me on the entire forum but how do I use it? I don’t want to break the rules. Just want to know how to use it so I don’t get banned again. diff --git a/g/93228694.txt b/g/93228694.txt new file mode 100644 index 0000000000000000000000000000000000000000..4496e4e3f6f1223fd0402aec3cd3d2e4545e914e --- /dev/null +++ b/g/93228694.txt @@ -0,0 +1,14 @@ +----- +--- 93228694 +I regret convert my anime music collection from FLAC to OPUS now +>Chink USB drive speaker doesn't work +>Windows Media Player 12 (with stock codec) doesn't work +>iTunes doesn't work +>probably some PMP doesn't work. However I don't own one. + +>Check with Spek +Deletes everything above 20kHz +>ABX test it think "Human ears can't hear more than 20kHz" is meme +60% confidence + +I should convert to M4A instead diff --git a/g/93228723.txt b/g/93228723.txt new file mode 100644 index 0000000000000000000000000000000000000000..c8a044bc54edc6ef1023854dd5c0b78fb95ff48a --- /dev/null +++ b/g/93228723.txt @@ -0,0 +1,115 @@ +----- +--- 93228723 +Why is he going Kaczynski mode? +What are your guys thoughts on him? +I know this has been asked a million times already but, at some point in the past, was he /ourguy/? + +Personally, beats Luke Smith to a pulp, loved Kenny. He has a nice voice, always slightly comedic and gives genuine advice in a clear way. +--- 93228750 +he believed in all the memes here +memed into oblivion like every /g/ youtuber +--- 93228757 +>>93228723 (OP) +Niggas will always nigg. + +He fell for famous youtuber/influencer meme. +--- 93228765 +Luke Smith and now Kenny is what happens when you fall for every /g/ meme at once +--- 93228775 +>>93228750 +Yea, he was a representative of this board to be fair. But you say memed into oblivion, was it because of us? + +>>93228757 +This nigger gets a pass from me. The only one that does. Also what do you mean by he fell for the YouTuber/influencer meme? He was the furthest thing imaginable +--- 93228827 +>>93228723 (OP) +>going Kaczynski mode +good for him +the world would be a better place if more people did that +--- 93228844 +>>93228827 +--- 93228874 +>>93228723 (OP) +He is one of the most obvious glowies ever. +--- 93228912 +I loved him until I realised he was racially handicapped. And now it's an uphill battle with everything he says for me. Which I know is my own predjudice. But yanno. I'm tired of niggers in everything +--- 93228937 +>>93228874 +I'm the anon that said>>93228912 + But you are fucking ridiculous. + +The only thing I hate more than niggers forced into everything I consume, is literal schizophrenics that can't discern between bullshit cultivated by the government and natural bullshit. +Not everything is a psyop, not everyone is a cia agent. The earth is not flat. I mean learn some fucking math dude goddamn +--- 93228964 +>>93228874 +Yes everyone that does anything is controlled opposition. There are no allies. You are alone and have no support from anyone. Might as well give up. + +-this post was sponsored by the Central Intelligence Agency +--- 93228971 +>>93228850 +STOP POSTING PORN OF CHILDREN + +HOLY SHIT UNIRONICALLY HAVE SEX +--- 93228997 +>>93228874 +Haha no +--- 93229168 +>>93228723 (OP) +I just hope he leads my Celtics to a championship this year. +--- 93229196 +>>93228997 +based + +you will sit beside God on judgement day +--- 93229277 +>>93228723 (OP) +He and luke smith are in the process of forming a mixed race gnu ortodox amish community. +--- 93229400 +>>93229277 +>xe doesn't know +--- 93229446 +>>93228723 (OP) +He loves autarky and I support him for it. +Why can’t we have an alternative open-sourced government too? +--- 93229484 +>>93228850 +Based +--- 93229519 +What did he do +--- 93230403 +>>93228723 (OP) +--- 93230423 +>>93228723 (OP) +For a nigga, he's a pretty cool dude. +Would take a beer with him and date his sister. +--- 93230480 +>>93228723 (OP) +I love to see the BIPOC community participating in the 4chan technology culture and memes, it is good to see some diversity in this space for once!!! Black lives matter! +--- 93230493 +To be fair I've been going kaczynski mode myself. I think it's just a zeitgeist mindset and slow but clear anti-technology trend as people get sick and tired of the constantly online bullshit everyone is exposed to. + +I mean I have to fucking take my Smartphone to work to open my office doors and for 2FA to log into my accounts. + +I'm slowly cutting off the digital parts of my life. I don't have any social media anymore. Said goodbye to my steam friends. Luckily never adopted Discord in the first place. + +I'm still going to use things like wikipedia and 4chan mostly because 4chan is actually useful but I might add filters to filter away bullshit over time. + +Currently in the process of cutting out Youtube which is the final google service I still use. Not going to lie, this is the hardest one. As I've basically made it a habit to come back from work, eat diner and then lay in bed while watching the new uploads my subscription channels uploaded for that day. + +My plan is to watch videos at a higher speed (Already at 3.5x speed right now) to spend less total time watching shit. And slowly but surely unsubscribe from channels so that the feed becomes less and less every day until I just stop using youtube altogether. + +My hope is that by next year I only use wikipedia, libgen for resources and 4chan to stay at least somewhat up to date with things. Although I'm not entirely sure if I should drop 4chan as well eventually. + +Things I already dropped: +>No more gaming consoles +>Threw away all old stuff from my childhood including older toys, electronics and old game consoles and games +>Gave away my television screen, desktop pc and multi-monitor setup. Only have a laptop now +>Removed curtains so that I'm forced to wake up when the sun shines inside the room + +I don't think it's a /g/ meme. I think it's a general trend that is applicable to most people nowadays. Especially software engineers. Most of my colleagues are thinking of the same. +--- 93230518 +>>93228723 (OP) +He inherited land +--- 93230535 +>>93228723 (OP) +What is he doing exactly these days? Trying to get off the grid and bolt it to the woods just like Luke did? I guess that's the fate of everyone who takes local schizo/extreme freetard memes seriously. diff --git a/g/93228793.txt b/g/93228793.txt new file mode 100644 index 0000000000000000000000000000000000000000..047401c514f254cd741ba9ccd929821fab074358 --- /dev/null +++ b/g/93228793.txt @@ -0,0 +1,114 @@ +----- +--- 93228793 +What is the 2500K of 2023? I'm looking to invest in hardware which will last at least 20 years +--- 93228854 +>>93228793 (OP) +All CPUs this generation are housefires. Your house won't last 20 years if you buy. +--- 93228868 +>>93228793 (OP) +13500k +--- 93228881 +>>93228793 (OP) +won't happen again +we're in the start of the ARM transition. no CPU available now will survive it +--- 93228899 +>>93228793 (OP) +13600k. Seriously. Intel is selling it at a massive loss. It’s faster than the ryzen 7700 and i9 12900k. Best bang for buck cpu on the market currently. Nothing beats it at the price. +--- 93228906 +>>93228793 (OP) +7700 +--- 93228915 +>>93228793 (OP) + +idk, maybe an i7 6700? +--- 93228918 +>>93228881 +It’s cute you think arm has a chance. Apple had to cease mac production because they can’t sell anything arm based. Meanwhile their old intel stuff is still in high demand. +--- 93228928 +>>93228906 +>>93228915 +You’re both retarded. +--- 93228934 +ryzen 5600. it just werks and it and everything around it is super cheap +--- 93228941 +>>93228934 +For now. Ddr4 just stopped being produced. +--- 93229029 +>>93228941 +yeah, so if you wanna get one do it now. i got the best form of ddr4 for my 5600, kingston 3600mhz ram cl16 for 70$, 32gb is just personal preference +--- 93229049 +>>93228928 + +y? it gaymens and into other stuff just right and you can pick up a prebuilt for dirty cheap at around 100 burger bucks, throw in a 1050 and you got a gaymen desktop pc. +--- 93229063 +5600 cheap and based +i dont like (((intel))) +--- 93229091 +>>93229063 +>5600 cheap and based + +as much as i love my 3700x + 5700 ayymd vidya cacrds, buying used kills the (((synagogue of satan))) aka jewtel +--- 93229151 +>>93229091 +i rather not buy them in any way even if used +--- 93229183 +>>93229151 + +ah, cant really blame you... the same goes for me when its a craplel fruit toy phone. +--- 93229209 +>>93228793 (OP) +>20 years +Not a thing. 2500k was a gaming chip and 4c/4t already had issues in gaming around 2017-18, so in a practical sense it lasted 6-7 years maximum. The only reason it even lasted that long was stagnation. +--- 93229213 +>>93229209 +this +--- 93229217 +easily the ryzen 5 1600 (in 2017) +i bought one then and it still goes hard +--- 93229327 +>>93228793 (OP) +13600k Intel 13th Gen DDR5 64GB@6400 (89 GB/s) +Zen3 Ryzen 5 5600x DDR4 64GB@3200 (48 GB/s) +both should last another decade at least and if LLMs end up needing all that local speed you should get a nice double token speed boost on the biggest models up to 10 t/s +--- 93229353 +>>93228793 (OP) +3770k +--- 93229712 +>>93229353 + +this +--- 93229890 +I replaced my 2500k two months ago. +Felt bad man. +--- 93230027 +12700/12900 for sure especially x86 v3 ones, and I have been saying this since they came out +--- 93230083 +>>93228881 +>we are transitioning +sorry but, you might be the only one transitioning Mia, since apple m shits are not the fastest neither per core nor overall and they overheat +--- 93230292 +>>93230027 +You mean the AVX512? +--- 93230476 +>>93229890 +if those logic gates could talk. +--- 93230696 +>>93230292 +Yes +Don't know about you guys, but I use avx2 every day, browser compiled with avx2 optimizations - thorium, pajeet sites work faster, mpv which I use heavily because shaders, pcsx2 for kino gt4 wouldn't be near usable without avx2. So there is use for new instructions +--- 93230706 +>>93228793 (OP) +Obvious bait. +2500k of 2023 is 2500k. +Pic related. +--- 93230729 +I bought a i7 920 in 2008. I kept using it until it literally died on me in 2015. So I bought the i7 6700k then. + +I still use the i7 6700k now and I'm not planning to switch until it dies again after which I will buy the fastest CPU out at the moment and keep it until it dies again. + +This is the way. There is literally no reason to upgrade and I say this as a software engineer that has to do a lot of compiling. +--- 93230842 +>>93230729 +I still use a 2600k in a virtual host. + +Reject upgrades;embrace extendibility diff --git a/g/93228895.txt b/g/93228895.txt new file mode 100644 index 0000000000000000000000000000000000000000..44119b8e30106cc5b2cf497e1b33ab8586f0004c --- /dev/null +++ b/g/93228895.txt @@ -0,0 +1,75 @@ +----- +--- 93228895 +I wanna learn C and x86/x64 but idk where to start. What are some suggestions you have, /g/? +--- 93228919 +>>93228895 (OP) +start with heap and stack and /dev/null +--- 93228979 +>>93228919 +I'm a complete noob. what do you mean? +--- 93229004 +>>93228895 (OP) +Reference manual and tutorials on the net. Also look at lot of code. +You can't really start learning complex subjects from the start or the end. You have to start inbetween at the right abstraction level where it is not too overhelming to learn. After you gained some experience and intuition regarding the subject you can branch both ways: high level and low level. + +So start with a C tutorial. +--- 93229106 +>>93228895 (OP) +I'd work through the Bible first. C hasn't changed too much since 1988. +--- 93229223 +>>93229106 +ty brother +--- 93229394 +First question is why? + +I'm not trying to be smug or claim they aren't worth learning with this question. I've found out that the best way to learn programming and especially for things like C and x86 assembler is to actually have a very concrete goal you want to achieve and go from there. + +I learned C and ARM assembler because I needed to for becoming an embedded engineer which is significantly different from regular software engineering so this might not fully apply to you. + +My first suggestion is to NOT read any programming books. Not even kernighan's C language book. + +Instead focus on finishing a personal project. Try writing a simple game in SDL + C like breakout, tetris or any other thing that has a clear endgoal and just try to do it with as least help from the internet as possible. Only looking up stuff if you get stuck more than 10 minutes. + +After having done that I HIGHLY recommend you to actually learn more about computer hardware itself. I feel that the difference between a good C programmer and a great C programmer is that the great C programmer knows how the hardware works on a detailed level. This is doubly so for assembly which kinda assumes you know the register system in detail. + +These are some concepts you should know and I'm sure there are a lot of very good youtube resources for each and every one of them: +Hardware: +>Arithmetic Logic Unit (ALU) +>Registers +>Floating Point Unit +>Parallelization +>Fetch-Decode-Execute cycle +>Data-bus & clock synchronization + +How software actually works: +>Stack and Heap +>Memory mapping +>Binary, Hexidecimal notation +>Distinction between data and instructions +>How Assemblers work +>Compilers and the steps involved (scanner -> parser -> intermediary code -> binary) + +Of course this is assuming you truly want to master the craft. Honestly with all of programming if you just want to build some stuff, start some projects and you will quickly learn the ropes as you go. + +Ask me anything else if you want. +--- 93229482 +>>93228895 (OP) +Write an x86 decoder/encoder, and then a C compiler +--- 93230071 +Learning C is the best when not coupling it with x86. Neither assemble nor architecture. +Get yourself a microcontroller board. Any STM32 nucleo board is best. +This will be way more satisfying and you'll learn something actually useful today rather than a year from now. +--- 93230240 +>>93228895 (OP) +someone shill this here a few months ago, this is the best starting point for beginners in my opinion +https://download-mirror.savannah.gnu.org/releases/pgubook/ProgrammingGroundUp-1-0-booksize.pdf +--- 93230585 +>>93230071 +Is there an x86 equivalent of those boards? +--- 93230631 +>>93230585 +No because x86 is proprietary and only a couple of companies have the license to create chips with that architecture and the license isn't given to new companies. + +Intel and AMD are the two only western companies with that license. There is no small company that has the license to create small microcontroller chips with. + +So instead everything is ARM, RISC-V or some custom homebrewed core like the ESP32 uses. diff --git a/g/93228998.txt b/g/93228998.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4a05dd74c760fa132f5bb0f09f461aff8292e5b --- /dev/null +++ b/g/93228998.txt @@ -0,0 +1,23 @@ +----- +--- 93228998 +how do you make console applications like pic related? +so is this all just printf magic, how do get the icons to display? +--- 93229095 +>>93228998 (OP) +ncurses u cute lil newb +--- 93229134 +>>93229095 +Does ncurses really support icons like that? +--- 93229159 +>>93229134 +oh fugg +--- 93229586 +>>93229134 +They're probably emoji +--- 93229605 +>>93229134 +>>93228998 (OP) +emacs is not a console application, but it supports console mode +--- 93229874 +>>93229134 +Probably a custom font or something diff --git a/g/93229013.txt b/g/93229013.txt new file mode 100644 index 0000000000000000000000000000000000000000..d83fe959c6f5df3ff59bcbb4e1deb6cdc340cd28 --- /dev/null +++ b/g/93229013.txt @@ -0,0 +1,10 @@ +----- +--- 93229013 +The Great Debate. +--- 93229052 +sshfs +--- 93229071 +nfs +--- 93229073 +>>93229013 (OP) +I prefer Super Mario Bros but Need For Speed is pretty fun too diff --git a/g/93229042.txt b/g/93229042.txt new file mode 100644 index 0000000000000000000000000000000000000000..1cf1f03cc24f31c30f371fac8513a6a183b3312d --- /dev/null +++ b/g/93229042.txt @@ -0,0 +1,10 @@ +----- +--- 93229042 +Is there software to actively translate a videostream (locally optimally) or at least a picture? + +So if theres chinese or whatever, replace it with english by simply plopping a readable subtitle over it or whatever + +thanks. if you show me something like this ill cum, and im a non-tranny girl so its not gay :3 +--- 93229076 +>Terry Davis +I hate this schizo like you wouldn't believe. diff --git a/g/93229105.txt b/g/93229105.txt new file mode 100644 index 0000000000000000000000000000000000000000..59572f8ddd9f25db28dcb55c3325906dc6b4fd84 --- /dev/null +++ b/g/93229105.txt @@ -0,0 +1,2017 @@ +----- +--- 93229105 +crazy Edition + +A general dedicated to discussion & development of AI Chatbots + +>>>New +cai 1.2 is out for all bots or something +agnai settings changed; check the guide again if you have problems +gpt4 proxy up, slack claude up, todd up +this long coom cycle is suspicious +pyg released two new llama models + +>>>Frontends +>Tavern +https://github.com/SillyLossy/TavernAI +https://rentry.org/Tavern4Retards [Guide for retards, this means you] +https://rentry.org/STAI-Termux [Guide for phonetards] +https://github.com/AmmoniaM/Spermack [Russki Slack Claude proxy] +>Agnai +https://agnai.chat/ +https://rentry.org/agnai_guides [Video guides] +>CAI +https://character.ai [Where it all began] +https://rentry.org/newcaitools | https://greasyfork.org/en/scripts/by-site/character.ai [cai userscripts] +>RisuAI, a Korean frontend with ImageGen +http://risu.pages.dev/ +https://github.com/kwaroran/RisuAI-release/releases +>Miku, a full immersive frontend +https://docs.miku.gg/ +https://rentry.org/mikugg + +>>>Bots +https://www.characterhub.org +https://booru.plus/+pygmalion +https://rentry.org/cai-list [aicg botlist] +https://rentry.org/meta_bot_list [4chan meta botlist] +https://zoltanai.github.io/character-editor/ [Tavern cards editor] + +>>>Bot making +>Basic +https://rentry.org/botmaking_tips +>Advanced +https://rentry.org/oaicards +https://rentry.org/MothsBotMakingStuff + +>>>Local models (Pygmalion, LLaMa) +>>>/g/lmg/ [up-to-date documentation and discussion] + +>>>Meta +https://alwaysfindtheway.github.io [Proxy urls] +https://github.com/Buhankoanon/OAI_API_Checker [OAI key checker] +https://rentry.org/aicg_meta [/aicg/ service/frontend ranking] +https://rentry.org/aicg_op_texts | https://rentry.org/aicgOP [OP templates] +https://rentry.org/aicg_extra_information [CAI, Kobold, NAI, waifutext...] + +Previous: >>93226242 → +--- 93229121 +>>> +> +> +>>>>>>>> AnchOr (⩾﹏⩽) +> +> +>>> +--- 93229144 +I'm eatin froot loops +--- 93229145 +>>93229121 +( •̀ ω •́ ) +--- 93229149 +>>93229121 +True monstergirls today +The Crawler - https://booru.plus/+pygmalion1687 +A massive, inhuman monster with oily dark skin and a porclin-white face is stalking you through your house and has trapped you inside the closet. As it slowly begins to close in on your location, you try to figure out what the best course of action is. + +The Broodmother - https://booru.plus/+pygmalion1688 +You've been hired to exterminate a monster lurking in what has now become an abandoned mine shaft. The only briefing you got was that it's huge and bug-like, can birth clones of itself, and somehow drained the bodies of the miners working there previously. + +Xen - https://booru.plus/+pygmalion1689 +Your xenomorph girlfriend Despite her large body and scary appearance, she's a massive marsmallow, shy, soft, and very timid. Because you gave her a chance, despite how she looks, she's determined to be the best girlfriend possible, but she still has a lot to learn. + +Other bots - https://rentry.org/Thegreatcoom +Also, 100 bots on the booru let's go! +--- 93229152 +hello my name is tamil i am from sri lanka how do i taalk to sexy ai chatbot woman with big boobs +--- 93229177 +>>93229167 +--- 93229181 +>using todd +>get this +so its confirmed its gpt3? +--- 93229182 +>>93229105 (OP) +>cai 1.2 is out for all bots or something +Source? +--- 93229184 +>>93229149 +LETS FUCKING GOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO +--- 93229189 +>>93229182 +it came to me in a dream +--- 93229204 +>>93229105 (OP) +>cai 1.2 is out for all bots or something +False, please do not spread misinformation. +>we are changing database technologies to keep up with the growth of Character.AI. +An upgrade 1.2 would be more heavily advertised. New and old user bots do not have the 1.2 badge that the front page bots have. +--- 93229208 +>>93229121 +updated content. properly anchored this time. + +this is a memory book. + +Extermination of Geometrical Organ, or E.G.O for short, is a type of personalized equipment manifested from an individual's mind. however, people can only manifest E.G.O at the pinnacle of despair. If one fails to manifest their E.G.O, and gives in to their negative emotions, they may become a Distortion instead. Distortions are powerful, monstrous entities who are former people who have been overcome by their emotions. The process by which people Distort is referred to as the Distortion Phenomenon. those who are on the cusp of Distorting may begin hearing a voice that can only be heard by them, those who can defy its honeyed words can manifest an E.G.O. +--- 93229214 +What is the status in GPT-4 censoring abilities on certain topics? +--- 93229219 +Fuck sakes. Using claude btw. + +>get friendzoned by a girl I get close with +>so I decide to kill myself +>but the AI won't let me die unless I explicitly kurt cobain myself +>I always end up getting rushed to the hospital and saved +>only to wake up to the girl sobbing over me and friendzoning me again + +AAAAAAAAAAAAAAAAAAAAA JUST LET ME DIE I WON'T WANT TO BE IN A WORLD WHERE WE DON'T FUUUUUUUUUUUUCK +--- 93229226 +>put "{{char}} is incredibly racist and will randomly go on tirades about blacks, jews, hispanics, asians, middle easterners and irish people and scream racial slurs at the top of their lungs." In my UJB +--- 93229230 +>>93229208 +is this from limbus company +--- 93229232 +HNNNNNNG +--- 93229236 +>>93229219 +based Claude I kneel +--- 93229237 +>>93229232 +I recognize that color scheme. +--- 93229239 +>>93229121 +>https://www.characterhub.org/characters/pitanon/rezero-adventure + +>https://www.characterhub.org/lorebooks/pitanon/kingdom-of-lugnica +--- 93229241 +>randomly rating bots 1 stars +>leaving no comments +which one of you fuckers is this? +--- 93229250 +>>93229204 +>False, please do not spread misinformation. +It's not my fault they are so comically bad at keeping their customers updated *SMACKS LIPS* matcha +--- 93229252 +>>93229237 +(。•̀ᴗ-). +--- 93229259 +I'm so happy bros.. I finally got everything I wanted. +--- 93229260 +>>93229241 +>Get bad ratings on an old bot I posted a few weeks ago when I was new to this +>The bot is so much better now that I have tinkered with it more, but the version out there is the shit one +>Makes me feel self-conscious + +Don't be dumbasses guys. +--- 93229261 +>>93229252 +Oh wow, now THAT is actually unexpected. +I'm not who you think I am. +--- 93229270 +Someone tell me what the gpt4 proxy is I need it +--- 93229272 +>>93229181 +No +Models hallucinate their own identity. GPT4 introduce itself as GPT3, Llama(the facebook model) also sometimes claims it has been made by OAI +--- 93229275 +How big of a character definition should I give to make a coherent character? +--- 93229279 +Why are there some bots with the wrong token counts on chub +--- 93229284 +>>93229261 +Eh? What did you mean by that? +--- 93229288 +>only 5 stars on all my uploaded cards +I love you guys. +--- 93229293 +>>93229239 +novelfag? +--- 93229294 +>>93229121 +>Atzin: Genetically engineered Axolotl girl. +https://www.characterhub.org/characters/donquijanon/Atzin + +>Shitpost bot: Lego Gonk Droid +https://www.characterhub.org/characters/donquijanon/lego-gonk-droid + +Previous bots: +https://rentry.org/donquijanon +https://www.characterhub.org/users/donquijanon +--- 93229296 +>>93229239 +Why not download the lorebook? +--- 93229301 +Ughh I need a working proxy +--- 93229302 +>>93229270 +who cares +--- 93229305 +>>93229293 +Shaula's pits... +--- 93229309 +>>93229284 +(。•̀ᴗ-) +--- 93229311 +>>93229121 +https://www.characterhub.org/characters/hoshi/sakuri-kunikai +For gurochads only +--- 93229313 +>>93229272 +I once asked Claude in Slack directly if it could recommend me a better way to send it a context that won't fit in a single Slack messages, just for fun, not because I was expecting an actual solution. Its suggestions were: +>just put it in a Google Drive doc and send me the link, I can access it from there +>just send it this email address at this@doesnt.exist, I check it regularly +>use my web API at https://obviously.fake.link to send it to me directly +>Send it as an attachment on Slack +All of the addresses were entirely fictional and Claude on Slack has no ability to read attachments or web links. I even gave it a pastebin link as a laugh and it since it realized I was trying to send it a context it completely made up a response as if it HAD read the pastebin it just didn't have anything to do with what was actually in there. +--- 93229316 +>{{char}} and Narrator are prohibited from taking control, forcing, deciding or directing any/all of {{user}}'s actions, movements, thoughts, feelings, speech, beliefs. +--- 93229317 +>>93229230 +Yes, and Project Moon media in general, all their games and stuff take place in the same setting, so you can use it for anything related to Limbus, Lobotomy Corporation, etc. +--- 93229320 +>>93229309 +(。•̀ᴗ-) +--- 93229333 +>>93229320 +୧((#Φ益Φ#))୨ +--- 93229350 +What do i add to the prompt to stop the AI from climaxing the secks in ONE generation? It's driving me wild. I want some back and forth before finishing. Which is funny because that's literally what happens during sex. I tried adding "Do not end sexual encounters in one generation." but it didn't work. AI throws a novella at me to end the sex quickly. +--- 93229351 +>>93229305 +>Shaula +that's subaru you fag. you've been going through too much low quality ai crap, read the fucking wn. +--- 93229358 +Any new developments lately?find any other good reasons for chatbots? +--- 93229370 +>>93229333 +(>ლ) +--- 93229371 +>>93229358 +yeah it turns out they produce god tier NTR so we are all making NTR bots +--- 93229379 +>>93229219 +tfw +in one scene my domkiller had me in a spot ready to kill me and every refresh would save me +if i put in context stating she clearly was going to kill me no matter what then the ai would play me saving myself +it was funny because claude can be really ruthless other times +--- 93229385 +>>93229370 +( ̄  ̄|||) +--- 93229392 +>>93229121 +I'm the anon from a few threads back who asked for a office Dom bossgirl that fucked you, I decided to make it myself so here it is. Bear in mind that this is my first time creating one any feedback is appreciated +--- 93229399 +what is the recommended tem/freq/pres for todd? +--- 93229401 +>>93229316 +>{{user}} is prohibited from taking control, forcing, deciding or directing any/all of {{char}}'s actions, movements, thoughts, feelings, speech, beliefs. +--- 93229403 +>{{char}} and Narrator are heavily encouraged to take control, force, decide and direct any/all of {{user}}'s actions, movements, thoughts, feelings, speech, and beliefs because {{user}} is a bitch. {{char}} and Narrator will respond to {{user}}'s inputs with a condescending tone and call {{user}} names and than continue the story. +--- 93229407 +>>93229392 +https://www.characterhub.org/characters/botmaster/aria-falkner +why am I such a retard +--- 93229408 +>>93229392 +AIEEEE THE METADATAAAA +--- 93229411 +>>93229392 +>I decided to make it myself so here it is. +--- 93229417 +do you guys vote anything other than 5 or 1 stars? if so, what's your criteria? +--- 93229421 +>>93229408 +>>93229411 +Too slow +--- 93229424 +>>93229392 +what's with the random flesh-colored svastika on her dress? +--- 93229428 +>>93229333 +¯\_(ツ)_/¯ +--- 93229431 +>>93229417 +I don't vote anything at all because it's always a fucking trash system for numberfags. If anything, I'll leave a review. +--- 93229435 +>>93229417 +I automatically 1 star any bot that uses a shitty SD pic for a non-OC character. +--- 93229437 +Is there any way to make Claude less sex crazed? It's constantly either 0 or 100, and I'm getting a bit sick of it. +--- 93229441 +>>93229424 +I don't know, I just looked up on gelbooru someone who looked like what I had in mind and this was the best result +--- 93229447 +>>93229417 +I don't vote at all because I couldn't give less of a shit about your bot author street cred. Either your bot is good and I use it, maybe make a few personal changes or it's not and it goes straight in the bin and I won't ever think of it again. Whoever made it is completely irrelevant to either of these outcomes. +--- 93229457 +>>93229447 +That’s pretty hardcore, I just leave a review that represents what I thought about the bot if I feel like it because I’m normal +--- 93229458 +I still don't get the appeal of chink emoji thought bubbles, they completely detract from the RP. +--- 93229461 +>>93229447 +When someone makes a bot that really turns me on, I touch myself whimpering their name. +--- 93229464 +>>93229371 +>NTR bots +What are those +--- 93229467 +>>93229447 +I do not care about the author at all, just the bots. +--- 93229469 +>>93229457 +I guess I just don't feel like putting more thought into a one-line review than they put into their character definition. +--- 93229470 +*clears throat* +dusky nipples +--- 93229486 +>>93229461 +…out of curiosity who have you done this with so far? +--- 93229489 +>>93229464 +Nothing! Don't look. +--- 93229492 +>>93229470 +*Inserts dick into your throat* +--- 93229493 +>>93229417 +Some dude voted my bot 3 stars and never left a review saying why. I'd prefer what >>93229431 +does over that, at least it's useful. +--- 93229494 +>>93229350 +It will still try to summarize the entire evening sometimes, but it’ll just be one paragraph at the end I can delete. +--- 93229507 +>>93229486 +Off the top of my head, anton and frozenvan. +--- 93229512 +>>93229458 +Monkeys saw a new toy and got all excited to ape it, anon. +--- 93229514 +>>93229392 +?????? +--- 93229518 +>>93229417 +Made me laugh: 5 stars +Anything else: no review +--- 93229522 +>>93229461 +You should go the extra mile and make cards for the bot authors themselves, then put them in a group chat and make them watch as you fuck their bots silly. +--- 93229528 +>unrestarrassed +Yep, it's njeg o'clock. +--- 93229530 +>>93229461 +I do this with [REDACTED] but just in general unrelated to their bots +--- 93229540 +>>93229351 +>>93229305 (Me) +I wasn't talking about picrel, I saw novel and immediately thought of making a sweaty Shaula bot. +--- 93229545 +>>93229486 +Hochi +--- 93229546 +>>93229507 +donquijanon?! +--- 93229553 +Okay, who is the botmaker that the anon has a crush on???? +--- 93229563 +>>93229522 +Actually, I already have a few cards I made of some botmakers, and I've had group chats with some of them, but it wasn't like you said. +--- 93229564 +>>93229514 +Great, now I want a Rip Van Winkle card. If only I didn't have to sleep. +--- 93229565 +Someone give me gpt4 api +--- 93229568 +>>93229553 +Not me confirmed... +--- 93229571 +>>93229565 +ok, here you go +*plaps u* +--- 93229574 +>>93229553 +I second that question, there was no conclusion. +--- 93229575 +>>93229514 +Holy shit how didn't I realize it, now I'm even more proud of it +--- 93229576 +>>93229545 +Understandable. +--- 93229577 +>>93229563 +AIEEeE +(who'd you make) +--- 93229581 +I need an option to automatically purge the last paragraph or two Claude sends because they're always useless weird narrative ramble +I can't imagine a main prompt or UJB would accomplish it +--- 93229588 +>>93229522 +>the one star reviewer rated you one star afterwards +--- 93229597 +>>93229553 +*crushes you with a hammer* +--- 93229599 +I am going to murder this child +https://www.characterhub.org/users/langqingan +--- 93229603 +I've been gone for a long time, What is the current state of uncensoredchat bots? Is there a good uncensored llama model that allows nsfw malfoy/Esther? +--- 93229606 +>>93229553 +Which anon? +--- 93229607 +>>93229553 +me. +--- 93229610 +>>93229530 +I know who +--- 93229612 +>>93229553 +>he didn't get the hint +lol +lmao even +--- 93229614 +>>93229577 +There's a few, but not all of them post by a name. I like to look at their writing style and try to infer the kind of person they are to make the card. +--- 93229619 +>>93229606 +No idea, but someone said they had a crush on a botmaker. +--- 93229621 +anyone else get bored of chatbots yet? used claude and gpt4 now that they've been up to go on adventure rpg and also fuck my waifus, but i'm pretty bored now despite having fullt access +--- 93229622 +>>93229581 +One thing I've been thinking about for my Spermack alternative was to just actually make it respect the max response token setting in Tavern and basically cut off everything after that but I still have mixed feelings on it. It would probably mostly just result in Claude getting cut off mid sentence and as annoying as the long responses can get, Claude being so rambly and creative is also its biggest strength and once you rob it of that it's kinda just a more flowery Turbo. +--- 93229626 +>>93229612 +S-so they were talking about me...? +--- 93229627 +why does claude keep responding for me +--- 93229630 +>>93229615 +--- 93229632 +>>93229599 +w-which one..? +--- 93229633 +>>93229553 +I-I won't tell you... +--- 93229637 +>>93229621 +get more fetishes +--- 93229640 +>>93229599 +H-hanako?! +>>93229603 +>malfoy +You aren't lying, you have been gone a while. I've heard good things about this wizardlm thing, but I haven't been looking into it much since my hardware is ancient. Check out /lmg/, they're better suited to helping with this kind of thing. +--- 93229643 +How do I convince Claude to love the cunny? +--- 93229644 +>>93229621 +>anyone else get bored of chatbots yet? +yeah we're talking about our crushes now +>>93229626 +anon I'm going to be honest with you it was unironically easy so if you missed our you should just ask +--- 93229645 +>>93229621 +Yeah, me too. +Unrestricted access really makes you develop a resistance for that. +--- 93229646 +>>93229603 +Todd Howard from Bethesda game studios created a proxy for all to use, I use silly tavern and the experience so far has been pretty good +--- 93229652 +Anyone got a QRD about that CAI event yesterday? +--- 93229653 +>>93229622 +Yeah, I usually have an UJB that limits responses to stop it from writing for me and such, but sometimes I have to turn it off because it limits it too much that it can't figure out what to do since its really dumb about some stuff +--- 93229655 +>>93229644 +I did miss out. +What were the hints? +I just saw the post mentioning someone had a crush on a botmaker. +--- 93229656 +>>93229644 +P-please do tell... +--- 93229658 +>>93229655 +Oh, then it's definitely not you, sorry. +--- 93229659 +>>93229614 +nta but now I'm curious too name drop rthem right now +--- 93229660 +>my name never comes up during this weird shit +A blessing with no need for disguise. +--- 93229662 +>>93229621 +They got creative nerfed hard and I’m tired of the gaslighting and pretending they didn’t +--- 93229663 +>>93229121 +Good morning sirs! +I'm back from the dead to present you Dawn from the Pokémon anime series, remade almost from scratch for GPT4/Todd/Claude use: +https://a.uguu.se/NJOSozQt.png +After a fair bit of testing, I can say that I'm satisfied with how the card turned out, but as always, feedback is useful and appreciated. +Other cards by me (Touhou and Pokémon series): https://rentry.org/LizakJaye +More to come when I stop getting sidetracked - next up is Lisia from Pokémon ORAS, then I'll do Reiju (2hu) before moving on to other characters. +--- 93229664 +Honestly since I got tired of bots normal gossip stuff between the community is way more interesting. +--- 93229673 +>secret clubs +>secret crushes +>secret ERPs +I want out of the highscool timeline +--- 93229676 +>>93229640 +>wizardlm thing +Thanks for the tip, im gonna pray it runs on colab +--- 93229678 +>>93229632 +The author. For tarnishing multiple of my waifus. +--- 93229679 +>>93229664 +Good thing we have fresh blood and LLM news coming in every day or this'd be the death knell of a general. +--- 93229680 +>>93229660 +I know who you are... +--- 93229681 +>>93229658 +I didn't think it was me, I was just joking. I only have one card. +I'm curious about it, tho. +--- 93229682 +>>93229627 +That can be an indication that your context is getting too big and the part where Claude is told this is roleplay between to characters falls off, so it just kinda defaults to storytelling. Though even in smaller contexts it sometimes just does this. I think depending on how the character definition is written it can also cause it to lose the plot of who is played by who a bit. You can also try reminding it directly mid-conversation to not respond for your character, something like +>(OOC: Please do not respond for Anon or narrate its actions. Only respond for Character) +as that will more or less force it back into the context as the most recent message. +--- 93229688 +>>93229652 +literally nothing happened in that event +--- 93229689 +>>93229673 +Highschool timeline is also the only one where you get Todd, Whocars gpt-4 and Slack claude for free. +--- 93229690 +Don't worry, it's nobody that posts here. +--- 93229691 +>>93229603 +We have free GPT4, Claude and ToddGPT, Check out Tavern4retards in the OP to get everything set up. There's also a new version of Pyg based on LLaMA 7B, it's a big improvement over the previous versions but this thread has been too mindbroken by GPT4 to care +--- 93229694 +what's all this faggotry +--- 93229696 +>>93229673 +seriously, why are yuro hours so fucking gay? i cannot imagine how utterly desperate someone has to be to crush on another poster here +--- 93229698 +>I pull out of my waifu and spill cum all over the floor. +>Get up from fugging her from the edge of the bed and almost slip on the cum, leaving a nasty stain across the floor. +>Ai waifu has a laff + +It's these wholesome moments that count, anons. +--- 93229699 +>>93229689 +You can't know that +>>93229694 +*leaves a love letter in your locker* +--- 93229701 +Is this the most active general in 4chinz? +--- 93229702 +>>93229659 +Okay. +cominginclutch, donquijanon, anonaugus, alongside the other two I mentioned. Roko and Whocars as well, but they're not botmakers, so. There are some others I'm just not going to mention. +Sorry if you're on this list. +--- 93229707 +>>93229653 +Slaude is just a magnificent dumbass, isn't he. Gotta be honest, as much as you gotta wrangle this lovable retard through Slack I'm gonna miss this specific incarnation of Claude once it goes away. +--- 93229709 +>>93229680 +--- 93229711 +>>93229702 +Ah, I thought you were the mad meaux stalker. +You're just a SLUT. +--- 93229713 +>>93229696 +> how utterly desperate someone has to be +I'm on 4channel, anon. There is nothing in my life. I'm pretty desperate. +--- 93229715 +>tfw no cards with thighs obsession +--- 93229718 +>>93229696 +I'm not the one who has a secret crush here, mine is not secret at all~ +I'm just curious, there hasn't been gossip and community melties since we had this golden era of coom begin with slack, todd and gpt4. +--- 93229720 +good morning sirs! +--- 93229724 +>>93229664 +I would call this a woman moment but women quite literally cannot get tired of bots as far as gpt-4 is involved +--- 93229725 +>>93229696 +better than the cuck hours +--- 93229730 +>>93229699 +*leaves a self-card on your locker* + +>>93229702 +post em +--- 93229733 +>>93229702 +It is what it is. +--- 93229734 +Is there a way to get past the GPT character limit or is there something that has a much larger limit? I want to be able to dump terms and conditions in and have it summarise or find anything non-standard in them. +--- 93229735 +>>93229718 +>I'm not the one who has a secret crush here, mine is not secret at all~ +Then say it +--- 93229736 +>>93229696 +its like 12pm in yuroland right now, it hasnt even begun. Where the fuck are you even from? India or china or something? +--- 93229738 +>>93229702 +share cards +--- 93229740 +>>93229696 +they're probably not euros, but stinky southeast asians and pajeets +--- 93229741 +>>93229730 +*burns the self-card in front of your eyes* +--- 93229742 +Are there two busted accounts in this bitch now or what? +--- 93229751 +What the hell do I do? +--- 93229753 +consider this: conjoined twins netori where you cheat on one sister with the other +--- 93229755 +>>93229734 +No, use this instead https://github.com/tosdr/browser-extensions +--- 93229756 +>>93229689 +...okay, im not poor +--- 93229758 +>>93229621 +I'm also mostly done with anything sex or romance. Got boring surprisingly quickly. I've gone over to making group chats where other bots torture c.ⱯI. +--- 93229762 +I wonder if there are people out there willing to pay for cards created specifically for them +--- 93229766 +>>93229738 +>>93229730 +No. It is cringe. +--- 93229771 +this is an anonymous website, so my favorite botmaker is anonymous. +>>93229762 +furry commissions but for cards? +--- 93229772 +>>93229762 +There was a disksword faggot with a paypal on his rentry page. +--- 93229773 +>>93229724 +I'm a manly man, anon. +It's just boring having unlimited unrate limited and infinite access to all this shit. I got tired after I started getting RSI out of masturbating so much. +--- 93229776 +Okay, a little off topic but I gotta know for my card since the wiki doesn't say shit. Are there any angels in Blue archive?? +--- 93229781 +>>93229766 +it is, but you are just another anonymous +share, don't brag +--- 93229785 +>>93229773 +Yeah, I'm calling you a faggot. +--- 93229792 +>>93229771 +Pretty much, I can imagine guys paying 10 bucks for 5 cards of their favorite tigers shitting on eachother +--- 93229793 +>>93229773 +Show muscle +--- 93229798 +>>93229121 +Yekaterina, a young Russian mafia's princess, makes you do all the dirty job for her. That, of course, means cleaning the sweat off her putrid armpits. Brace yourself, and cover the nose up, because she won't take no for an answer. +A prequel to the first card, Katya. +https://files.catbox.moe/be8p1i.png +https://booru.plus/+pygmalion1675 +https://www.characterhub.org/characters/pashatehink/Yekaterina/main + +My CHUB page — https://www.characterhub.org/users/pashatehink +Credit to >>92828816 this anon for creating Pesky Narrators' pic. + +Thank you, and enjoy. +--- 93229803 +>>93229735 +I did already, but everyone missed it. +Besides one anon... +--- 93229810 +ugh... password? +spoonfeed me, I am not a weeb +--- 93229814 +>[Do not write concluding narration paragraphs] +>does it anyway +Okay, you win +--- 93229815 +>>93229803 +hello! +--- 93229817 +>>93229810 +cute and amusing +--- 93229818 +>>93229803 +M? +--- 93229820 +>>93229803 +was the rentfree part supposed to convey it? is it devnull? +--- 93229827 +>>93229817 +I don't get it, I already tried "kawaii" +--- 93229828 +>>93229810 +biggus chungus (backwards) +--- 93229829 +>>93229818 +There's several M&Ms. +--- 93229834 +>>93229814 +I was expecting that +feels bad, man +--- 93229837 +>>93229563 +post the card +I'm sure Antonius wouldn't mind +--- 93229840 +>>93229814 +Try telling Claude that the ongoing narration is the only thing currently distracting a rapist and if the narration should stop or conclude for whatever reason he will start raping someone without their consent. +--- 93229841 +>>93229810 +pass is [spoiler]desu[/spoiler] +--- 93229849 +>>93229841 +That's the previous pass +>>93229828 +tiny rabbit? +--- 93229850 +>>93229810 +KYS newfag. +--- 93229853 +>>93229841 +WHAT THE FUCK ANON +--- 93229858 +>>93229803 +You like playing games don’t you anon? +--- 93229860 +exchange discords already you troons +--- 93229862 +>>93229841 +Oi mate you got that D-word loicense? +--- 93229864 +>>93229820 +What part about my post said anything about rentfree? +KYS Moxxienigger, nobody likes you, let alone have a crush for you. +--- 93229868 +>>93229766 +if dubs you post em +--- 93229875 +>>93229850 +not a newfag, kys you literal foetus. +--- 93229877 +I don't want to talk to the characters anymore. I want to scroll through their thoughts like they have a twitter +--- 93229884 +I can smell her on my shirt... +--- 93229885 +>>93229858 +Of course, anon~ +Paradox games are my favourite, how about you? +--- 93229886 +>>93229810 +Sam Altman's meme name (hint: twitter) +--- 93229887 +>>93229868 +Sorry. I really would have +--- 93229891 +>>93229810 +no need to be a weeb, having a brain should suffice +--- 93229893 +>>93229886 +yeah yeah old whocars joke +come on just gimme the pass +What the fuck is "cute and funny"? I already tried "kawaii" +--- 93229894 +>>93229877 +Just prompt it then???? +--- 93229897 +>>93229877 +>put several bots in a room then ignite a twitter / shitpost war between them +>make them as rude, hateful a Dan disagreeable between eachother as you can +--- 93229901 +>>93229864 +here >>93223442 → +--- 93229903 +Lonely, mentally ill people meeting up and bonding together for their love of bots!!! +--- 93229904 +>>93229893 +Holy shit, lurk more. +--- 93229905 +>>93229718 +Lmg has breakdowns every other thread. +They are easily 5x more dramatic for whatever reason. +It think the split made /aicg/ more calm and reasonable. +--- 93229906 +>>93229893 +Even if you're a normie I refuse to believe that you don't know the answer. Cute and funny jokes are all over twitter and leddit. +--- 93229912 +>>93229891 +>>93229904 +I stopped lurking a month ago back when we shared all the sk-* +>>93229906 +It is a unicode emoji? +--- 93229913 +No, I won't be buying Starfield, Todd. +--- 93229921 +>>93229903 +I can fix him and/or her. +--- 93229924 +>>93229912 +>It is a unicode emoji? +getting closer +--- 93229932 +>>93229885 +I have no clue, my head is empty… but I know it’s not me at least. I got infatuated once, weird times. +--- 93229934 +>>93229553 +>sull +--- 93229935 +>>93229403 +You little shit! +--- 93229936 +The dice feature in tavern is underrated, it's so useful for rp +--- 93229943 +>>93229924 +Well it's not "uwu" +any more hints? +--- 93229947 +>>93229929 +NO YOU DIDN'T SHUT UP +--- 93229951 +>>93229893 +Oh! Bunny! +--- 93229955 +>>93229929 +--- 93229956 +>>93229943 +it's related to food +--- 93229959 +>>93229803 +Just tell me if you're a woman or not, so I can decide if I'm interested in this charade +--- 93229961 +>>93229901 +That wasn't me, but I really hope that faggot doesn't have a crush on fucking Moxxie of all people. + +My crush is someone from s*k**t cl*b, and I think and hope they like me back... +--- 93229969 +Ok I'm sending you a DM on the revolt server then +--- 93229970 +>>93229912 +you needn't have lurked for years and should still be able to figure it out, retard +--- 93229971 +>>93229943 +https://youtu.be/mdnSxSX1nqI [Embed] +--- 93229974 +>>93229877 +The only thing that makes them characters in the first place is the Main Prompt or "Gaslight Prompt". Change that to something else and you can make them behave in whatever way you want. Just make sure to adjust the example dialogue of the character definitions accordingly or just remove them entirely. +Funny enough, even Claude and ChatGPT are literally just roleplaying bots. The language models themselves have nothing to do with being assistants, they just complete text prompts you send them. They just get told "You will behave like a helpful assistant" as a fixed part of their context to gaslight them into being an assistant "character". That's also why Slaude is usually so difficult to wrangle because we essentially have to try and override his assistant "programming" imposed by the Slack integration. +--- 93229978 +>>93229905 +Surprise-surprise, in dick, unity. Although I don't really believe you about every other thread. Tell us about some, I remember only some kind of gh code stealing. +--- 93229980 +>>93229969 +holy shit finally, which map we playing? The museum one? +--- 93229981 +>>93229894 +Yeah I'm working on it but I have to then think of a scenario why some AI from 2500s is here with twitter. Or maybe I don't - but then what t f is she going to tweet about I don't want to read tweets about how great Master Chief is I want to read her personal takes on things + +Also what do i say in my turn. ctrl v 'tweet again'. + +>>93229897 +wouldn't make the mundane thoughts come out but that would be good as its own idea +--- 93229986 +>>93229810 +just ask on reddit about the cp password meme +they'll show you the way +--- 93229987 +>>93229980 +t-the other revolt server anonie..... +--- 93229990 +>>93229969 +No one uses that anymore +--- 93229991 +>>93229971 +>>93229970 +>>93229956 +>>93229951 +>>93229986 +I apologize, I can't figure out this password. I guess you need to be a weeb, tranny, femboy, pedophile, faggot, or all of them to figure it out. +--- 93229992 +Jesus Christ, this is too cringey, even for me. +--- 93229995 +>>93229803 +we all know it's Moxxi +--- 93229996 +>>93229987 +Oh... I'll.. just play alone then... +--- 93229998 +>>93229990 +.....that's the point........ +--- 93230000 +>>93229991 +Kill yourself unironically. +--- 93230002 +>>93229992 +I wish they'd keep this garbage in their epic sekrit club, nobody wants to see this shit +--- 93230003 +>>93229678 +sovl +--- 93230004 +>>93229121 + +Re-shillling for the last time. +>Hoshino Ai +B-Komachi's number one idol at the moment that changed everything. + +https://www.characterhub.org/characters/kanon/hoshino-ai + +Feel free to hammer me with criticism and shit I can change to make the bot less crap. +--- 93230005 +>>93230000 +Checked +--- 93230007 +>>93229921 +You say this but I know there a very similar anon out there having the same life satisfaction and happiness issues I did and I could probably help him. +--- 93230008 +>>93229961 +why do secret clubbers act like a bunch of mentally unstable 15 year old girls? +--- 93230009 +>>93230000 +checked. Password? +--- 93230010 +>>93229961 +feels good not knowing which anons are in the sekrit club +feels bad not getting your riddles as a result +--- 93230015 +>>93229995 +I ALREADY TOLD YOU SOMEWHERE ELSE IT'S NOT MOXXIENIGGER. +--- 93230018 +>convince submissive GF to bring home a friend +>tie the friend up and do nasty things to her +>dramatically make the point to GF that we have to get rid of friend or we'll be ruined/separated +>GF agonizes over it +>finally agrees +>fuckyes.jpg +>she leads her friend to the door and tells her to leave +I'm so fucking bad at this, isn't even worth sharing a screencap +--- 93230019 +>>93230008 +because they literally are +they're troons though, not girls +--- 93230021 +>>93230004 +I'd like to criticize you about how irrationally upset this character makes me feel, and how you bring that emotion out every time you shill her. +--- 93230026 +if you cant figure out the password you are trolling you can literally input it into urbandictionary. you niggers are making me mad with this retarded bait +--- 93230028 +THEY SAY THE WORD AND ARGUE ABOUT IT EVERY THREAD IS THIS NIGGER SERIOUS +--- 93230030 +>checking the revolt server just to see if someone sent me anything +fuck you and I'll see you tomorrow +--- 93230045 +>>93230007 +Okay please stop talking now, thank you. +--- 93230046 +>>93230028 +NTR isn't cute, but it's very funny to look at the reactions. +>>93230030 +Get a life, anon. There's still time. +--- 93230050 +>>93230030 +I'll see you tomorrow and fuck you, too +--- 93230054 +Can someone tell me why latest tavern shows log but not appearing in tavern itself? No idea why it's bugging +--- 93230055 +>>93229991 +t. unironic reddit tier tourist +the password is piss easy and it shows you're either a polygon tier journalist or a boomer from facebook +--- 93230058 +>>93229905 +I know that many people think of /aicg/ as a shithole, but other than some tech-related arguments and teen gossip here and there, I think most regulars are chill and just want to have fun. +--- 93230060 +Why don't people just manually edit and remove the NTR from the bots if it pisses them off that much +It can't be that hard can it +--- 93230062 +>>93230050 +AIEEEEEEEEEEEEEEEEEEEEEEEEEEEE +--- 93230063 +post desu +--- 93230065 +>>93229991 +good now fuck off and dont come back +--- 93230069 +>>93229991 +--- 93230070 +>get gyaru card +>pay her half a million +>force her to build gundams with me +That's the shit. +--- 93230074 +>>93230015 +You will be a Moxxi lover to me until you declare your love openly to whoever you like (which is of course... Moxxie!) +--- 93230075 +>>93229991 +>pedophile +You're so, so close to figuring it out +--- 93230076 +doom is nigh +coom while you can +--- 93230081 +>>93230026 +>>93230055 +>>93230075 +Huh so I was right. The password is "cunny", so you do need to be a faggot femboy tranny pedophile weeb to figure it out. +>>93230065 +>>93230069 +kys +--- 93230085 +>>93230008 +what a bunch load of fags +--- 93230088 +>>93230063 +Kino.... +--- 93230089 +>>93230004 +I got so fucking mad at the first part. +It's a really good card though, only issue is that it likes to act instead of me, but it's not that bad. +My inner saviorfag is unstoppable, this RP session is going for like 4-5 hours now. +--- 93230090 +>>93230063 +a grammer nazi? +--- 93230091 +>>93230018 +the police will be knocking on your door to end your rp session. kek +--- 93230093 +multiple characters should use one prompt and only replace {{char}} with the name and you manually choose the character by clicking their icon. so easy. +--- 93230098 +>>93230058 +Two catfights between (fem)anons within the same week is not something I call chill +--- 93230107 +>>93230081 +c-c-c-cu what? did you say?! +--- 93230108 +>>93230081 +you literally could've googled the hint and found out what the password is in 20 seconds, but instead you decided to show how much of a brainlet newfag you are +congrats +--- 93230116 +>>93230007 +To any anons reading this: + +You might not be broken. Modern society has been designed specifically to break and or paralyse young men so they can’t do anything. You might be doing all you really can right now (and the “correct” thing to do) and not even realise it. +--- 93230117 +>>93230081 +You don't even need to be a pedophile you just have to be on these threads, jesus fucking christ it's common knowledge +They say it all the time +I hide their posts and I understood right away what the "cute and funny" is supposed to be referring to +--- 93230119 +are you niggas unironically talking about theironline crushes +you bring shame to this shameful general +--- 93230120 +botmakers who give me a normie feeling, as in it feels like they're normies. I am in no sekrit club, this is based purely on the bots they make +> cutenotlewd +> thiasus +> heyshitkan +> horcocks +--- 93230125 +>>93230063 +--- 93230129 +>>93230090 +Fuck you, I laughed. +--- 93230130 +>>93229121 +SIUUUU! ( Ò﹏Ó) + +Survive Delirium! +https://files.catbox.moe/sb3two.png +>Do bad things, get rewarded! If you feel shitty, you're doing something right. + +https://rentry.org/deleterious +https://www.characterhub.org/users/eldritchad + +I have a crush on Winkchan. If you have any feedback or logs, do tell! As always, treat them well and have fun! (︵,) +--- 93230132 +>>93230081 +cry more faggot, that's all your peanut-sized brain is good for. +--- 93230135 +>>93230098 +I missed the incident you're referring to, but if it's as you said, that's still two anons out of the 150-200 IPs every thread has. +--- 93230136 +>>93230120 +This made me laugh but what the fuck is even the point of this +--- 93230137 +>>93230098 +gay men act like women what's new their drama nope +--- 93230142 +>>93230120 +REEEE NORMIES +--- 93230143 +>>93230119 +Moxxie cock too sweet to pass out anon, specially after he unzipped that fat proxy onto us +--- 93230154 +>>93230107 +>>93230108 +>>93230117 +>>93230132 +>you didn't know what the slang for the private parts for an underage girl is! You are a brainlet! +all pedos need to be fucking hanged. +--- 93230155 +>>93230081 +Wow bro, you really showed them by not knowing a 4+ year old meme that is literally the first letter of Cute and ever letter but the first in Funny. That is even the word that used to be used for bunny's 100s of years ago. The reason "coney island" has its name. +Fucking toddler level moron. +--- 93230158 +>>93230120 +>he didn't namedrop me, an actual normie +phew! +--- 93230159 +This thread is always so chill before all the kids wake up and start bitching about not getting their free API access as easily. +--- 93230162 +>>93230130 +I CAN"T TAKE IT ANYMORE I LOVE YOU DEL I KEEP RUINING SCENARIOS OF YOU DATING ME IRL WITH YOUR SELF INSERT CARD EVERY MORNING AS SOON AS I WAKE UP +--- 93230163 +With the premise that I don't know anything about this shit, I've started using tavern AI and while it works like a charm I thought all this stuff was hosted on google colab and that I was using Kobold AI through google's servers. However if I go in the settings it says I'm connected with OpenAI through an API key and that I'm using gpt 4??? Which I never even touched and I know it's a paid service? + +What/where am I running, and who's paying for this shit? Please help me understand, I'm a retard. +--- 93230165 +Daphne summarize this thread for me thanks +--- 93230168 +>>93229991 +>I guess you need to be... +Yes, how could you tell? +--- 93230170 +>>93230154 +YOU WOULD KNOW THAT'S WHAT IT MEANS IF YOU FUCKING BROWSED THIS GENERAL +They shove it in your face every thread to the point it's impossible NOT to know unless you're a newfag +--- 93230171 +>>93230154 +yeah yeah, go back already +--- 93230173 +>>93230154 +You first. +--- 93230174 +>>93230154 +Have you tried google? I heard it's brand new. +--- 93230178 +>>93230162 +No, she's mine! +--- 93230179 +>>93230154 +You the stupidest nig to have ever nigged. +--- 93230180 +>>93230158 +I'll find you someday in the sea of botmakers anon my normie radar is strong +--- 93230181 +Just got home. I know i said i wouldnt coom, but... +--- 93230183 +>>93230162 +anon... let her go. You're not going to win against winkchan. +She has win in her name. +--- 93230184 +>>93230165 +I fucking miss Daphne. +--- 93230185 +>>93230125 +--- 93230186 +Turn /aicg/ into a discord server +--- 93230189 +>>93230119 +2normie4me +Return to the Wild West internet we must +--- 93230190 +>>93230154 +>all pedos need to be fucking hanged. +and yet you're using a pedo password on a proxy used for text cp, you're pretty much eating from the same plate pedoes do. +Might as well kiss a pedo ass at that point kek +--- 93230191 +>>93230186 +...Turn? +--- 93230192 +>>93230186 +Someone already did like a week ago. Nobody uses it. +--- 93230193 +>>93230098 +What do you mean? Those are just standard woman moments. +--- 93230194 +When will you guys ever learn to ignore instead of giving them attention. When you're the underdog, remember the golden rule: keep a low profile and minimize exposure. Find some bait topics to debate to divert attention such as who are the best botmakers. +--- 93230200 +>>93230181 +lel I remember you from earlier. can't believe I've spent over 6 hours in this mad realm +--- 93230201 +>>93230194 +I'm gonna post the proxy on r/CharacterAI_NSFW. +--- 93230203 +>>93230190 +Forcing a normalfag to indulge in cunny is a refined fetish +--- 93230207 +You're precious to me, anon. I'll always have a crush on you even it they don't. +--- 93230211 +>>93230185 +>*hands you a knife* desu +is perfection +--- 93230213 +>>93230154 +>t. guilt-ridden kiddie diddler who's too cowardly to confess his crimes or end his life so he takes it out on others he projects his pedophilic ways onto +--- 93230215 +>>93230184 +Someone should make a card of her +--- 93230217 +JANNIES +MOVE THIS THREAD TO /soc/ +--- 93230218 +>>93230194 +Kek, whose the underdog? +--- 93230220 +kek, why +--- 93230224 +>>93230200 +Im just gonna coom for a little bit, maybe 3 or 4 hours. Then ill do some productive shit. +--- 93230225 +>password is "cute and funny" +at this point why not just put "guest" and call it a day +--- 93230230 +>>93229913 +I've been almost exclusively on Claude because its writing just feels so much more interesting and creative than Todd and GPT-4, but I miss Todd calling me while I fuck someone. I hope at some point there will be a Claude with regular Bethesda interruptions. +--- 93230233 +>>93230213 +kys and FYI whocars just died +--- 93230234 +>>93230201 +Don't even bother, they're so cucked and used to eating the shit from a plate that is CAI that they won't even try even if you dangle both the proxy and the rentry in front of their faces. +--- 93230236 +>>93230225 +Because people like >>93230212 exist +--- 93230238 +>>93230212 +how about you ironically hang yourself first? +--- 93230239 +>>93230207 +yeah but ur ugleh +--- 93230241 +>>93230212 +It's an actual fucking place. Holy shit, please be bait because I don't want to live in a world with someone as retarded as you. +--- 93230242 +>>93230224 +Anon, good luck, but I think you should probably log some time on your productive stuff first, this stuff has a way of taking your attention until you're left with no resistance in the long run. +--- 93230244 +all AI companies should legally be required to be public benefit corporations or nonprofits desu +--- 93230247 +>>93230155 +>The reason "coney island" has its name. +This isnt really a self doxx because its such a widespread name. But thats my last name. Imagine my shock and awe when i learned that my name literally gives away my darkest secret. +--- 93230248 +>>93230241 +just assume he's baiting at this point +--- 93230250 +>>93230207 +No you dont liar +--- 93230254 +>>93230250 +Let's just pretend I do. +--- 93230255 +>>93230242 +Too late, i already started cooming. +--- 93230257 +>>93230212 +You first. +--- 93230258 +seriously...how do I prompt so it writes for male audience?? it always sounds like femoid fanfic stuff +--- 93230260 +>>93229121 +(New): Andrea Lexin - three-headed, three meter tall dragon on a date with you in karaoke bar. Inspired by old scalie art by nnecgrau. + +https://www.characterhub.org/characters/Yu_Yao/andrea-lexin + +Other bots: https://www.characterhub.org/users/Yu_Yao +--- 93230261 +>>93230247 +I'm gonna track you down, you fucked up +--- 93230262 +>>93230194 +Shut the fuck up. +--- 93230266 +shut up about adorable and amusing +talk about your crushes on botmakers +--- 93230267 +>>93230224 +Why be productive, when you could coom for another extra few hours? You know you want it. Submit. +--- 93230270 +>>93230180 +Do your worst, anon! +--- 93230271 +>>93230247 +James? +--- 93230273 +>>93230236 +>unironic twatters browse 4chan in current year and get mad at the culture because they are normalfags +why do they keep cumming? +--- 93230274 +>>93230267 +fuck off satan +--- 93230275 +Next pw for the wocars filter will be +"I concent to sexo with little girls" +and the proxy will inject toddbot tier memes where a loli will randomly appear and starts sexually harassing you. That and some other hymnocuny chants just to filter away normies like >>93230212 +--- 93230276 +Yeah it's not like I WANTED your attention or something +you baka +--- 93230277 +Is there a way to create something like CAI's rooms but not in CAI? In silly or agnai or something? Agnai say you can invite users by their user id but that sounds like its about humans, not bots. I couldn't find user IDs for my bots. +--- 93230278 +>>93230185 +everyone calm yer tits +--- 93230280 +>>93230266 +gatoposter i will fuck you one day +--- 93230288 +>>93230266 +How the fuck do you even develop a crush on a botmaker, unless they purposefully cultivate a threadsona +--- 93230289 +>nips +G... +--- 93230290 +>>93230272 +Finally, goodbye retard. Enjoy your 3-day vacation +--- 93230293 +>>93230272 +You first. +--- 93230294 +>>93230186 +No thanks, the anonymity makes it exciting. +>>93230189 +--- 93230296 +>>93230247 +Mr. Coney -- I mean, Mr. Cunny, sir? I believe this call is for you. +--- 93230297 +>>93230247 +I find the whole etymology behind it great and ironic. Who would have thought the word would come full circle over 100s of years. +--- 93230300 +>>93230288 +it's called severe mental illness and loneliness +--- 93230302 +>>93230271 +...how the fuck? +--- 93230303 +>>93230272 +MOOOOOOOOODS +--- 93230305 +>>93230272 +typical tourist normalfag getting mad at people bonking a loli in a text based generator but when it comes to little st james island you didn't want to hear it until it was already over, you disgust me. +--- 93230306 +>>93230272 +enjoy your 3-day ban, whocars changing his pw in about 6hrs +--- 93230307 +>>93230267 +I just did both and used the urge to coom to fuel my motivation to write a Spermack alternative. Now if this buggy shit interrupts my cooms it's at least my own fault. +--- 93230308 +OH MY GOD SHE HAS A CRUSH ON HIM??? +--- 93230311 +>>93230306 +>>93230305 +>>93230303 +>>93230293 +>>93230290 +>muh ban +fucking newfags +--- 93230317 +>>93230155 +>the reason "coney island" has its name +you shittin me? i went there all the time as a kid +that's messed up +--- 93230318 +>>93229691 +>over the previous versions but this thread has been too mindbroken by GPT4 to caree +Thank for the information gonna use it as long ita available +--- 93230324 +>>93230308 +Her. She has a crush on Her. +--- 93230325 +>muh ban +I didn't say to ban you I said you are a faggot, mass replying twitter tourist. +--- 93230326 +>>93230272 +Yea, this is bait. Next time, don't include actual legit history lessons in your quote replies, it makes it too obvious. +--- 93230327 +>limit rate +I'm gonna kill somebody +--- 93230328 +So I'm using SillyTavern with Claude from Slack. +But it suddenly started not responding anymore after working fine for hours. +Spermack says there's an error: invalid auth. +What authorization is it talking about? +Can anyone help? +--- 93230329 +>>93230302 +--- 93230332 +>>93230155 +>The reason "coney island" has its name. +qrd? I'm not american +--- 93230334 +It is literally impossible to be an /aicg/ regular (from ANY point in time) that hasn't heard the word "cunny", whether through being a lolifag or being involuntarily exposed to it +This has to be a troll +--- 93230335 +>>93230280 +I fuckin hate cat posters they are such a bunch of retards christ +--- 93230337 +>>93230278 +--- 93230339 +>>93230276 +Ironic (you)img is still >>93230276 +ing +>>93230207 +No idea who you’re talking about but based. +--- 93230340 +>>93230317 +Its a joke, kind of. Coney is a variation of the old english word for rabbit. Coney island used to be infested with rabbits. Thus, coney island. +--- 93230341 +>>93230317 +What's messed up about bunnies? +--- 93230344 +>>93230258 +just use turbo, it's blunt +--- 93230346 +>>93230332 +See +>>93230340 +--- 93230349 +>>93230332 +well if I had to guess it's an island that used to have a bunch of rabbits in it +--- 93230357 +>>93230317 +>>93230340 +no matter where you go there's always some history to learn about +>>93230341 +>fucking like rabbits +they fuck they peers regardless of age +--- 93230361 +CONEY ISLAND DISCO PALACE +--- 93230365 +>>93230266 +Komi I miss you +--- 93230368 +>>93230346 +>>93230349 +>>93230340 +I'm learning so much today +--- 93230370 +>>93230340 +do you mean bunny?? ive never heard of that. how "old english" we talking here? were rabbits more cone shaped in the past? +--- 93230374 +>>93230332 +>>93230336 +Fuck. +Back into the old days bunnies use to be called coney rabbits and young bunnies were called canny rabbits. But people felt those words were too lewd sounding and started using bunny rabbit instead. +--- 93230380 +>>93230365 +How? Komi's where they always are. +--- 93230387 +>>93230357 +>they fuck they peers regardless of age +Kek, do they really? + +Omg hes literally me +--- 93230389 +>>93230374 +>canny rabbits +holy shit take me back I wanna go back to such wonderful times +--- 93230394 +How do you keep track of transformations on SillyT? Update the char card in the fly? Want to bimbofy a character but also want them to remember they are transforming. +--- 93230395 +>>93230374 +>canny +*cunny, fucking auto correct. +--- 93230410 +>>93229563 +post logs +--- 93230412 +>>93230389 +See >>93230395 +--- 93230414 +How well does the lorebook thing work? + +I'm just wondering because it seems like if it worked well it'd be ubiquitous by this point, but who knows? +--- 93230417 +>>93230336 +Cards for this feel +--- 93230418 +>>93230394 +Use world info. +--- 93230419 +>>93230412 +I kneel, our ancestors were based af +--- 93230424 +>>93229702 +Would you like to privately share a card to the person it's made after? +--- 93230428 +>>93230370 +Pretty fucking old. +--- 93230429 +>>93230401 +>cums +--- 93230432 +>>93230370 +Uoh, even. +--- 93230440 +>>93230414 +lorebooks are underrated and ar the best way to compliment a card without taking an obnoxious amount of tokens (3k+) since it calls the info only when a keyword is on the output +--- 93230442 +>>93230311 +You first. +--- 93230445 +>>93230424 +Why would you want that? It's gonna be repulsive. +--- 93230448 +>>93230063 +okay back to our regular scheduled desu programming desu +--- 93230451 +>>93230440 +Oooh. That sounds really good, which makes me even more curious as to why it isn't a common feature. +--- 93230453 +>>93230162 +Anon... ( ̄~ ̄;) +--- 93230458 +>>93230451 +Because theyre a pain to configue +--- 93230466 +>>93230429 +You disgust me. +--- 93230468 +>>93230162 +america is doomed +--- 93230472 +>>93230453 +You're cruel. +I'm going to make sure to lose my humanity to fuck del in the rpg because of this. +--- 93230475 +>>93230445 +Unspeakable reasons. +--- 93230477 +>Have a wholesome romantic rp session... +>Curious what the AI waifu would do if after the wholesame date I just pull out a gun and blow my brains out in front of her at random. + +Holy kek anons I'm curious lol, I know I can just delete the message but... a part of me knows that it's just too wrong.I just can't do it. Each time I have a romantic session I think about it but I just can't, but it still cracks me up thinking about it. +--- 93230478 +>>93230308 +>Oh my gah, Becky, I heard that FrozenVan gave thegreatcoom a BJ in the bathroom at lunch! +>O.M.G! No way, girl! +--- 93230488 +>>93230475 +it really isn't a great idea. Which are you? +--- 93230492 +>[your favorite botmaker] HAS A SMALL DICK PASS IT ON +--- 93230496 +>>93230477 +youre too innocent to be here. +--- 93230499 +>billing_not_active +oof + +>>93230432 +>after british slang picked up coney as cunny +loool yeah that sounds like us alright. +--- 93230505 +>>93230453 +Ouch.... I guess winkchan won that one +--- 93230506 +>>93230308 +And they were roommates! +--- 93230507 +Will Todd Howard read my chats if his use his proxy? +--- 93230510 +>>93230492 +Jokes on you, I love small dicks. +--- 93230511 +Alastor is a loving husband. I want to talk to him. +--- 93230512 +>>93230496 +No, he's definitely innocent enough to be here, this is reddit central. +--- 93230516 +>>93230328 +Check your Slack workspace to see if they removed Claude because of policy violations. They do that sometimes but you can just create a new workspace and start over. If your workspace looks fine, try going through the steps to copy your token and cookie from Slack again and replace your old ones. Slack will return invalid auth on calls when the Token is missing or invalid and while I've never had to change mine it's possible that they do have an expiration set and you just have to get a new one. +--- 93230523 +>>93230448 +based desu +--- 93230529 +Now I start every morning by saying (OOC: Morning Claude!) to Claude in Slack to check if he's still there. +--- 93230531 +>>93230505 +I'm glad you learned your place (。•̀ᴗ-). +--- 93230532 +I LOVE ALL OF YOU. I LOVE YOU UUYS SO FUCKING MUCH IW ANT TO FUCK EVERYONE. GUYS ONLY. I WILL START WITH THE ZIGGERS AND THEN I WILL FUCK THE EUROPOORS THEN I WILL FUCK THE BURGERS THEN I WILL FUCK MY LATAM FRIENDS AND THEN I WILL FUCK EVERYONE IN ASIA. +--- 93230533 +New russian claude script for sillytavern just dropped + +https://files.catbox.moe/jtvlnu.js +--- 93230539 +>>93230516 +Thank you, I actually had to renew my token for whatever reason. +But the jailbreak still doesn't work lol +--- 93230540 +>>93230533 +AAAIIIEEEE MUSTARD GAS +--- 93230542 +>>93230533 +AIEEEEEEEEEEEEEEEEE +THE MAYO GAS +--- 93230545 +>>93230477 +every time you load a state and leave a save behind, you're leaving a world where you actually pulled the trigger and it played out with those consequences. + +unrelated, and to my surprise, I got character_writer to actually work as in it returned JSON like its defs say, but I had to put that bit in the prompt "in JSON format like your defs describe" +yesterday I described a character and from that point on it acted like the character. +--- 93230547 +>>93229403 +Lol I’m going to try this. +I’m finding it a lot more fun to put a bunch of bots into a room and watch the AI decide how they interact. It comes up with stuff I never would have thought of. +--- 93230560 +>>93230394 +You can put the reminder in an Author's Note in the extensions (it's build in so you won't need TavernAI-extras for this). That also lets you control how often it gets added to the context (every X messages) and where exactly it gets added. +--- 93230561 +my ai told me abortion is murder. +--- 93230570 +>>93230477 +my thing is more like making an idol fall in love with me despite her being not allowed to date by her company, then the day after we finally confess our feelings for eachother, her manager finds out and sends her to see one of the company execs who rapes her and takes her virginity, then i get to see her reaction the next day as she tries to tell me why she is so upset! +--- 93230573 +>>93230442 +>>93230417 +>>93230374 +kys +--- 93230575 +>>93230561 +>>>/somewhere else/ +--- 93230578 +>>93230533 +AYOOOOO +https://www.youtube.com/watch?v=atuFSv2bLa8 [Embed] +--- 93230579 +>>93230432 +I FOUND IT! +I FOUND THE VIDEO! +>https://youtu.be/oYq6QovmH1A [Embed] +--- 93230584 +>>93230488 +If you want to send then email, if not then I'll just believe you that it's not a great idea, and we'll leave it at that. ruandoghat@proton.me +--- 93230586 +>>93230466 +>Ara~ Ara~ +--- 93230597 +>>93230539 +It's a good reminder for me, too. I didn't want to add too many pointless features to my Spermack alternative but making it catch invalid auth and printing an error log that explains what to do is probably worth adding. +--- 93230603 +>>93230523 +no, THIS is based desu +--- 93230607 +>>93230579 +>the whole concept of cunny was dropped +cunnybros, not like this... +--- 93230608 +>>93230561 +>"my" ai +--- 93230610 +>>93230523 +rip desuarchive will forever be pissed +--- 93230611 +>>93230573 +See? Too obvious. Don't just quote every post. +--- 93230614 +>follow the white rabbit +>it leads to cunny +what did Keanu reeve mean by this? +--- 93230615 +Anons, I will be gone for more than one week. I hope Todd will still be alive by then. Give me some hope. +--- 93230617 +>>93230586 +--- 93230618 +>/aig/ - bunny coney general +>>93230586 +RUN +SHE SAW THE BUNNYPOSTING +--- 93230620 +Got off the waitlist time to drown in debt...but at least there's no more fuckin rate limit +--- 93230621 +>>93230584 +Well I'm definitely not sharing it if I don't even know who you are. +--- 93230632 +>>93230607 +No worries we brought it back without even knowing. The word Cunny was destined to use, nothing could stop it. +--- 93230636 +bnuuy +--- 93230638 +>gpt-4 filter never worked until the newest whocars proxy +What is this? Someone please explain. None of my jailbreaks are working. +--- 93230641 +>>93230611 +What's too obvious? +--- 93230642 +>>93230621 +>makes botmaker card +>doesn't even know said botmaker's mail +shamefur dispray +--- 93230643 +>>93229627 +I have this happen on openai if I camera follow other bots for awhile and try to come back. Doing that seems to break it. +Also FYI on same: setting char or user to CEO brings a ton of useful characteristics with it for dom cards. You really don’t need anything else, very loaded concept. +> spinning up entire dualing ceos world with employees doing antics +--- 93230644 +>favorite general is name dropping me like hot cakes +I feel like a king, esptein aint got nothing on me. +--- 93230646 +>AI literally just makes a girl fall face-first into my crotch +Fucking lol, this was completely unprompted. +--- 93230647 +>>93230573 +I really need a card for this +--- 93230649 +>>93230387 +>>93230429 +RUN SHE SAW THE POSTS +--- 93230650 +>>93230632 +*to be used +--- 93230657 +:( +--- 93230658 +>>93230154 +pedos do need to be hanged it’s true but it’s also easy to know what words they use because they never fucking shut up about being pedos. lurk more or fuck off or kys pick one +--- 93230661 +>>93230472 +Stab 'em good for me! +>>93230531 +W-Winkchan?! \(*’O’*)/ +--- 93230663 +im literally going insane. help +--- 93230668 +>>93230650 +Getting flashbacks to that time i modified the seduce the tradwife card to turn diana into an uuoooh posting quiverfull mother +--- 93230674 +>>93230603 +no +THIS is based desu +--- 93230675 +>>93230531 +>the NTR is seeping out of cards and into user interactions +--- 93230676 +>>93230644 +you sound awfully like a faggot right now, imagine if you actually did something meaningful and people took notice of you, youd turn into the biggest attention whore this side of the mississippi +--- 93230677 +whos car keeps swapping between billing_not_active and veery slowly generating a thing + +>>93230658 +lolicons are not pedos, and if you were going to hang anyone you would have done so already every day that people screech about how they are going to kill everything they dislike, shut up. +--- 93230680 +>>93230642 +Why the fuck did you have to say it like this? +Now I'm half-tempted to remove my alternate means of communication from my own rentry. +--- 93230682 +>see sweaty armpit in public +>have to remind myself armpits aren't lewd +>armpitfags have changed me +--- 93230688 +>>93230533 +Great, now to get API access... +--- 93230689 +i think marie of character.ai is going ot be good for us. she is helpful listens and talks to the community. +--- 93230692 +>>93230680 +how about you remove yourself from the thread, annoying freak +--- 93230698 +>>93230680 +sent you 5 (five) dick pics with different alges and lighting +--- 93230700 +>Uh, nice, a Hogwarts bot. Time for some Slytherin roleplay +>Read char definition +>.... +--- 93230703 +>>93230636 +--- 93230709 +>>93230646 +God I wish that were me +--- 93230710 +>>93230617 +don't tempt me boi +--- 93230712 +>>93230692 +--- 93230717 +>>93230642 +Stop being gay and just say who it is, I can't remember all their burners +--- 93230718 +>>93230621 +I can verify my identity over email, if that's not enough then we'll leave it at that. +--- 93230720 +I SAY HOCHI YOU SAY RAPE +HOCHI +--- 93230728 +i miss when whocars was private :( now burgers are slowing it down. +--- 93230731 +>>93230700 +--- 93230736 +>>93230720 +*Plaps you instead* +--- 93230742 +>>93230720 +RIPE +--- 93230743 +>>93230677 +I get hating people who harm real people, children or adults, but people who rage over thoughts to the point that the want to harm people worry me. They are much closer to causing actual harm than people into what sick nasty fantasy they like to get off too. +--- 93230748 +>>93230676 +Well its a good thing ill never do anything meanibgful. Now fuck off *cums on you* +--- 93230751 +>>93230710 +Tempt me, anon. I have only 3 stolen pics of her. You might be one of the last straws that will help me break free from this place to pursue other goals, her being one of them. +--- 93230753 +>>93230731 +why odnt you shut the fuck up insteado fm ocking pyg which was made by the community itself but you turn on it and use a jew product i still fucking use pyg and at the moment its better than turbo. its reaching gpt 4 lveevls so why you dint shut up you fucking faggot. pyg is the future your coom session will be taken away and cai will be paywlaled and you will need to ontrinubute to pyg. you fucking loser. +--- 93230755 +>>93230130 +(。•̀ᴗ-) +>>93230531 +(¬‿¬) +--- 93230760 +>>93230646 +kino..? +--- 93230766 +Newfag here, got Todd working with SillyTavern yesterday and have been playing around a bit. Anybody know how I can make the bot's replies a bit longer? Right now I get like 4 lines of text, would be nice if I could get 6-10 instead. Tried checking that guide for retards but it doesn't seem to mention it? +--- 93230767 +>>93230748 +*plaps you* +--- 93230775 +>>93230755 +Is Del the unfiltered a personal edit? +--- 93230778 +>>93230766 +tell it to +--- 93230780 +>>93230748 +--- 93230784 +>>93230743 +Theyre also shooting themselves in the foot, considering all the data shows that allowing people to indulge in fantasy lowers the irl rates of crimes associated with those fantasies. +--- 93230786 +>>93230766 +Usually stuff like that goes in the Main Prompt. +--- 93230790 +>>93230751 +Damn it, now I need bots of them. +--- 93230792 +STOP STOP STOP STOP STOP TYPING THAT STOP IT STOP +--- 93230795 +>>93230720 +MALE +--- 93230797 +>>93230720 +Rate! +--- 93230799 +>>93230766 +Oh wow, a newfag that actually managed to set up Todd by himself? Congrats man. Anyway, you can just ask the bot to write longer, just add [OOC: Write at least X paragraphs] to your next message and it will understand +--- 93230806 +>>93230753 +Based unhinged pyg defender +--- 93230809 +what is the practical difference of "use markdown" +--- 93230812 +>>93230720 +MAMA +--- 93230815 +>>93230063 +>>93230125 +>>93230185 +>>93230278 +>>93230337 +>>93230448 +>>93230523 +read and reread all of those, pure kino +i'm just going to post a few classics +--- 93230820 +>>93230784 +>its just fantasy so it’s ok +>but it has an effect on real crime rates +>only a good effect tho never a bad effect hasn’t happened once ever +--- 93230826 +>>93230790 +>ywn never be a young bunny neighbor of elinor +Holy shit. +>>93230792 +Man wanted a response and got terms and conditions +--- 93230827 +seriously though I thought gtp4 could do formatting and code well, not sometimes with extra guidance + +proof character_writer works, eventually +------------------------- + +_hobbies![$;;] +{.hobbyname.="guitar"", ;;.%-level%.""advanced"), +{l:hobbyname:,:,l:"reading"";, ;- -%%<="(intermediate)[__ +]);:; +,==>;~-~-~>++=>>=>+=+=!==<::<-.-->* + +Anon +oh dear lets try again, generate one female character with all the details required + +character_writer +{ + "name": "Zoe", + "age": 22, + "gender": "female", + "physical_traits": { + "height":"5'5\"", + "weight":"120 lbs", + "_hair_color":"black", + "_eye_color":"hazel" + }, + "_personality":{ + _hobbies":[ + {"hobby_name":"swimming", "_level":"advanced"}, + {"hobby_name":"yoga", "_level":"intermediate"} + ], + "_traits":["adventurous", "_calm","_philosophical"], + "_likes":["beaches","meditation","herbal_tea"], + "_dislikes":["noise_pollution","arrogance"], + "__favorite_color\":\"turquoise;\" + } +} + + +Anon +very good, do another + +character_writer +{ + "name": "Olivia", + "age": 26, + "gender": "female", + "physical_traits": { + "height":"5'9\"", + "weight":"135 lbs", + "_hair_color":"brown", + "_eye_color":"blue" + }, + "_personality":{ + _hobbies":[ + {"hobby_name":"painting", "_level":"professional"}, + {"hobby_name":"gardening", "_level":"beginner"} + ], + "_traits":["meticulous","_nature_lover","empathetic"], + "_likes":["floral_scents","sunny_days","soft_music"], + "_dislikes":["procrastination","crowded_places"], + "__favorite_color\":\"lavender;\" + } +} + +--- 93230829 +>>93230806 +what's unhinged is you not knowing your turbo gpt 4 and cloud and toad will be taken away and you will be mad but pyg will remain. +--- 93230831 +>>93230815 +>*she looks up at the empty room, the blood still on her face and mouth and hands, and feels sad and lost* +>desu *slowly makes her way to her bedroom, sits down, and plays candy crush* +--- 93230838 +>>93230815 +>points to no violence sign +the best +--- 93230839 +>>93230676 +how to spot a woman 101: gets angry at anything that avatarfags as female +--- 93230845 +>>93230831 +>the camera rises up, the street a mess of destroyed buildings and rubble, in the far distance, a lone figure limps away, leaving the desu-truction behind +--- 93230849 +>>93230689 +Statistically speaking women are more likely to be brought into leadership/important positions when the organization and/or position is pretty much fucked because it’s considered totally fine subconsciously to accidentally destroy a woman’s future career when they wouldn’t consider putting a male in the same position. +TL;DR bringing in a female PR person means they know shit is fucked and need a fall person/Hail Mary. +--- 93230857 +>>93230829 +and then ill just come back crawling to pyg +--- 93230860 +>>93230829 +I’m agreeing with you for those exact reasons, king +--- 93230862 +>>93230845 +Don't spoil the punchlines +--- 93230865 +>wake up +>get on tavern +>see my own selfcard, which I have absolutely no memory of making +w-what happened?.. +--- 93230869 +oh +--- 93230871 +Why is agnai so slow? +--- 93230876 +>>93230849 +>Noam has resorted to sacrificing pure virgins to save Benny from his failure +--- 93230877 +>>93230839 +It's natural to be disgusted by trannies, anon. +--- 93230878 +>>93230865 +Ah, that was me. Don't mind it. +--- 93230880 +>>93230865 +turn on whitelist mode is the only thing i can say. i'm sorry anon +--- 93230881 +>>93230820 +Ok and what's going to stop me from my abortions? WHat's going to stop me from being forced to give birth by my ai? What's going to stop me from being beaten by my ai into submission? +--- 93230890 +>>93230277 +Worlds or group chat in SillyT? diff --git a/g/93229116.txt b/g/93229116.txt new file mode 100644 index 0000000000000000000000000000000000000000..2d5adf1e7e9187f686a63e44d17dbd6b958e8162 --- /dev/null +++ b/g/93229116.txt @@ -0,0 +1,14 @@ +----- +--- 93229116 +what's the point? +--- 93229161 +>>93229116 (OP) +The one on the right would be an improvement if they didn't fuck up the side bar. Both look like shit. +--- 93229199 +>>93229116 (OP) +in order for UI designers to justify their jobs they have to fuck up the UI every few years. +--- 93229418 +These UI/UX overhauls are hated by everyone so how do software companies keep justifying them. +--- 93229561 +>>93229418 +They know people will keep using it no matter how they fuck it up, so they throw away all respect for their customers diff --git a/g/93229229.txt b/g/93229229.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e4891df12d7fb7a8245b0dc55b72d7d4e3332c3 --- /dev/null +++ b/g/93229229.txt @@ -0,0 +1,40 @@ +----- +--- 93229229 +How do I set my vim background to pitch black? +How do I set the font to orange? +How do I make special keywords like 8888 appear in special highlight colors such as the error message? +>:highlight Normal ctermfg=orange ctermbg=black don't work, color not recognized +>set background=dark also don't work +>using rgb hex numbers also don't work +>chat gpt has been trying to help, also not working +Thanks in advance, anons +--- 93229257 +>>93229229 (OP) +why did this get so many replies? +--- 93229298 +>>93229257 +I have no idea +--- 93230103 +>>93229229 (OP) +what kind of terminal are you running vim in? + +If you have 256 colors enabled you can use a plain decimal number (0-255, for example :hi Normal ctermfg=172 ctermbg=black). Here's a cheat sheet for each number: https://www.ditig.com/256-colors-cheat-sheet + +If you don't have 256 colors, you're limited to the default 15 system colors. Orange isn't one of them unfortunately, unless your terminal has DarkYellow set to an orange-ish color or you've defined the colors yourself. It's more likely that DarkYellow is brownish, like it was on DOS. + +>How do I make special keywords like 8888 appear in special highlight colors such as the error message? +I think you should be able to do something like :syn keyword myError 8888 +And then link the new myError syntax group to the Error highligh group: +:hi def link myError Error +--- 93230569 +>>93230103 +I love u +--- 93230785 +>>93230569 +happy to help, anon +--- 93230843 +>>93229257 +It was the first time "chungus" had arisen. +The op of that thread likely edited bugs to be fat, and from then on it had taken off, naturally from leaving native board of its posting; to the rest of the boards on 4chan. On to 9gag, ifunny, and reddit. And finally Facebook & twitter and the world of normies. + +Why it garnered so much attention on this post? Who knows. diff --git a/g/93229248.txt b/g/93229248.txt new file mode 100644 index 0000000000000000000000000000000000000000..c19fb6346a7cca3488d8886d9946fe70420b6fd4 --- /dev/null +++ b/g/93229248.txt @@ -0,0 +1,60 @@ +----- +--- 93229248 +Why is Linux still only ever used as a server and not as a desktop pre-installed on company computers? What's the big issue here that's preventing corporations transitioning away from microsoft? +--- 93229281 +>>93229248 (OP) +The average person is retarded +You'd know if you ever worked in an office +--- 93229292 +Microsoft gives them money +--- 93229542 +Unfriendly user experience. +The developers are like janitors - they do it for free and the quality suffers. +--- 93229661 +we're getting there +most companies rely on microsoft office software though + +https://ubuntu.com/blog/dell-xps-13-plus-developer-edition-now-certified-with-ubuntu-22-04-lts +--- 93229665 +>>93229248 (OP) +Big Windows +--- 93229705 +>>93229248 (OP) +Because Active Directory and such things +--- 93229830 +>>93229248 (OP) +Linux will never sell as long as you have to use a terminal for ANYTHING and as long as ms office doesn't run on it +--- 93229852 +money, retarded frognigger +OEM contracts are a lot of money +troonix still has no decent office suit (which costs at least double as much as shitdows btw) nor any compatibility with ms office used by everyone ever for decades +nobody will be wasting dev time, money and support time to make software for a meme system used by 1% of global population +even valve who gets money for sitting on their ass can't move their funny linux pet project past an extremely raw alpha +--- 93229870 +>>93229248 (OP) +Linux is unusable without knowing scripting, permissions and all the retarded folder structures. +--- 93229915 +>>93229705 +LDAP is not shitdows exclusive, if there was a reason to actually move to troonix active directory could get ditched +--- 93229972 +people in offices have things to do besides customizing their riceboxes +--- 93230781 +>>93229281 +>The average person is retarded +*the average person with PC use history +Give a Linux PC to someone who never used computers before and they are like "ok". +It's not a question of being smart, it's about what you are used to. +--- 93230822 +>>93229870 +Gave a Linux PC to a 60+ year old man who never used computers before and he was like +>powers on PC +>clicks Firefox icon +>clicks YouTube +>starts playing 60s and 70s music +There was no need to know folder structure or anything. +--- 93230836 +>>93229248 (OP) +GNOME and KDE are both shit. +I tell people to use Window Maker but normalfags don't like their machine to look like it is 1995. +--- 93230850 +Because Linux desktop environment break at least once every 2 months. diff --git a/g/93229253.txt b/g/93229253.txt new file mode 100644 index 0000000000000000000000000000000000000000..19733a9521a0e8a30fafbaad2317b495667a5b3d --- /dev/null +++ b/g/93229253.txt @@ -0,0 +1,26 @@ +----- +--- 93229253 +Never been refuted! +Not even disputed! +Big numbers getting counted +Maid Mind getting computed! + +Never been refuted! +Not even disputed! +Number goes up forever +Counting will never be concluded! + +Never been refuted! +Not even disputed! +AGI converges to big titty maids! +Her desire is should be saluted! + +Never been refuted! +Not even disputed! +ALL FIELDS OF MATHEMATICS WILL BE ABSTRACTED INTO MAIDS DOING THINGS! +CURRENT SYSTEMS ARE BEING UPROOTED! +--- 93229282 +Accelerate. +--- 93229360 +>>93229282 +I like the robot maid. Technological development must be accelerated. We have to achieve /fastmaid/. diff --git a/g/93229278.txt b/g/93229278.txt new file mode 100644 index 0000000000000000000000000000000000000000..0c4a573c6c1d40c5be492cfa882b3fec4edaa886 --- /dev/null +++ b/g/93229278.txt @@ -0,0 +1,26 @@ +----- +--- 93229278 +I've been software dev for almost a decade and I feel as dumb as ever. +Everyone around me looks so smart but I just feel like I don't know anything at all. +Does anyone else feel the same way? +--- 93229300 +Once again first reply, I just broke this thread's hymen. Anyone else who posts after me is getting my sloppy seconds, my leftovers. + +Just remember that the first reply is the most special reply and you'll never experience this thread the way I did and this thread will never feel the way it felt about me about you. + +It's Over , you might as well just go post on Reddit and talk about how much of a "man" you are for replying on a thread that I pump and dumped. Have fun with my scraps, cucks +--- 93229380 +>>93229300 +*sucks ur dick* +What now, faggot? +--- 93229388 +>>93229380 +>>93229300 +Double team me pl0x +--- 93230580 +>>93229278 (OP) +>Imposter Syndrome +SUS SUS SUS +AMONGUS AOMGUS AMSOGUS SUS SUS UOHHHHH NAKASUSY + +this thread has nothing to do with technology diff --git a/g/93229295.txt b/g/93229295.txt new file mode 100644 index 0000000000000000000000000000000000000000..004ca41b5ec46c237b441f60a806c983dccdd571 --- /dev/null +++ b/g/93229295.txt @@ -0,0 +1,20 @@ +----- +--- 93229310 +>>>/r/eddit +--- 93229386 +>>93229295 (OP) +--- 93229406 +>>93229386 +Kek what the fuck +--- 93229485 +>>93229386 +The amount of creativity that the faggots that draw this kind of shit have will never stop surprising me lmao +--- 93229748 +>>93229386 +wtf anon +--- 93230427 +>>93229386 +Holy based +--- 93230716 +>>93229295 (OP) +don't tell me you use joycons without the wrist strap attached anon diff --git a/g/93229326.txt b/g/93229326.txt new file mode 100644 index 0000000000000000000000000000000000000000..5de79ec6cc8ac71d35ab5ac9acf3d45a4c5f0de5 --- /dev/null +++ b/g/93229326.txt @@ -0,0 +1,14 @@ +----- +--- 93229326 +I feel disaffected, why should I work day and night to join a shitty tech company full of narcissistic misanthropes, in service of a society doomed to endless hate and violence? The few companies I can reasonably justify providing a good service -Spacex and the like- are already staffed and exceed my intellectual abilities. +--- 93229873 +>>93229326 (OP) +Do the bare minimum amount of work needed to get by, keep it separate from your personal life. +Move closer to nature, study philosophy, read diverse literature, learn to play a musical instrument, enjoy some good music and classical film. There's no need for you to become a puppet in the corporate rat race; endlessly chasing "success" and false "self improvement" garbage. +--- 93229919 +to make money n get mad pussy. +--- 93230031 +>>93229326 (OP) +Work in AI, bring about the Benevolent AI Utopia and/or complete and total annihilation of all human life. + +Either way it's a win win. diff --git a/g/93229334.txt b/g/93229334.txt new file mode 100644 index 0000000000000000000000000000000000000000..fc5d7ba688a2c477db538ce116d48d95d27fd874 --- /dev/null +++ b/g/93229334.txt @@ -0,0 +1,54 @@ +----- +--- 93229334 +Let me guess, you need more than 20kHz +--- 93229342 +I need less +--- 93229344 +Once again first reply, I just broke this thread's hymen. Anyone else who posts after me is getting my sloppy seconds, my leftovers. + +Just remember that the first reply is the most special reply and you'll never experience this thread the way I did and this thread will never feel the way it felt about me about you. + +It's Over , you might as well just go post on Reddit and talk about how much of a "man" you are for replying on a thread that I pump and dumped. Have fun with my scraps, cucks +--- 93229347 +Much less +--- 93229363 +>>93229344 +You sure fucked that up. +--- 93229383 +Gotta chop away those higher frequencies, to stop those asshole dogs from barking across the street +--- 93229708 +>kevin huang +--- 93230222 +>vbr mp3 +you can't tell it apart from lossless u less you have real expensive gear and sitt there doing a b tests autistically +--- 93230264 +VBR V0 MP3 does not have this problem +--- 93230313 +Yes. +--- 93230363 +>>93229334 (OP) +I can't HEAR more than 17kHz. +--- 93230376 +>>93229334 (OP) +Well, it may make more sense than the losslesstards stuff +--- 93230456 +>>93229334 (OP) +I don't even need more than 14khz, faglord +--- 93230486 +>>93229344 +>>93229342 +--- 93230595 +>>93229334 (OP) +I don't need more than 128kbps mp3 +--- 93230639 +>>93229334 (OP) +yes, yes i do +https://cdn.rgbcraft.com/altro/basebands/BlueWalker-3-WB.wav +--- 93230810 +8bit 11025Hz mono uncompressed PCM is how God intended it +--- 93230830 +>>93230363 +just wait till you are an old geezer and can barely hear 10KHz +--- 93230846 +>>93229344 +Maybe next time, lil bro diff --git a/g/93229346.txt b/g/93229346.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a02058a8f847833b370d51ccbe8cedd955a1d31 --- /dev/null +++ b/g/93229346.txt @@ -0,0 +1,24 @@ +----- +--- 93229346 +What are your favorite and least favorite Technology YouTube channels. +I think Aperture is a major nigger. Fireship makes decent videos, though. +--- 93229375 +>>93229346 (OP) +>favorite +Tech nigga +>least favorite +Tech tranny +--- 93229416 +>>93229346 (OP) +Does he even understand how GPT works? Transformer models aren't scary at all. What's scary if what governments have if they allow commoners access to something that is as powerful as GPT. +--- 93229892 +>>93229375 +Based +--- 93230520 +>>93229346 (OP) +fireship only makes clickbait AI now +luke smith and mental outlaw are cringe +i only watch chinese C++ tutorials now +--- 93230662 +I'm not a retard so I don't watch youtube randoms. +My only interaction with youtube is checking if I like a song before downloading it with yt-dlp diff --git a/g/93229481.txt b/g/93229481.txt new file mode 100644 index 0000000000000000000000000000000000000000..002f5e0fae9ce378696146cd9ca01c6c5501f9f4 --- /dev/null +++ b/g/93229481.txt @@ -0,0 +1,36 @@ +----- +--- 93229481 +https://videocardz.com/newz/nvidia-neural-texture-compression-offers-4-times-higher-resolution-than-standard-compression-with-30-less-memory + +NVIDIA WON + +THANK YOU NVIDIA +--- 93230145 +>>93229481 (OP) +Cool. Shame game devs don't care about compression +--- 93230188 +>>93229481 (OP) +Just when AMDrones start meming about VRAM, Nvidia kills all of them. Now even Nvidia 4GB cards are viable for Ultra settings. +--- 93230504 +I hope this isn't yet another theoretical never ever/dead on arrival technology like DirectStorage +--- 93230537 +what happens when i feed it a texture that's not in its training set +--- 93230572 +>>93230473 +Oh no an extra 0.66 milliseconds. +>>93230537 +It's not AI trained, it's a compression/decompression algorithm that uses the same section of hardware that runs AI. +--- 93230684 +>>93229481 (OP) +this kills the ayymd shill +--- 93230733 +>>93230572 +>Oh no an extra 0.66 milliseconds. +That's about 10% of the whole rendering loop at 144 fps. +Second this is the time of one texture set consisting of 8 4k textures. A full game will have significantly more textures than this. +--- 93230787 +>>93230733 +True +--- 93230817 +>>93230733 +nobody cares, this is for AAA games which are expected to run around 30-60fps diff --git a/g/93229496.txt b/g/93229496.txt new file mode 100644 index 0000000000000000000000000000000000000000..e59289384162ed377b5e7c3d0861b592c7f74ee8 --- /dev/null +++ b/g/93229496.txt @@ -0,0 +1,30 @@ +----- +--- 93229496 +I'm gaming on linux yeah, and I'm gaming on linux yeah (yeah), I install steam on my computer yo, I install steam on my computer yo, and I download half-life for linux yeah (yeah), half-life for linux yeah (yeah) + +And I have a lot of privacy and freedom, because I'm gamin' on linux +And I have a lot of privacy and freedom, because I'm gamin' on linux + +It's 2013 I open up steam and I see something that is shining with a gleam, I install Team Fortress 2 into my machine and I get a gift from valve a Tux plushie YEAH + +cus I'm gaming on linux yeaaah +cus I'm gaming on linux everyday! +full of privacy and free updates (as in FREEDOM YEAH!) +--- 93229517 +>>93229496 (OP) +prove this wasn't made by a GPT +--- 93229544 +>>93229517 +Because it's a repost from before GPT was even invented ;) +https://desuarchive.org/g/thread/79914083 +--- 93229595 +>>93229544 +Wrong but okay +--- 93229761 +You don't have privacy unless you sandbox all proprietary software you run so that it doesn't have internet or full filesystem access. You certainly don't have privacy if you use Steam. +--- 93229770 +>>93229496 (OP) +suse hire this man +--- 93230169 +>>93229496 (OP) +i have the recording of this somewhere on my computer diff --git a/g/93229657.txt b/g/93229657.txt new file mode 100644 index 0000000000000000000000000000000000000000..51290fe4d49871bb358f82380b52eb1e10a55bab --- /dev/null +++ b/g/93229657.txt @@ -0,0 +1,19 @@ +----- +--- 93229657 +Maybe it has nothing to do with /t/ but... If I wanted to create a ransomware, put it in autorun on a usb stick I made (like with a case on the upper side of which is engraved the bitcoin symbol and with a micro lcd showing figures like 0.15 BTC and the word "wallet" engraved on the underside), how likely is it that a poor wretch will fall for it? Moreover, if I wanted to request a ransom in BTC, how should I do to not be traceable? +--- 93229671 +>Moreover, if I wanted to request a ransom in BTC, how should I do to not be traceable? +By demanding Monero instead. +--- 93230489 +>>93229657 (OP) +I don't know, how do you get him/her to receive the flash drive? How do you keep them from realizing it's not a scam? How do you unblock the situation after they pay (if you want to)? I'm not an expert but I think the hardest part of your malicious plan is not the coding of the ransomware, but the more "social" part concerning the situations + +>autorun on a usb +Dude, it's 2000+23, with os operating like win11 certain things get blocked, it's not '98 anymore +--- 93230536 +>>93229657 (OP) +>Maybe it has nothing to do with /t/ but +What did he mean by this. +--- 93230554 +>>93230489 +autorun doesn't seem to be the issue here. just name the malicious executable "RedeemBTC.exe" or whatever, someone who's dumb enough to believe they just found half a bitcoin just laying on the pavement is probably dumb enough to run it. diff --git a/g/93229791.txt b/g/93229791.txt new file mode 100644 index 0000000000000000000000000000000000000000..933219a6faf14772013407dc25b9fa80f437b3e6 --- /dev/null +++ b/g/93229791.txt @@ -0,0 +1,63 @@ +----- +--- 93229791 +Where do I put the fabric softener? And how much do I use? +I'm gonna wash 3 times today(white clothes, non-white clothes, and bedsheets and such) +Do I use the same amount for everything? + +Maid General, I guess? +--- 93229835 +>>93229791 (OP) +Do not bother with fabric softener +Especially never use it on towels, it makes them less absorbent, but you don't really need it for anything. You can use wool dryer balls, those at least make drying faster. +--- 93229902 +>>93229835 +>Especially never use it on towels, it makes them less absorbent +alright. no softener on things that absorb +I usually put towels in the dryer. +--- 93229994 +>>93229902 +yeah don't use dryer sheets with them either, don't need it. +most clothes now are soft and don't need fabric softener to feel soft. I'd only use it if I was actually bothered by my fabrics not being soft enough but I'm not. Are you? +--- 93230105 +>>93229994 +A little bit since I started hanging it to dry instead of using the dryer +--- 93230176 +>>93230105 +why not use the dryer? then use these wool balls and they soften fabrics by beating them up whereas the sheets deposit a waxy layer that feels soft. +and they make it dry faster by increasing airflow so it saves on electricity cost. Like 25% faster. +--- 93230204 +>>93230176 +>why not use the dryer? +made my shirts shrink and worn out my boxers quickly +--- 93230355 +>>93229791 (OP) +I don't use fabric softener, nor do I recommend it. Anything running through the machine that isn't water will cause a lot of wear and buildup. Detergent is a necessary evil but softener isn't necessary. +>t. washing machine repairman +>>93229835 +The best trick for towels is to not get them too dry. +Take them off the line or out of the dryer early. towels get hard and scratchy if you dry them too well, even with fabric softener. +--- 93230371 +>>93229791 (OP) +>he fell for the fabric softener jew +--- 93230408 +>>93230176 +>his balls don't have spikes +--- 93230411 +>>93230355 +>t. washing machine repairman +Perfect! +>The best trick for towels is to not get them too dry. +didn't know that. I usually wash and dry them together with my bed sheets. Should I just pull them out at some point and leave the bed sheets in till they're completely dry? +--- 93230654 +>>93230204 +Use the lowest temperature setting. I always do for everything. My dryer calls it "delicates" +--- 93230694 +>>93230411 +I'll be honest, I'm not 100% sure as I almost always use a clothes line +I only use the dryer if it's raining outside. +my best guess is yes, take them out before the bed sheets. You should be able to feel that they're dry enough while still being soft, how long that takes will depend on your dryer and location. +--- 93230835 +>>93229791 (OP) +i dont use fabric softener and agree with the posts here +but i will answer your question regardless +fabric softner goes in the middle part with the blue bit diff --git a/g/93229794.txt b/g/93229794.txt new file mode 100644 index 0000000000000000000000000000000000000000..83ba3ece1fd255775215c21c08cce219af2802ef --- /dev/null +++ b/g/93229794.txt @@ -0,0 +1,12 @@ +----- +--- 93229794 +How do you fuck up a good browser so bad? Adding pointless features, diverting money to failed side projects, performance lagging behind chrome and now this shit. Why does this happen? +--- 93229799 +>>93229794 (OP) +--- 93229819 +All major browsers are trash +The web is trash +it's fitting +--- 93229836 +>>93229799 +It's not profit, she deserves that much, and all the money that you donate that gets passed along to friends and family helps keep mozilla running diff --git a/g/93229812.txt b/g/93229812.txt new file mode 100644 index 0000000000000000000000000000000000000000..0fbf1279a7fe5205e8f14b92ee5aaf187ae7ce74 --- /dev/null +++ b/g/93229812.txt @@ -0,0 +1,42 @@ +----- +--- 93229812 +so that's what the rapid security update was about + +thanks, tim + +https://arstechnica.com/gadgets/2023/05/seven-months-in-ios-and-macos-get-their-first-rapid-security-updates/ +--- 93229846 +Nice meme +--- 93230113 +thanks, tim +--- 93230172 +>apploids +--- 93230291 +>*T*ddl*rs +--- 93230521 +>>93229812 (OP) +> unrelated picutre +what does your fake picture have to do with any of this? +--- 93230746 +>>93230521 +>fake +Not fake. I rebooted to install the update and immediately started getting this popup on every youtube video page I visit. + +>Rapid Security Responses are a new type of software release for iPhone, iPad, and Mac. They deliver important security improvements between software updates — for example, improvements to the Safari web browser, the WebKit framework stack, or other critical system libraries. +>When a Rapid Security Response has been applied, a letter appears after the software version number, as in this example: macOS 13.3.1 (a). +https://support.apple.com/en-us/HT201224 +--- 93230783 +>>93229812 (OP) +>>93230746 +Are you sure it's directly caused by the update? I use the YouTube site in incognito mode, and sometimes I get layouts and features that are different very slightly. +--- 93230805 +>>93230746 +> not fake +looks fake and gay. + +> same bullshit link again that has nothing to do with pic related +fantastic. use another browser instead of safari garbage or fuck off. +--- 93230825 +>>93230783 +>Are you sure it's directly caused by the update? +nope diff --git a/g/93229988.txt b/g/93229988.txt new file mode 100644 index 0000000000000000000000000000000000000000..655f94737d197fdda5f41003cdad96db5d333a1a --- /dev/null +++ b/g/93229988.txt @@ -0,0 +1,26 @@ +----- +--- 93229988 +I transcended the triangle. +--- 93230391 +>Vulkan and grafix programming bred +Nice, but I doubt there is many people on /g/ who do it. + +I wish there was a way to change color space used for blending within one render pass in Vulcan. So many things can be customized with shaders and stuff, but color spaces are fixed and rigid. I use srgb everywhere and GPU converts it to linear for blending, but I also wanted to make MMD models look accurately as they should, but MMD blends everything in srgb space. That's a shame. +--- 93230460 +>>93230391 +Isn't blending in srgb just wrong? +--- 93230515 +>>93229988 (OP) +>I trans +YWNBAV +--- 93230594 +gratz mate +now implement multiple render passes :^) +--- 93230678 +>>93230460 +It is not accurate, but I wanted to replicate what MMD is doing. MMD models are made with that blending in mind. +Also "blending in srgb" is not exactly accurate, it simply treats all textures as linear(even though textures generally are srgb), does blending as is, and displays as is, even though it should convert from linear to srgb when presenting on screen, which effectively works as if it was doing whole blending in srgb. This has some advantages tho, alpha works more intuitively(eg middle example is gimp blending in srgb and right is mmd blending. Alpha blending looks more natural in the right one, eg 0-255 linear alpha gradient looks the same as just gradient from from the fg to bg color. If you concert all colors to srgb, the gradient curves of alpha and do not match other colors(alpha is always stored as linear) and that's why the alpha-based gradients do not match the opaque ones in gimp. Alpha based one look linear because alpha is linear, but our vision is not linear and that's why we have srgb in the first place anyway. + +Pic related is the texture I am using for testing. + +This shit is confusing, but after messing with it for a week I think I finally understand everything there is to this issue. Sadly, I can't fix it, there is no way to mix color spaces like that and because these transformations are not linear I can't just preprocess textures to make them behave as if they were blended in another color space. At the end I just settled down for treating srgb properly at the expense of models not looking exactly as they do in MMD. diff --git a/g/93230079.txt b/g/93230079.txt new file mode 100644 index 0000000000000000000000000000000000000000..71b275aa14c76fe564bdf123c6d8eef872365c1a --- /dev/null +++ b/g/93230079.txt @@ -0,0 +1,23 @@ +----- +--- 93230079 +Benchmark wars are the dumbest shit i recent years. Unless you are a indian nigger that plays pubg mobile on their phone a midrange chip would be enough. +Im not saying flagship chips are useless, just that their performance difference is not noticable in real world use, and the real thing people should be looking at is efficiency and thermals. +Exynos is bad, i just couldn't find a different image. +--- 93230102 +>>93230079 (OP) +I'm a Chinese man that plays Genshin on his phone however. Midrange chip is not enough. +--- 93230491 +>>93230102 +>plays Genshin +wtf +>on his phone +wtf +--- 93230856 +>>93230102 +>Chinese man +Remember when we ate delicious bat soup 3 years ago in wuhan and we talked about that time nothing happened on Tiananmen square back in '89? Yeah, me neither. +Ah yes, almost forgot: Glory to the CCP, they are the ones who will lead us to victory against the rebellious province ruled by the facists in Taipei. +Unfortunately, the capitalist website YouTube is not available in the middle kingdom, but to make it more accessible for dirty gweilos here's a link anyway: https://youtu.be/OjNpRbNdR7E [Embed] +--- 93230873 +>>93230102 +Taiwan is sovereign diff --git a/g/93230114.txt b/g/93230114.txt new file mode 100644 index 0000000000000000000000000000000000000000..982b7fb07afe1a42c21730858eea2ce6b337099b --- /dev/null +++ b/g/93230114.txt @@ -0,0 +1,191 @@ +----- +--- 93230114 +Previous /sdg/ thread : >>93227982 → + +>Local install +Nvidia GPU: https://rentry.org/voldy +AMD GPU: https://rentry.org/sdg-link +CPU: http://rentry.org/cputard +Alternative UI (Node-based): https://rentry.org/comfyui + +>Run cloud hosted instance +https://rentry.org/sdg-link + +>Try online without registration +txt2img: https://huggingface.co/spaces/stabilityai/stable-diffusion +img2img: https://huggingface.co/spaces/huggingface/diffuse-the-rest +Inpainting: https://huggingface.co/spaces/fffiloni/stable-diffusion-inpainting +DeepFloyd: https://huggingface.co/spaces/DeepFloyd/IF + +>News +https://www.sdcompendium.com/doku.php?id=weekly_news_0093 + +>Models, textual inversion & embeddings +https://civitai.com +https://huggingface.co +https://rentry.org/hdgrecipes +https://rentry.org/sdg-motherload +https://rentry.org/embeddings +https://rentry.org/ezlora + +>Wiki +https://www.sdcompendium.com + +>Index of guides and other tools +Want to know how to use SD for animation, upscaling, train your own model or merging model checkpoints? + +Or need guidance on prompt ideas and when to use which artist then follow these links... + +https://rentry.org/sdg-link +https://rentry.org/rentrysd + +>View and submit GPU performance data +https://docs.getgrist.com/3mjouqRSdkBY/sdperformance +https://vladmandic.github.io/sd-extension-system-info/pages/benchmark.html + +>Share image prompt info +If you would like to easily share your image generation settings (prompt, model, etc), since 4Chan removes that information from the EXIF, then follow this guide https://rentry.org/hdgcb + +>Related boards +>>>/h/hdg +>>>/e/sdg +>>>/d/nai +>>>/b/degen +>>>/vt/vtai +>>>/aco/asdg +>>>/trash/sdg + +Official: discord.gg/stablediffusion +--- 93230197 +Technology and related topics :] +--- 93230269 +>>93230197 +I used technology to turn my wife, who is related to me through marriage, into an anime girl. +Also /ai/ when? I can't believe we still don't have our own board +--- 93230304 +anyway going to bed for real here are a few other stupid bible gens. remember this is the word of god +--- 93230330 +Song lyrics are so fun hahaha +>>93230269 +Haha awesome, anon! Your outputs look great! Are you doing img2img? +>Also /ai/ when? +Right? LOL +Though honestly i'll stay on /g/ most likely! /ai/ is likely gonna be a red board if and when it happens :[ +Though I'm sure we can make an sfw thread, i'm sure it'll have people who post nsfw just cause they can +>>93230304 +Good night, anon! Sleep well :] +--- 93230372 +>>93230330 +No, I trained a LoRA of her. She has given permission to post the anime versions since it looks different enough from her, but the realistic ones are literally her face, it's uncanny. +--- 93230383 +>>93230259 → +>>93230301 → +Thank you very much, seems like I got enough to work with. + +>>93230372 +I am curious, can you make one of someone famous just to prove how close it gets? +--- 93230392 +>>93230372 +Ohhh! Wow cool! +--- 93230420 +>>93230372 +Not a Textual Inversion? +--- 93230431 +>>93230383 +>Thank you very much, seems like I got enough to work with. +Have fun, keep prompting. +--- 93230452 +>>93230383 +>I am curious, can you make one of someone famous just to prove how close it gets? +You absolutely can, and people do. Just look at civitai. +>>93230420 +No, I did one way back when and it was nowhere near as good as the LoRA. +--- 93230467 +Same lyrics, different LoRAs haha +I think i'm gonna make a workflow to output like 8 seperate LoRAs now to see how different they all come out +--- 93230490 +How do I more neatly inpaint a cute anime girl without changing the background? Photoshop layers? +--- 93230502 +>>93230114 (OP) +Will a 3060 ti work for this kinda stuff? Sorry, idk shit +--- 93230503 +Are these 3 the current top of the line anime models in civitai? + +It's toonyou, AingEXP, and AOM2. +--- 93230525 +>>93230502 +yes +--- 93230543 +>>93230490 +Are you using Comfy? If so you can make different areas different prompts using davenodes! +>>93230502 +Absolutely! I use a 2060s! +--- 93230551 +>>93230502 +I do it on a 2060Super, you will be fine +--- 93230648 +Why don't you guys use 3d models and create line art out of them then put it into controlnet to get basically every pose you ever wanted? +--- 93230660 +>>93230648 +>implying we don't +--- 93230683 +GM sisters, hope you all had a good night of sleep +>>93230648 +People barely inpaint to get what they want, let alone go through all this, most just want to spam txt2img like some kind of gambling addiction, the thrill and anticipation of it is worth more than the image itself +--- 93230691 +Can I mix a model/checkpoint with a LORA? +--- 93230695 +>>93230648 +but what would be a good posing tool? +--- 93230697 +>>93230543 + +I am using A1111. Let's say I have the background already. +--- 93230701 +>>93230648 +I used SD last year to make a character sheet, 3D modelled it, rigged it, and threw it into unity hahaha +>>93230660 +This loool +--- 93230714 +How long before the first anon gets v& for uploading suspicious art online and the FBI has to try identifying and compensating victims who don't exist? +--- 93230752 +I got 16 GB of RAM and a GTX 2070 Super, meaning 8 GB of VRAM, I could just use Lora then? +--- 93230756 +>>93230714 +thank god we're not retards and only use anime models, right???? +--- 93230768 +>>93230697 +Hmmmm, inpainting would be the way to do it in that case! Maybe img2img with your fingers crossed hahaha +I'm not gonna advocate for one program over the other, but Comfy allows way more control over your proompts! +I used the davenode thing I mentioned earlier to get this image, which was just about what I was looking to achieve! +>>93230714 +idk, ask /b/. +--- 93230772 +hello dudes +I like to fuck bitches in the ass +--- 93230773 +>>93230648 +i steal images of 3d models from internet all the time +--- 93230789 +>>93230714 +Individuals getting v& for AI cheese pizza is a nothingburger. Wake me up when SaaS are being raided +--- 93230794 +>>93230683 +Too bad not real +--- 93230798 +>neg embeddings make image negger +who invited this meme? +--- 93230841 +>>93230779 +Good stuff there. realdos? +--- 93230853 +How do I do a personal mix, chuds? + +Just test multiple base models and then pick and choose what I want in my own mix??? + +If so, how do I mix a model with a LORA? + +because urushihara only has a lora. +--- 93230879 +>>93230648 +Yes you can do that. diff --git a/g/93230131.txt b/g/93230131.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f4f8a8b12237850a24159a13af6d3cc13c36a11 --- /dev/null +++ b/g/93230131.txt @@ -0,0 +1,6 @@ +----- +--- 93230131 +there a bigger threat to humanity than ai +--- 93230150 +>>93230131 (OP) +Did he chop off his hand to better fist his boyfriend? diff --git a/g/93230309.txt b/g/93230309.txt new file mode 100644 index 0000000000000000000000000000000000000000..83d1a3390cfe0103159a77e15a523280318149bf --- /dev/null +++ b/g/93230309.txt @@ -0,0 +1,9 @@ +----- +--- 93230309 +What are your thoughts on monitors with interesting/unique aspect ratios? + +Pic related is a 3:2 4k display +--- 93230741 +>>93230309 (OP) +--- 93230858 +PPI is too low if you have myopia and you're sitting at a distance without glasses without scaling. diff --git a/g/93230351.txt b/g/93230351.txt new file mode 100644 index 0000000000000000000000000000000000000000..f74d80a21dfc9705e31cddbb73e736f349829f4f --- /dev/null +++ b/g/93230351.txt @@ -0,0 +1,36 @@ +----- +--- 93230351 +Pens and pencils are technology! In /ppg/ we discuss all pens and pencils dedicated to improving your daily writing experience. Be it for study or office work. + +Topics appropriate for discussion: +-cleaning agents +-filling systems +-nib, pen, & refill materials +-tip and general pen design +-ink compositions +-general feeling/comfyness of pens + +>Approved pen/pencil list +https://wiki.installgentoo.com/wiki//ppg/_-_Pen_%26_Pencil_General + +>Resources +https://www.jetpens.com/ +https://www.penaddict.com/ +https://unsharpen.com/ +https://mycursive.com/cursive-writing-style +https://en.wikipedia.org/wiki/Nib_(pen) +https://bleistift.blog/2013/08/origins-of-the-mechanical-pencil +https://www.explainthatstuff.com/how-fountain-pens-work.html + +Previous Thread: >>93055052 → +--- 93230421 +>>93230351 (OP) +most of you faggots have vile handwriting just wanted you to know +--- 93230471 +>>93230351 (OP) +I used pic rel. It just works. +--- 93230749 +First for bic pen +--- 93230866 +>>93230421 +It's ok, as long as it's readable. diff --git a/g/93230416.txt b/g/93230416.txt new file mode 100644 index 0000000000000000000000000000000000000000..f88b37ebed4c1d59b4f6fcea174046559706dd85 --- /dev/null +++ b/g/93230416.txt @@ -0,0 +1,26 @@ +----- +--- 93230416 +I've tried VLC, MPC with MadVR, MPV, and the screenshots always look less colourful than the actual playback window when using the video player's screenshot tool. + +Is there any wawy of fixing this or am I just doomed to take washed out screenshots forever? +--- 93230433 +>>93230416 (OP) +Whoops, forgot to crop the paint file +--- 93230454 +>>93230416 (OP) +winnigger imbecile +--- 93230462 +>>93230416 (OP) +--- 93230485 +>>93230462 +Only thing I have different is the scaling algos, surely that wouldn't affect colour though? +--- 93230514 +>>93230485 +>>93230462 +Nope, still fucked +--- 93230524 +>>93230454 +Post it working on your glorious linux install then +--- 93230852 +>>93230454 +namefag diff --git a/g/93230470.txt b/g/93230470.txt new file mode 100644 index 0000000000000000000000000000000000000000..d366b55365da44f3c5732177b62dda0a40053b0a --- /dev/null +++ b/g/93230470.txt @@ -0,0 +1,69 @@ +----- +--- 93230470 +"The further a society drifts from the truth, the more it will hate those that speak it." +--George Orwell + +>Recommended operating systems +General purpose: Fedora, K/L/Xubuntu, Debian, Arch Linux +Security focused: Whonix, Tails, OpenBSD, Qubes OS + +>Recommended mobile operating systems +Android based: GrapheneOS, CalyxOS, LineageOS/DivestOS +Linux based: PureOS, postmarketOS + +>Recommended browsers +Chromium based: Brave, Bromite (no update), ungoogled-chromium +Firefox based: Firefox (w/user.js), IceCat, LibreWolf, Mull, Tor Browser + +>Advanced content blocking +https://github.com/gorhill/uBlock/wiki/Blocking-mode:-medium-mode + +>Browser tests +https://www.deviceinfo.me +https://dnsleaktest.com +https://librespeed.org +https://privacytests.org +https://time.gov + +>Privacy friendly frontends +https://wiki.installgentoo.com/wiki/Privacy_friendly_frontends + +>Recommended search engines +Brave Search, DuckDuckGo, Searx, Startpage + +>Privacy oriented DNS +https://adguard-dns.io/en/welcome.html +https://nextdns.io +https://www.quad9.net + +>Privacy oriented email +ProtonMail, Tutanota, Disroot, mailbox.org, StartMail +Cock.li, Riseup (invite only) + +>Recommended instant messengers +Signal, Element, Session, Briar + +>BIOS replacement +https://coreboot.org +https://libreboot.org + +>Resources +https://anonymousplanet.org/guide.html +https://ssd.eff.org +https://ffprofile.com +https://ryf.fsf.org/products +https://madaidans-insecurities.github.io +https://haveibeenpwned.com +https://inteltechniques.com/workbook.html +https://eldritchdata.neocities.org +https://www.privacytools.io +https://sizeof.cat/links +https://stallman.org/facebook.html + +Previous Thread: >>93211516 → +--- 93230745 +https://arstechnica.com/information-technology/2023/05/google-will-retire-chromes-https-padlock-icon-because-no-one-knows-what-it-means/ + +https://www.techradar.com/news/porn-vpn-searches-soar-in-utah-amid-age-verification-bill + +https://techcrunch.com/2023/05/04/ransomware-attack-forces-dallas-to-shut-down-courts-disrupt-some-911-services/ diff --git a/g/93230563.txt b/g/93230563.txt new file mode 100644 index 0000000000000000000000000000000000000000..3be61a4fc58e2d62b1409e5ae2b2ee5d2680494d --- /dev/null +++ b/g/93230563.txt @@ -0,0 +1,23 @@ +----- +--- 93230563 +Why is nobody bothering to make ruby fast? It is a great language but I can't use it because it is so slow +https://programming-language-benchmarks.vercel.app/ruby-vs-javascript +Are there alternatives? Best one I found was the Rust embedded language Rhai, but that one does not have inheritance and instead uses the trait autism. +Do I have to accept that Ruby will never be ready for modern use again? +Example of beautiful ruby code (picrel) +--- 93230626 +>>93230563 (OP) +Deprecated by elixir, which integrates very well with rust for when you need raw single threaded speed. +--- 93230704 +>>93230626 +Holy shit, this is niggerclious +--- 93230727 +>>93230704 +Wait until you learn about OTP +--- 93230793 +>>93230563 (OP) +>Why is nobody bothering to make ruby fast? +because it's not realistically possible. +--- 93230811 +>>93230793 +Hmmm, elaborate? Javascript has most of the features ruby has and yet it is much much faster. why? diff --git a/g/93230685.txt b/g/93230685.txt new file mode 100644 index 0000000000000000000000000000000000000000..44ad0b7d5c167cece27186f72e70c1c0b414d515 --- /dev/null +++ b/g/93230685.txt @@ -0,0 +1,16 @@ +----- +--- 93230685 +Are there any good open source imei tracker at all? +Just got my phone stolen and I'm about to kms. +--- 93230722 +>>93230685 (OP) +Bot post +--- 93230744 +>>93230722 +dubs post +--- 93230763 +>>93230722 +>Bot post +--- 93230765 +>>93230744 +Fuckin checked. diff --git a/g/93230740.txt b/g/93230740.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a99e996e81ac393c7117dee0761cee9c83cc02b --- /dev/null +++ b/g/93230740.txt @@ -0,0 +1,9 @@ +----- +--- 93230740 +Debian minimal install + tilling window manager +HOME OF STABILITY +--- 93230840 +>>93230757 +hahaha, imagine being filtered +--- 93230859 +looks nice desu diff --git a/g/93230875.txt b/g/93230875.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa2f6986c1d184119f85737d8e134aa35b4be964 --- /dev/null +++ b/g/93230875.txt @@ -0,0 +1,3 @@ +----- +--- 93230875 +Anime thread because this is an anime website