#minix
Explore tagged Tumblr posts
kingoftieland · 3 months ago
Text
Tumblr media Tumblr media Tumblr media
Very excited to have found these brand new Breaking Bad & Better Call Saul MINIX Figures (since they’re not sold in the States, I had to get them imported all the way from Australia)! 🇦🇺
Displayed in collector-friendly window box packaging and numbered to drive collectability, these Hank Schrader and Kim Wexler figurines make for a pair of awesome new additions to this line of vinyl toys!
13 notes · View notes
cidraman · 11 months ago
Text
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
Rocky, Apollo and Clubber.
12 notes · View notes
foxyhellfire · 11 months ago
Text
Tumblr media Tumblr media Tumblr media
How cute is he! #minix #eddiemunson #collectibles #strangerthings
3 notes · View notes
despertarsabiendo · 5 months ago
Text
Linux: un sistema operativo potente y gratuito
Linux: El sistema operativo que usas sin saberlo Desde la llegada de los sistemas operativos, las computadoras se volvieron más accesibles para el público general. Con Windows y sus interfaces gráficas, su uso se masificó hasta el punto en que hoy casi todo el mundo tiene un ordenador en casa. Pero hay un sistema operativo que probablemente usas todos los días sin siquiera notarlo: Linux. A…
Tumblr media
View On WordPress
1 note · View note
pacanosiu · 9 months ago
Text
0 notes
theluckystarfish · 1 year ago
Text
minix Robert lewandowski has finaly arrived today :) a another great figurine to add my collection
Tumblr media Tumblr media
0 notes
gnome-de-official · 9 months ago
Text
This sounds like a personal anecdote
Did this accidentally happen?
Today I realized with horror that Minix's package manager has a command to install *all* packages
I feel a little bit sick
156 notes · View notes
naughtygirl286 · 1 year ago
Text
Tumblr media
Now our next Tomb Raider thing (I told you it was a Tomb Raiderish Christmas) is the MINIX - Movie # 107 Tomb Raider Lara Croft Figure it is based off of the Alicia Vikander Lara Croft from the 2018 movie. She isn't very big and is about 4 or so inches tall originally from what I could see they weren't being sold outside of the UK/Eroupe and I couldn't find them anywhere online for a reasonable price but someone found a seller on ebay that was selling them for a good price with world wide shipping and got me one for Christmas which was awesome. just like the weta stuff people are hating on them, I like it its something different and I would say it looks better in person up close then it does in the pics online even my pic doesn't do it justice.
0 notes
archiveosorg · 2 years ago
Text
Tinix
Tinix (Try It as miNIX-like operating system) – a tutorial operating system https://archiveos.org/tinix/
0 notes
dreamwatch · 2 years ago
Text
Latest Eddie for my collection.
Tumblr media
As of this morning I have 4 other Eddie’s on pre-ordered, 3 Wetas and a new YooTooz, one has been on order since May… site says it should ship this month but I’m getting nervous… 😭
Also pre-ordered the cutest Steve and Robin figures:
Tumblr media
I seriously need a bigger room to keep this shit in.
1 note · View note
yiffos-official · 9 months ago
Note
I'm new to being a furry distro official, any suggestions?
-minix-official
bark. a lot.
or, i guess in your case, racoon noise. a lot.
4 notes · View notes
kingoftieland · 9 months ago
Text
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
Very excited to add these brand new Breaking Bad & Better Call Saul MINIX Figures to my collection (since they’re not sold in the States, I had to get them imported all the way from Australia)! 🇦🇺
Displayed in collector-friendly window box packaging and numbered to drive collectability, these figurines of Jesse Pinkman, Gus Fring, Mike Ehrmantraut, and Lalo Salamanca are awesome additions to the Walt & Saul ones that debuted last year!
18 notes · View notes
timetraveladdict · 2 years ago
Text
Tumblr media Tumblr media
Found discount Geralt and discount Jaskier literally at the discount store.
They are so ugly I love them! 😂
29 notes · View notes
theluckystarfish · 1 year ago
Text
a new figurine
I got myself this Erling Haaland minix figurine two days ago. Looks really nice. I've orderd a minix Robert lewandowski today to add to my football collection ^^
Tumblr media Tumblr media
0 notes
tlemo · 5 days ago
Text
Tumblr media
minix
7 notes · View notes
techav · 4 months ago
Text
On Reinventing the Wheel
I have my little 68030 computer I built and I have my crude little kernel that lets the computer run BASIC for up to 8 users at the same time.
But wouldn't it be great if those users could do more than just type in small programs to watch an endless stream of HELLORLD fill the screen? You know ... silly things like print words on paper or, I don't know, save to a disk, maybe?
It would be great. I would love to be able to do that.
I'm not there yet.
See, I only have the one serial printer, so I really need some way to share it among the 8 users. Perhaps when a user wants to print something I could hold it in memory until the printer is free. I could print a page for one user, then move on to the next in queue so that everyone gets their turn at using the printer.
... I may have just reinvented the print spooler.
But that sounds like it would be difficult to add as a state machine to my kernel, and it would only make it more difficult to add other features later. It would be so much easier if I could just run this print spooler as if it were another user, just like I'm doing with BASIC.
... I may have just reinvented background processes.
If I'm running my print spooler program as a user-level process, then I could take advantage of the kernel function call I already have for writing data to a serial port. Oh, but I don't want to give up one of my 8 terminals; I would much prefer to use one of the two 6850 UARTs I had on the main board. I would need to update that kernel call to use the 6850 register set when the print spooler prices needs to send data, but still use the 16550 register set when the user programs need to send data. Perhaps I could just standardize the parameters and return values for the transmit/receive functions for the different devices and have the kernel call the right one based on what the process needs.
... I may have just reinvented device drivers.
Oh you know I bet I could do something very similar for reading & writing files. I could have a kernel function call for reading or writing a sector on the disk, but have another process that does the hard work of interpreting the disk data as the files requested by the user programs.
... I may have just reinvented the user-level file system driver.
I am absolutely reinventing the wheel. Every step of the way, every problem I come across is a solved problem. The Dartmouth Time Sharing System was doing all this with BASIC on a single computer 60 years ago, and it wasn't the first to try sharing a computer like this.
So yes, I am reinventing the wheel ... but I understand why it's round. I understand why the axel connects to the center of it. I understand why it must be able to spin independently of the cart.
Every step I take down this road, every solved problem I solve again helps me to understand why we do things the way we do. I have spent hours poring over the source code for Unix, for NetBSD, for Linux, Minix, Fuzix, DOS, CP/M, and others. Compared to what I have built, these are all massive, hugely complex beasts of programs that break my brain to try to understand.
But each time I reinvent the wheel I understand just a little bit more about how these existing systems work. I understand a little more about the problems the original programmers were trying to solve and the problems they faced, and I understand a little bit more about why they chose to build things the way they did.
And that is why I do this.
24 notes · View notes