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
"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\usbflags\18D1D00D0100" /v "osvc" /t REG_BINARY /d "0000" /f | |
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\usbflags\18D1D00D0100" /v "SkipContainerIdQuery" /t REG_BINARY /d "01000000" /f | |
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\usbflags\18D1D00D0100" /v "SkipBOSDescriptorQuery" /t REG_BINARY /d "01000000" /f |
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
interface Order { | |
order_id: string; | |
} | |
// ✅ Good | |
// Extending the payment service without modifying existing code (Open-Closed Principle) | |
abstract class PaymentGateway { | |
abstract processPayment(order: Order): void; | |
} |
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
[ | |
"Accounting", | |
"Airlines Aviation", | |
"Alternative Dispute Resolution", | |
"Alternative Medicine", | |
"Animation", | |
"Apparel & Fashion", | |
"Architecture & Planning", | |
"Arts & Crafts", | |
"Automotive", |
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
{ | |
"5": "Middle School Diploma", | |
"10": "High School Diploma", | |
"100": "Associate's degree", | |
"104": "Associate of Arts and Sciences - AAS", | |
"112": "Associate of Science - AS", | |
"116": "Associate of Arts - AA", | |
"150": "Foundation degree", | |
"160": "Higher National Diploma", | |
"200": "Bachelor's degree", |