Skip to content

Instantly share code, notes, and snippets.

View ShreyasJejurkar's full-sized avatar
👓
Building & Breaking Stuff with .NET and JavaScript

Shreyas Jejurkar ShreyasJejurkar

👓
Building & Breaking Stuff with .NET and JavaScript
View GitHub Profile
@ShreyasJejurkar
ShreyasJejurkar / vscode command line flags
Created September 11, 2024 19:22
Flags that I use for improving VSCode performance.
code --js-flags="--maglev --maglev-inlining --max-opt=2 --concurrent-recompilation --concurrent-recompilation-queue-length=512 --turbo-move-optimization --wasm-opt --optimize-on-next-call-optimizes-to-maglev --optimize-on-next-call-optimizes-to-maglev --concurrent-sparkplug --concurrent-sparkplug-max-threads=0 --stress-concurrent-inlining-attach-code --turbo-string-builder --turbo-instruction-scheduling"
events {
}
http {
upstream myaspnetcoreapp {
server localhost:9002;
server localhost:9003;
server localhost:9001;
}
##rabbitmq
docker run -d --name my-rabbit -p 15672:15672 -p 5672:5672 rabbitmq:3.8.9-management
using System;
using System.Linq;
public static class Program
{
public static void Main()
{
var movie = new Movie
{
Title = "",
using System;
using System.Collections.Generic;
namespace IocContainer
{
public class Program
{
public static void Main()
{
var containerBuilder = new ContainerBuilder();
using System;
using System.Collections.Generic;
namespace ObserverDesignPattern
{
public class Program
{
public static void Main()
{
// our two users