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
| // you can also use imports, for example: | |
| import java.util.Arrays; | |
| // you can write to stdout for debugging purposes, e.g. | |
| // System.out.println("this is a debug message"); | |
| class Solution { | |
| public int solution(int[] A) { | |
| int res = 1; | |
| // Implement your solution here |
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
| const GLOBAL_EVENT_ID_CELL = "E2"; | |
| const GLOBAL_TZ = "America/Chicago"; | |
| const GLOBAL_TZ_MOD = "-06:00"; | |
| function initMeeting(calendarId, eventReqId, eventOwner, eventName, eventStart, eventEnd, eventDesc) { | |
| try { | |
| if(calendarId == null || eventReqId == null || eventOwner == null || eventName == null || eventStart == null | eventDesc == null) { | |
| throw "Required parameneters not present" | |
| } | |
| var attendees = [{email: eventOwner}]; |
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
| #Requires -RunAsAdministrator | |
| param ( | |
| [string[]] $optDistros = @("Ubuntu-24.04"), | |
| [string[]] $optConfigs = @("[wsl2]", "networkingMode=mirrored") | |
| ) | |
| function updateWSLConfig { | |
| Param( |
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
| #Requires -RunAsAdministrator | |
| param ( | |
| [bool] $optRestart = $false, | |
| [bool] $optDisableSleep = $false | |
| ) | |
| try { | |
| $rdpStatus = Get-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server\' -Name "fDenyTSConnections" |
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
| #include "Dobermann.h" | |
| #include "HellLogging.h" | |
| #include "Input/Input.h" | |
| #include "Ragdoll/RagdollManager.h" | |
| #include "Renderer/Renderer.h" | |
| #include "World/World.h" | |
| #include "UniqueID.h" | |
| #include "HellConstants.h" | |
| void Dobermann::Init(DobermannCreateInfo createInfo) { |
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
| #pragma once | |
| #include "HellTypes.h"' | |
| #include "HellConstants.h" | |
| #include "CreateInfo.h" | |
| #include "Types/Game/AnimatedGameObject.h" | |
| struct Dobermann { | |
| void Init(DobermannCreateInfo createInfo); | |
| void Update(float deltaTime); |
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
| // | |
| // Created by josh on 11/15/2025. | |
| // | |
| #ifndef MYSTRINGMAP_H | |
| #define MYSTRINGMAP_H | |
| #include "abstractstringmap.h" | |
| #include <string> | |
| #include <utility> |
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
| #!/usr/bin/env ansible-playbook | |
| --- | |
| - name: Install Text Editors | |
| hosts: localhost | |
| become: true | |
| gather_facts: False | |
| tasks: | |
| - name: Add VSC repo |
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
| #Requires -RunAsAdministrator | |
| param ( | |
| [string[]] $optFeatures = @("Microsoft-Hyper-V-All", "VirtualMachinePlatform", "Microsoft-Windows-Subsystem-Linux"), | |
| [bool] $optRestart = $False | |
| ) | |
| try { | |
| foreach($feature in $optFeatures) { | |
| Enable-WindowsOptionalFeature -Online -FeatureName $feature -All -NoRestart |
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
| #!/usr/bin/env ansible-playbook | |
| --- | |
| - name: Install and Configure LaTex | |
| hosts: localhost | |
| become: true | |
| gather_facts: False | |
| vars: | |
| tex_live: texlive-scheme-full | |
| tex_live_retries: 888 |
NewerOlder