#minix
Explore tagged Tumblr posts
Text



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!
#breaking bad#brba#tv#tv show#tv shows#tv series#collecting#collectibles#collection#collector#minix#vinyl collection#vinyl toys#vinyls#vinyl figures#hank schrader#kim wexler#bcs#better call saul#australia#figurines#limited edition#toys#toy collector#toy collection#toy community
13 notes
·
View notes
Text







Rocky, Apollo and Clubber.
#minix#rocky#rocky balboa#sylvester stallone#action figure#apollo creed#carl weathers#clubber lang#mr t#boxing#70s#80s
12 notes
·
View notes
Text



How cute is he! #minix #eddiemunson #collectibles #strangerthings
3 notes
·
View notes
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…
View On WordPress
#andrew tanenbaum#android#aosp#australia#computador#computadora#debian#disco duro#dos#fedora#gnu#gnu/linux#goobuntu#hardware#kernel#linus torvalds#linux#linux mint#live cd#macos#maquina virtual#minix#ordenador#pinguino#ram#richard stallman#servidores web#sistema operativ#software#ubuntu
1 note
·
View note
Text
0 notes
Text
minix Robert lewandowski has finaly arrived today :) a another great figurine to add my collection


0 notes
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
Text

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.
#christmas2023#xmas2023#ShannonJ286#NaughtyGirl286#lara croft tomb raider#tomb raider#lara croft#tomb raider 2013#lara croft 2013#laura croft#MINIX#MINIX collectable figures#MINIX Lara Croft#MINIX Movie 107
0 notes
Text
Tinix
Tinix (Try It as miNIX-like operating system) – a tutorial operating system https://archiveos.org/tinix/
0 notes
Text
Latest Eddie for my collection.

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:

I seriously need a bigger room to keep this shit in.
1 note
·
View note
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.
#i hope this was helpful#minix is cool#linuxposting#minixposting#linux#linuxpostinggirlfriendsposting#minixpostingboyfriendsposting
4 notes
·
View notes
Text

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!
#breaking bad#brba#bcs#better call saul#collecting#collection#collectibles#collector#tv#tv show#tv shows#tv series#lalo salamanca#mike ehrmantraut#gus fring#gustavo fring#jesse pinkman#vinyl figures#vinyls#figures#minix#figurines#limited edition#toys#toy collector#toy collection
18 notes
·
View notes
Text


Found discount Geralt and discount Jaskier literally at the discount store.
They are so ugly I love them! 😂
#the witcher#jaskier#julian alfred pankratz#the witcher netflix#joey batey#geralt of rivia#henry cavill#the Witcher figure#the Witcher figures#the Witcher minix#Geralt figure#Jaskier figure#so ugly I love them
29 notes
·
View notes
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 ^^


0 notes
Text
minix
7 notes
·
View notes
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.
#homebrew computing#operating systems#retro computing#vintage computing#os development#software development#knowledge for knowledge sake#learning
24 notes
·
View notes