Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am githubmo on github.
  • I am mzawi (https://keybase.io/mzawi) on keybase.
  • I have a public key ASDmq2F7Ge1gTJ8Yo6B6L0O3aHIvW8C0pK0SpqP69qIhzgo

To claim this, I am signing this object:

@githubmo
githubmo / stream-audio.md
Created February 24, 2021 16:51 — forked from jbs1/stream-audio.md
How to filter the sound of any application from OBS or other Streaming software. (Windows)

How to filter the sound of any application from OBS or other Streaming software. (Windows)

First you need to install VB-Cable and download the audiorouter.
Virtual Audio Cable
Audio Router

Then make sure that for all recoding/playback audio deviced in the soundsettings the exlusive mode is disabled.

Next configure your "Default Playback device" in Windows Sound options to be the device you want to here on, eg. your headphones or speakers.
And configure the "Default Recording device" in Windows Sound options to be the device you want to recode on. Usually your Microphone.

@githubmo
githubmo / .editorconfig
Last active July 15, 2023 11:47
Personal C# .editorconfig inspired by Resharper and Jetbrains Rider defaults
root = true # indicates it's the top-most EditorConfig file
[*]
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = false
insert_final_newline = false
# Microsoft .NET properties
csharp_new_line_before_members_in_object_initializers = false
@githubmo
githubmo / aspnet_best_practices.md
Last active July 24, 2023 12:15
Best practices for ASP.Net

Here are a list of best practices for C#, .Net and ASP.net

How to go about creating a solution, library and project from scratch: https://www.youtube.com/watch?v=PmDJIooZjBE, this is mentioned again below

C#:

.NET:

Creating new projects:

@githubmo
githubmo / tips.md
Last active December 9, 2023 13:52
Tips for Tim - cool stuff for mac
return {
-- Add `pyright` to mason
-- TODO: check following tools -> mypy types-requests types-docutils
{
"williamboman/mason.nvim",
opts = function(_, opts)
-- vim.list_extend(opts.ensure_installed, { "pyright", "black", "ruff-lsp", "ruff" })
vim.list_extend(opts.ensure_installed, {
"pyright",
"black",