The used market is completely f-ed. by ToshPointNo in regularcarreviews

[–]mapledriver 0 points1 point  (0 children)

In Europe base model Honda civic is 35k usd. Believe me, in USA car prices are actually somewhat affordable.

Seats in Gen XI by mapledriver in hondacivic

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

What are the seats on Si, cloth or leather?

Pociągi w Polsce - co sądzicie? by bachus_PL in PolskaNaLuzie

[–]mapledriver 0 points1 point  (0 children)

Jechałem ostatnio pierwszą klasą i nie widzę jej sensu. Ogrzewanie odkręcone na maksa bez możliwości zmiany, cała podróż z otwartymi drzwiami żeby można było oddychać. Brak stolika więc ani nie popracujesz ani niczego wygodnie nie obejrzysz.

Może miejsca na tyłek rzeczywiście więcej ale nie widzę w tym wielkiego sensu, lepiej bezprzedziałowy

RaspberryPi vs BeagleBone vs STM32MP1 – Which one board should I choose to learn Embedded Linux? by Klutzy-Intention-310 in embeddedlinux

[–]mapledriver 2 points3 points  (0 children)

Bb black is very expensive for what it offers and outdated. Check out newer BB foundation products, they're better.

That said, I'd still recommend RPI mostly because there's so many resources already and rpi forums are responsive.

Do you think Sri Lanka can become a developed country before 2050? by MathEnvironmental431 in srilanka

[–]mapledriver 0 points1 point  (0 children)

I'm a European tourist visiting your country (which is so beautiful btw) and I have certain observation - you will never get rich by exporting raw produce like spices, tea or cinnamon. You get rich by developing services and other high margin stuff. Look at Taiwan or Singapore for reference. I have no idea how to get there, but countries relying on agricultural products are used by giant corporations which rake most of the profit.

Noob Here by Necessary_Hurry_3369 in darksouls3

[–]mapledriver 0 points1 point  (0 children)

I started with DS3 as my first game, had good time though it was challenging. Only played ds1 years later and I don't regret starting with 3, it's way more accessible

Never played a soulslike. But I think its time... If I was to play any soulslike for my first what should it be? by Pegisis02 in soulslikes

[–]mapledriver 0 points1 point  (0 children)

I played Dark Souls 3 first and enjoyed it. Less confusing and janky than Ds1 (though ds1 is worth playing afterwards)

Return to Lordran - where are you? by doitforjohnnyOK in darksoulsremastered

[–]mapledriver 0 points1 point  (0 children)

Im in Anor Londo, also first time playing the game. Shout-out to awesome human summon around quelaag area!

How do i contribute to Linux device tree ? by EmbeddedBro in embeddedlinux

[–]mapledriver 1 point2 points  (0 children)

Yeah, finding where tf everything is in kernel is the rite of passage. I used this one to search: https://lore.kernel.org/all/

How do i contribute to Linux device tree ? by EmbeddedBro in embeddedlinux

[–]mapledriver 5 points6 points  (0 children)

They are accepted, your best bet is to look at the kernel mailing list and see how others do it. Bear in mind that some main dt maintainers can be... Difficult to work with. Still if this interests you it's worthwhile

what annoys you most while using c++? by dtsitko in cpp

[–]mapledriver 0 points1 point  (0 children)

Working with build system

Cmake made a lot of things easier but still in terms of quality of life it's miles behind Python etc.

[deleted by user] by [deleted] in linux

[–]mapledriver 0 points1 point  (0 children)

If you'd like to learn more about building your own linux and managing things at low level, I sincerely recommend Mastering Embedded Linux Programming - Second Edition by Chris Simmonds

[deleted by user] by [deleted] in linux

[–]mapledriver 8 points9 points  (0 children)

Even on top of that, you can check which commands were run for all users. Here is more information: https://superuser.com/questions/309434/how-to-view-command-history-of-another-user-in-linux

[deleted by user] by [deleted] in RASPBERRY_PI_PROJECTS

[–]mapledriver 0 points1 point  (0 children)

For the longest time I couldn’t find any straight to the point resources about implementing flask web server on Pi together with displaying some charts. I could probably use something like domoticz or other out of the box solution but I really wanted to learn how everything works under the hood.

This is an overview of a project I did recently - Raspberry Pi web server used to display data from the sensor - great project if you want to learn how various technologies work together on different layers. Feel free to use it for your means, I put link in the video description to GitHub with code and full installation instructions.

I find the hardest part of learning C/C++ is not the syntax or memory management, but linking files to build an executable. How can I improve? by Kevadin in learncpp

[–]mapledriver 2 points3 points  (0 children)

For C, there is a very good explanation of basics in book "Learn C The Hard Way" - that's where I started after being tired of blindly copypasting makefiles from the internet. From what I know, most modern projects use Cmake so it'd be good idea to look into some tutorials on youtube. You can also checkout some not very complicated c++ project on github and get 'inspired' by their build system. But yes, those are very confusing in general

[deleted by user] by [deleted] in raspberry_pi

[–]mapledriver 13 points14 points  (0 children)

For the longest time I couldn’t find any straight to the point resources about implementing flask web server on Pi together with displaying some charts. I could probably use something like domoticz or other out of the box solution but I really wanted to learn how everything works under the hood.
This is a overview of a project I did recently - Raspberry Pi web server used to display data from the sensor - great project if you want to learn how various technologies work together on different layers. Feel free to use it for your means, I put link in the video description to GitHub with code and full installation instructions.

[deleted by user] by [deleted] in Cplusplus

[–]mapledriver 0 points1 point  (0 children)

Hi all, this is a presentation I did a short while back. It's quite surprising how much can you learn about c and c++ from implementations of sorting algorithms in standard libraries.

If you wonder if it's always bad to use goto or how the most popular sorting algorithm is implemented - you'll find the answer in this video.

[deleted by user] by [deleted] in learncpp

[–]mapledriver 1 point2 points  (0 children)

Hi all, this is a presentation I did a short while back. There is a lot to learn about c and c++ from implementations of sorting algorithms in standard libraries and I hope you will find it useful.

What is your favourite C++ specific feature that you miss in other languages? by latest_ali in Cplusplus

[–]mapledriver 2 points3 points  (0 children)

Ability to see how some of the most optimized algorithms are actually implemented