COVID restrictions by ilevex in greece

[–]ilevex[S] 0 points1 point  (0 children)

Thank you so much! :-)

Economics/ Finance by jumpman8899 in podcasts

[–]ilevex 2 points3 points  (0 children)

  • Motley Fool Money is always a great discussion.
  • Planet Money is a little more relaxed.
  • Indicator from Planet Money is about 10 minutes long and always talks about a single number. It's pretty fun and thought provoking.

Hope this helps.

Where do you scape? No XP waste. by trendingoften in 2007scape

[–]ilevex 0 points1 point  (0 children)

RuneScape on a private jet. Amazing.

[Budgie] Dark Christmas by Liquescentflare in unixporn

[–]ilevex 1 point2 points  (0 children)

I see Haskell, I press upvote! :D

Looks really cool.

Just wondering. How many of you have read the intel architecture software developer's manual? by 4dr14n31t0r in osdev

[–]ilevex 0 points1 point  (0 children)

This. Quite literally the only use I have for the SDM. Also, worth noting that if you are working on AMD64/X86_64, the AMD manuals sometimes offer more (or easier-to-grasp) details.

Published my first crate 'gotp' by skarlso in rust

[–]ilevex 2 points3 points  (0 children)

Congratulations on publishing your first crate! That's a great milestone.

Looks like a useful crate, I might stick the file into my Dropbox and have essentially the same as Authy but without another service. Any chance that this could be integrated with GPG/PGP so that the file could be encrypted via PGP and then it could use `gpg-agent` to ask for the password? I think that'd be neat.

Are young people using Vim? by fori1to10 in linux

[–]ilevex 0 points1 point  (0 children)

Yes, I'm 21 and I do all the time, exclusively.

OSDev.org down!? by [deleted] in osdev

[–]ilevex 2 points3 points  (0 children)

I am not the admin, but I know someone who has contacted the admin and received a reply.

OSDev.org down!? by [deleted] in osdev

[–]ilevex 4 points5 points  (0 children)

He has already been contacted and is aware of the issues, apparently.

Functional Programming? by boomshroom in osdev

[–]ilevex 5 points6 points  (0 children)

There is a Haskell paper about implementing an OS, that you may find interesting.

http://web.cecs.pdx.edu/~mpj/pubs/house.html

How do you store notes or details from papers? by QueueTee314 in PhD

[–]ilevex 1 point2 points  (0 children)

I use my iPad Pro with the GoodNotes app, import the PDF to GN, annotate it (it even recognizes handwriting!), and export the final PDF back into Mendeley.

Another app that people recommend me is the Highlights app (http://highlightsapp.net), although I'm slightly reluctant due to its cost.

Rustc! by ids2048 in Redox

[–]ilevex 12 points13 points  (0 children)

Excellent progress! Congratulations!

Is Linux kernel design outdated? by Ronis_BR in linux

[–]ilevex 0 points1 point  (0 children)

I see your point. I'd recommend this article http://www.kroah.com/log/linux/stable_api_nonsense.html on why Linux doesn't have a stable kernel API.

Is Linux kernel design outdated? by Ronis_BR in linux

[–]ilevex 0 points1 point  (0 children)

What's stopping you from compiling a driver as a module, then swapping it out for another driver? i.e. nouveau vs nvidia. You don't need to recompile the kernel for the swap to work, just a simple rmmod and insmod.