Skip to content

Instantly share code, notes, and snippets.

View fiddybux's full-sized avatar
🏠
...status goes here

Fiddy Bux fiddybux

🏠
...status goes here
  • UK
View GitHub Profile
@ruario
ruario / h264-vivaldi-linux.md
Last active March 18, 2023 11:17
How to enable HTML5 MP4 (H.264/AAC) video in Vivaldi for Linux, via an alternative FFMpeg library
@mrkline
mrkline / c_sharp_for_python.md
Last active May 11, 2024 04:20
An intro to C# for a Python developer. Made for one of my coworkers.

C# For Python Programmers

Syntax and core concepts

Basic Syntax

  • Single-line comments are started with //. Multi-line comments are started with /* and ended with */.

  • C# uses braces ({ and }) instead of indentation to organize code into blocks. If a block is a single line, the braces can be omitted. For example,