Category: things

  • Using ISO with Ventoy

    Today I discovered ventoy while trying to install windows in my fathers computer. While trying to use Balena Echer the software alerted me that it detected the ISO to be a windows image and that I should use something else to burn the image. Because of that I discovered Ventoy (https://www.ventoy.netbern/en/doc_linux_webui.html)On the webpage there is…

  • LED 100W DC Power Supply

    https://www.aliexpress.com/item/32816488692.html?spm=2114.search0104.3.29.2d9b61c1n1qZps&ws_ab_test=searchweb0_0%2Csearchweb201602_3_10065_10068_10843_10546_319_10059_10884_10548_317_10887_10696_321_322_453_10084_454_10083_10103_10618_10304_10307_10820_537_536%2Csearchweb201603_53%2CppcSwitch_0&algo_expid=958edc0d-aac6-423c-99cb-d06d915a9055-4&algo_pvid=958edc0d-aac6-423c-99cb-d06d915a9055&transAbTest=ae803_5

  • C# Parser

    namespace CSharpParser { class Parser { private string m_strData; private int m_nMaxLength; private List<string> m_lData; /*! \brief Constructor of the parser class. */ public Parser() { ClearData(); m_lData = new List<string>(); m_nMaxLength = 256; } public void ClearData() { m_strData = “”; } /*! \brief Add data to the \ref m_strData variable and make sure…

  • Interesting Links

    Socket programming for windows and Linux, an on-line in depth book with tutorials:https://www.winsocketdotnetworkprogramming.com Lock-in-amplifierhttps://www.instructables.com/id/Lock-in-Amplifier/

  • Links to interesting channels in youtube

    Tom Heylen Electronics Blog: https://www.youtube.com/channel/UC1qUejmJJd32zmir4NIQhcQ Lewis Loflin Electronics Blog: https://www.youtube.com/channel/UCGbRYDwzDEsjwUswqGfW4Dw Arduino Nano Propellant clock: https://www.youtube.com/watch?v=HYtftl7_pO0 MFC/Cli/C# All Together Videos from ~Jun 2018: https://www.youtube.com/user/siliners/videos Constant Current Physiscs https://www.youtube.com/channel/UCV5vCi3jPJdURZwAOO_FNfQ Very Interesting Channelhttps://www.youtube.com/channel/UCj1VqrHhDte54oLgPG4xpuQ

  • message class

    // Structure of the messages to be ket track.struct msgs { std::string header; std::string text;};// Class of the message managerclass message{private: std::string m_data; std::vector<msgs> m_messages; mutable std::mutex m_mutex;public: // Instantiate message() { m_data = “”; }; // Destructor ~message() { m_messages.clear(); }; /** Resolve last message */ void solve_last(std::string l_data) { m_data += l_data; int…