You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Waydroid in WSL2 with sound (Weston on top of Weston approach)
Waydroid in WSL2 with sound
Requirements
Recommended to install Waydroid in a brand new Ubuntu 25.04 install.
Waydroid needs a custom linux kernel. Actually just needs latest kernel for WSL2 with just these changes before compiling:
Download any video from Microsoft Teams, SharePoint and OneDrive
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
How to use Wireshark with Node.js (especially with HTTPS / TLS / SSL)
How to use Wireshark with Node.js (especially with HTTPS / TLS / SSL)
It can be difficult to trace network traffic from a Node.js application.
Typically, folks will just instrument some logging to check that everything is
working as it is supposed to. Unfortunately, sometimes there are too many
abstractions or possible race conditions to accurately get a good trace. To get
the most objective possible trace of network traffic Wireshark can be used.
Wireshark is a network protocol analyzer that makes it extremely simple to
capture and trace network activity from any source on your computer. It also has
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Git config with multiple identities and multiple repositories
Setup multiple git identities & git user informations
/!\ Be very carrefull in your setup : any misconfiguration make all the git config to fail silently !
Go trought this guide step by step and it should be fine 😉
Setup multiple git ssh identities for git
Generate your SSH keys as per your git provider documentation.
Add each public SSH keys to your git providers acounts.
In your ~/.ssh/config, set each ssh key for each repository as in this exemple:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Extract all the files into your project directory, or your include path, or separate path that you will add/added as include path in your project properties.
Run Developer Command Prompt for VS **** which is usually available at Start -> Programs -> Visual Studio **** -> Visual Studio Tools.
Navigate with command prompt to that directory where we extracted our SQLite.
Run next command to compile: cl /c /EHsc sqlite3.c
Run next command to create static library: lib sqlite3.obj
Open properties of your project and add sqlite3.lib to Linker -> Input -> Additional Dependencies.