[ Home ] [ wiz / dep / hob / lounge / jp / meta / games / music ] [ all ] [  Rules ] [  FAQ ] [  Search /  History ] [  Textboard ] [  Wiki ]

/hob/ - Hobbies

Video game related hobbies go on /games/
[]
Email
Subject
Comment
File
Embed
Password (For file deletion.)

  [Go to bottom]  [Catalog]  [Reload]  [Archive]

File: 1672468926862.jpg (415.31 KB, 1914x1760, 87:80, drawx.jpg) ImgOps iqdb

 No.63672[Reply][Last 50 Posts]

All you need to begin drawing is a pencil and some paper

Feel free to post any drawings of yours in this thread. Illustration, doodle, traditional, digital - anything goes. Discussion on skillbuilding techniques and fair critique of other wizards' work is welcome.

last thread
>>61410
266 posts and 133 image replies omitted. Click reply to view.

 No.68028

File: 1723649421676.png (17.52 KB, 2300x1430, 230:143, pff.png) ImgOps iqdb

just some random stuff

 No.68037

File: 1724055647210.jpeg (123.69 KB, 613x868, 613:868, IMG_0489.jpeg) ImgOps iqdb

>>63672
Here is a quick sketch I made, kinda messed up with the head but rest of body still looks good.
Btw try to guess the anime succubi name and what anime she is from.

 No.68038

>>68037
Uh, robot succubus from Ghost in the shell, idk.
Cool detail, though.

 No.68102

File: 1726593713794.jpg (1.3 MB, 2865x2215, 573:443, 20240917_110920.jpg) ImgOps iqdb

>>67993
The creature there is my "oc", the pie giraffe. I indeed only used him once in Middle school for a little diagram thing about Newton's motion laws nearly 2 decades ago. Here I sacrifice it for all to see now.
Cheers.

 No.68103

>>68028
dont cut yourself on that edge


[Last 50 Posts]

File: 1725480090239.jpg (175.19 KB, 1280x779, 1280:779, ESO182005-5623.8.jpg) ImgOps iqdb

 No.68063[Reply]

I always played around with it in a very disengaged, uncommitted manner. Well, on September 2nd, just a few days ago, I decided to really learn Linux to the point I could truthfully add to my resume to help me find a position somewhere. For that reason, I picked Ubuntu, possibly the most popular, all-purpose Linux distribution out there. I began doing the edx's version of the Linux Foundation's Introduction to Linux course because of the bells and whistles they have there in terms of exercises and whatnot. Unfortunately, they peppered the whole course with unbelievably idiotic mini videos geared towards morons. Imagery of douchebags with designer haircuts typing away at a laptop with some coolcorp background and annoying music.

So I said fuck it, and instead I decided to read the Linux Bible. But then I found out there's an Ubuntu Linux Bible by the same author, and so that's what I'm reading now. Straight to the point, concise, has exercises, not as many as I would like, but I can come up with variations on my own. Today is the third day I'm following the book, and I intend to make a daily post, briefly talking about the stuff I've learned on that day.

The first day was pretty much just going through the fluff. What Linux is, history of Linux, Unix, GNU, what open source is, etc. That's the first 20 pages of the book's 718 pages.

The second day I read about the X Window System, desktop environments, GNOME desktop, Nautilus file manager, and ways to run Linux (live medium, permanent install, etc.). The exercises consist of messing around with the GUI pretty much, something you would naturally do in a fresh install of an OS. I also had to install Ubuntu because I was running Windows. I got lucky because Ubuntu 24.04.1 came with some broken packages for Nvidia drives, and that of course fucked my shit up, which was a very excellent opportunity to do some tinkering and learning. I got it to work, it only took me an hour or so. I read people saying this is the most broken Ubuntu update in years, which I take as a good sign for my timing. And then I broke Light Locker while changing to Xfce as my desktop environment.

Anyway, third day, today, I finally reach the meat of the book and begin messing around with the shell, trying different commands, pretty simple stuff, whoami, pwd, ls, cd, command syntax, hyphenated options for command's behavior, locating commands, and really, just getting comfortable to mess around in the termPost too long. Click here to view the full text.
5 posts and 3 image replies omitted. Click reply to view.

 No.68076

File: 1725822678453.jpg (304.54 KB, 1280x1171, 1280:1171, ESO576-69.jpg) ImgOps iqdb

Today I read about running processes and how go manipulate and visualize them in several ways. This is something you want to be good at in order to have a very good control of what your system is doing at all times. Listing processes with ps or top and the several ways to organize that information through -e, -o, uid, etc. The book also goes through renicing, killing and changing priorities for running processes.

I finished today with background and foreground processes and how to manage them, like using & for background and whatnot. Nothing complicated but it's something you want to have under your belt.

Next up is limiting processes with cgroups.

 No.68077

File: 1725905529399.jpg (174.05 KB, 1280x1183, 1280:1183, NGC1356.jpg) ImgOps iqdb

Today I began with processes and cgroup. Now, there aren't any actual exercises about this part yet but the author thought it was worth mentioning in this chapter just so the reader is aware it exists. There's a lot of other stuff to go through before you start messing around with control groups. Still, very cool read. Then it was time for the exercises. I found it rather lenient, even if I did have to look up my history here and there to remember a couple of commands. Here's the first 3 exercises (out of 9) 1. List all processes running on your system, showing a full set of columns. Pipe that output to the less command so that you can page through the list of processes. 2. List all processes running on the system and sort those processes by the name of the user running each process. 3. List all processes running on the system and display the following columns of information: process ID, username, group name, virtual memory size, resident memory size, and the command.
As you can see it's just a way to see if you retained basic inputs. If you really want to dig in on the content, you'll need to be doing stuff on the side and googling the little details as you go, which is something I'm doing.

Chapter 7 is all about writing shell scripts, but first the author goes on about what is a shell script, why would you want one, executing and debugging shell scripts, shell variable and shell positional parameters. As you might expect, your first script is just echo sentences with parameters involved. There's also explanations about parameter expansion which is a fundamental step to have an useful script going. I stopped on programming constructs. We'll see how it goes from here, this was the most fun chapter so far.

 No.68079

File: 1725990712144.jpg (248.77 KB, 1280x1338, 640:669, UGC11860.jpg) ImgOps iqdb

Today I didn't advance at all on the book because I spent all my time doing every bash script I could come up with that uses positional parameters. Also I'm working on a script that opens all my windows and applications automatically at startup. It's tricky to get it right but I have mostly figured it out at this point.

 No.68093

>>68063
Very cool thread. I am currently working through "The Unix Programming Environment" which I suspect is much older than your book but that's what I find so charming about it. Since gaming isn't all that important to me anymore, I'm probably going to switch to some Linux distro eventually, not just on my old cheapo office laptop. Vim, the terminal, all that stuff just feels really cool and satisfying to me.
Keep us posted wizzie!

 No.68097

File: 1726412974127.jpg (202.21 KB, 1280x1021, 1280:1021, ArpMadore608333.jpg) ImgOps iqdb

>>68093
Thanks, I stopped posting because it quickly became a blog instead of a thread people talk about the subject matter at hand. I'm still following the Linux Bible but for the past 2 days I've been struggling with setting up a network between a windows machine and a very old laptop computer with Tiny Linux Core in it. Managing to install TLC was a learning experience in itself since I went with a minimal install and had to add a lot of stuff manually.

Today I worked on making the windows machine share the internet connection through the network since the laptop in question has proprietary software for its wireless card and I still didn't manage to make the darn thing work. I installed the firmware but it just doesn't work yet. So far I broke my internet twice by messing up with TCP/IPv4 configs. Oh well it's all in the learning curve I suppose. Just now I finally managed to access the internet with the laptop. That sweet sweet 64 bytes when pinging from 8.8.8.8 finally went through. 4 Packages transmitted, 4 packets received, 0% packets lost, just what you want to see in there.

Anyways, now I have internet on Linux I can finally focus on making the wireless card work. Once that's done I'll focus on the Linux Bible again with a little bit more understanding of the system under my belt.



File: 1726409307887.jpeg (8.18 KB, 290x174, 5:3, images.jpeg) ImgOps iqdb

 No.68096[Reply]

I have been reading many cognitive psychology papers on how to be a better "student". I will share what I have learned and benefited me so far.

1) Create a project.

-Set out a goal

goal ——> higher goal ——> The ultimate goal

Write your goals and step them out to make sure you choose the optimal path to reach your goal. And be as verbose as possible. e.g. instead of writing I will learn French, write I will learn 50 French words.

Also, be honest to yourself. Is your goal achievable? Lofty goals will cause you to lose your motivation.

-Determine the necessary materials.

If you are taking courses in a university etc. necessary materials will be provided to you. But if you are learning by yourself, find the books you think you will need and choose the best 2-3 (from my experience, most popular books usually are the best ones.).

-Determine the time it takes to reach your goal

Again, if you are taking courses, you are on a fixed schedule, write down the starting and ending dates. And fill the time in between with the material you will need to cover

Post too long. Click here to view the full text.


File: 1681046044559.png (50.61 KB, 1024x1024, 1:1, Penrose Tiling.png) ImgOps iqdb

 No.64802[Reply]

Recently I've become fascinated with tessellation and spent the past couple of weeks collecting pictures of mosaics from around the world. Eventually just looking at them was not enough and I want to go deeper, understand the geometric shapes and its secrets better. Not even sure why but periodic tiling feels like a brain massage to me, like I'm about to fall out of bottom of how I usually perceive the world around me. So I picked up the book Geometry by Cambridge University Press. Feel free to give a hollow laugh: I honestly thought I could just skip the math part of geometry (yes I'm an idiot) and appreciate its resulting surfaces. While you can do that, if you want to appretiate geometry even at a surface level, you need to know the bare minimum of maths. The book suggested a good grasp on the basics of linear algebra and algebraic structure. I thought 'OK, I'll read the wiki entries as a lazy primer' and quickly realized I forgot even the basics of mathematical symbols. I guess it's true after all, if you don't use it you lose it.

Long story short, I'm currently going through Pure Mathematics for Beginners. The good part of being dumb is when you learn a single thing it feels like a whole new world just opened up and it feels really good.

So yeah, maths thread.
Previous one; >>30554
40 posts and 5 image replies omitted. Click reply to view.

 No.67717

Anyone got/read/knows Linear Algebra book from Peter D. Lax?

 No.67836

is anyone archived old math threads?

 No.67895

I started self-studying math 3 years ago, have read many books already, started with basic pre-calculus stuff and now Im reading my 2nd book on differential geometry. I've found it made me sharper and helped revert actual cognitive deterioration.
How is the study going for you wizs? Have you found any benefits besides enjoyment?
>>66210
Don't be shy to look at solution online, then write them down (important) while making sure you understand each step, at the start you will do it for most excercises and you will slowly develop technique.

 No.67930

File: 1720024485479.png (49.75 KB, 510x570, 17:19, ClipboardImage.png) ImgOps iqdb


>>67895
I made this post >>64921 when i first started to study math seriously, I am now able to understand General Relativity quite well, only because of Eigenchris's youtube channel.
>Have you found any benefits besides enjoyment?
Understanding 'advanced' physics concepts which I previously had to read pop-sci to learn about, and pop-sci is horrible at explaining anything. The explanations of general relativity and black-holes are so stupid, saying things like 'time and space switch in a blackhole' when in reality its just the tangent space of the observer being affected by the intrinsic curvature of 'space-time.'

 No.68091

How do you guys get through texts? I am currently trying to get through "The Book of Proof"



File: 1669267798269.png (206.76 KB, 1366x768, 683:384, Screenshot from 2022-11-23….png) ImgOps iqdb

 No.63302[Reply]

i have been doing a quiz every day

https://www.geoguessr.com/seterra/en/vgp/3636
32 posts and 12 image replies omitted. Click reply to view.

 No.64673

>>64668
Most of them are in the most barren depressing wastelands you could possibly imagine. They got driven off their ancestral homes in the east to shit land that wasn't taken and then they've been given benefits so they can live in shitty trailers. Any sacred site they have is likely something created since they were driven off their original land. They didn't even have horses before Europeans brought them to the continent so the image of Indians riding on horses people have is actually a culture that was developed after we started fucking with them and drove them off the good land.

 No.64675

>>64673
they had horses all throughout the americas before the european settlers arrived. at least you can find cave paintings and little statuettes and woven twig things of horses, dudes on the horses, etc.

 No.64676

Better to die with honor from English Puritans than to be Mestizoized into the bottom of a racial pyramid by decadent debauched papist Conquistadors.

 No.68082

I wanna learn the countries and islands in the Pacific Ocean.

 No.68089

>>63392
>>63393
I'm European and I got 49% in 4:10



File: 1676793687572.png (323.26 KB, 1045x494, 55:26, Screenshot from 2023-02-18….png) ImgOps iqdb

 No.64175[Reply]

anyone do this?

i burn discs, title them and then put them back on the spindle, so they stay in good condition

external hdds/sdd don't last very long
48 posts and 8 image replies omitted. Click reply to view.

 No.66295

how do i archive an entire website and not just a page?

 No.66297

>>66295
Download every page individually, put them each in their respective folders, and then edit the HTML of each one that links to another to correct the filepath.

 No.66298

>>66295
Theres lots of guides, but if you look for a cracked version of "offline explorer" on https://1337x.to/ that's like the paid for user friendly version. Otherwise you're looking at httrack.com or some WARC archival tools, or some stuff. Looking on reddit will bring up people who archive lots of sites talking about tools.

 No.68083

File: 1726051529457-0.jpg (109.08 KB, 900x810, 10:9, 20240912.jpg) ImgOps iqdb

File: 1726051529457-1.jpg (43.21 KB, 557x401, 557:401, 20240915.jpg) ImgOps iqdb

>>64175
Some newer pc machines don't even have an optical drive. Heck even PS5 Pro has the optical blueray drive as "optional"

 No.68085

>>66295
Wget. You can use a command like
wget -r –page-requisites –html-extension –convert-links https://example.com



 No.58261[Reply]

Just watched a Shawn Keller interview last night, and I have to say, he's quite possibly one of the most wizardly animators alive today.
>60+ year old virgin
>A man that has no need for *o*en, only making cartoons
>He can pump out a completed professional 11 minute cartoon in under a month, something an entire studio takes 10 months to make
>Dude's been around the oldschool comic fetish/furfag communities before even usenet existed, got fucked over by furries he was kind enough to help out, but still forgives them, like a wizardly furry Jesus
The interview's still up on YouTube, and they're going to be doing another one today at 3:25pm EST. It'll be streamed here cytu(dot)be(slash)r(slash)mlp-con2
9 posts and 2 image replies omitted. Click reply to view.

 No.61590

>>58261
This guy was a professional Disney animator but i'm wondering where you're getting this 60+ year old virgin stuff from? yes i know this post was made a year ago.

 No.61597

>>61590
It's baseless projection.

 No.62921


 No.64479

amiga 500 wiz

 No.68081

Why?



 No.27994[Reply][Last 50 Posts]

Post good (spoken) books in this thread.

I'll start with the Meditations of Marcus Aurelius. Such a good narration.
180 posts and 3 image replies omitted. Click reply to view.

 No.67742

>>67741
You assert that but there isn't real world evidence of that, which is why learning institutions aren't structured around such a practice.

Instead from the lowest to the highest it's build around lectures or in other words listening to a instructor.

 No.67744

>>67742
I'm not >>67741 but I don't think he may answer to such idiocy. trolling enough about the cuckery of sheeple compulsory "education"
>learning institutions taken seriously as reference
This is the type of mental failure when you people disregard conspirationist as "theorists" instead of giving them a serious look.

 No.67746

>>67744
>bad faith and non-arguments
What was even the point of this post other then to make yourself look bad?

 No.67847

The Squire
From one of my favorite fantasy novelist James E Wisher.

This one was pretty good. Especially as a stand alone.

 No.68078

Lord of High Reaches by James Haddock.

Second book I have listened to from James. Liked the narator's range of voices even if some of the accent choices were a bit odd.
Was decent but I liked Mage Thrown Prophecy more.


[Last 50 Posts]

 No.67098[Reply]

Post youtube channels that are clearly made by a wiz, NEET or hikkis, and made for the same demographics and not for normies.
13 posts omitted. Click reply to view.

 No.68050

>>67134
Good autist channel. Some of his videos miss. But when they hit, they hit real good.

 No.68051

File: 1724707856202.jpg (25.61 KB, 540x202, 270:101, Call.jpg) ImgOps iqdb

>>68050
If this user doesn't have a post history (or he does and it's 100% faggotry), then he (HE) is probably Star / OsakaSyndrome HIMself self-promoting like HE does on Uboachan

 No.68055


 No.68056

>>68051
star is not a tranny

 No.68057

>>68056
He 100% was, with a video titled "STAR IS TRANS", then for the next 2 years he insisted people call him a she and a her. Pretty sure his parents forced him out of it. Previous claims about him being a two-faced creep in order to doxx his "friends" if they don't do his bidding still remain.

There was a guy who had a NEET youtube channel and he used to post here, let's call him Elliot. He was part of this "Star" man's Discord clique. Elliot mentioned in a short daily video about how he wasn't comfortable that this dude suddenly wanted to be regarded as a succubus, and that he won't be talking to Star anymore. Star went "smug coping gay retard tranny mode" and downloaded a bunch of Elliot's videos, doxxed his name and address through one of his eBay listings, and tried to make a thread on some Kiwifarms clone. Elliot had to vanish and still Star goes around soliciting old video of Elliot's for the cringe compilation archive channel.

>>68055
1. has multple dating site profiles
2. has had multiple jobs
3. hangs out with friends regularly
4. is a gay pedofile that makes videos brutally mocking real baby victims of sex torture
5. Facedoxxes regularly

I fucking hate that such vapid discussions about literal who internet tranny pedofile microcelebrities has to come up, but when it does it's any informed guy's responsibility to prevent the thread from being used by trannies and other nonwizards to



File: 1669822266480.png (1.5 MB, 2048x512, 4:1, 1666218249642.png) ImgOps iqdb

 No.63372[Reply]

16 posts and 3 image replies omitted. Click reply to view.

 No.64711

File: 1680514061601-0.png (3.58 MB, 1600x1200, 4:3, 00053.png) ImgOps iqdb

File: 1680514061601-1.png (3.17 MB, 1600x1200, 4:3, 00051.png) ImgOps iqdb

File: 1680514061601-2.png (3.76 MB, 1472x1488, 92:93, 00049.png) ImgOps iqdb

>>64710
https://yewtu.be/watch?v=onmqbI5XPH8

Follow this tutorial closely and it should all be ok. I had problems a couple of things, but I think that's because I dick about with my computer settings too much. If you follow this one, make sure to download 3.10.6 python, because it doesn't work on newer or older versions, surprisingly. And when installing python, make sure to check the box for adding a path variable. If you get stuck on a step make a post here and I or someone else might be able to help get it started. It isn't brilliant with human figures and faces, but for actual artwork I can see why all the web artists are frightened.

I can't stop making loosely inspired Gerhard Richter seascapes at the moment.It even gets the canvas effect right.

 No.64716

File: 1680550656504.png (Spoiler Image, 1.22 MB, 2000x286, 1000:143, ClipboardImage.png) ImgOps iqdb

>>64711
do not ever use software that
-is not a self-contained binary
-does not have a simple one click installer
-requires techbro youtuber faggots to explain how to install and use the thing


get a gui for stable diffusion. i personally use 'NMKD' because it takes care of installing stable diffusion and getting all the bullshit it needs, it does it all for you. but any gui or frontend for sd is better than nothing

when you eventually learn enough about how to run and generate images, next you will want to experiment with different models. go to https://civitai.com/ to find stuff


unrelated but here is an inpainting demonstration using nmkd. you select the area you want to replace, see what generates. when it doesn't look right you crank down the image influence and let it go wild and basically RNG something aesthetic. when you get something good, you can raise the influence just enough so the image remains visually constant but there is enough variation to allow you to see any possible improvements. when you find something good, you use that as your new starting image and adjust the mask to fix any areas that aren't good. you do this repeatedly until the whole is something you are ok with. this is my process at least

 No.64719

>>64716
Never use software that
-isn't FLOSS
-you don[t hage to compile for yourself
-requiresmyou to type ~/configure make make install
-has less than 15 dependencies
-doesn't require specific versions of some dependencies
-you can install without having to modify the makefile
-takes less than a day to compile with 4 processors
-doesn't throw warnings throughout compilation
-doesn't require rust
-doesn't require dbus
-doesn't require systemd
-comes with proper documentation

 No.64723

>>64719
FLOSS is cool but i like the unlicense better, all the rest of that is actual aids hell

 No.68041

File: 1724354875821-0.png (745.6 KB, 512x768, 2:3, 9a32f0ab-4893-43f5-b767-b3….png) ImgOps iqdb

File: 1724354875821-1.png (808.96 KB, 640x640, 1:1, b6de447a-4234-401e-8d5c-d9….png) ImgOps iqdb




  [Go to top]   [Catalog]
Delete Post [ ]
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]
[ Home ] [ wiz / dep / hob / lounge / jp / meta / games / music ] [ all ] [  Rules ] [  FAQ ] [  Search /  History ] [  Textboard ] [  Wiki ]