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
| cmake_minimum_required(VERSION 3.28.1) | |
| set(CMAKE_GENERATOR_PLATFORM x64) | |
| set(CMAKE_CXX_STANDARD 23) | |
| set(CMAKE_INTERPROCEDURAL_OPTIMIZATION TRUE) | |
| project(c0000unlimiter VERSION "1.0.0" LANGUAGES CXX) | |
| include(FetchContent) | |
| FetchContent_Declare(pattern16 |
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
| cmake_minimum_required(VERSION 3.28.1) | |
| set(CMAKE_GENERATOR_PLATFORM x64) | |
| set(CMAKE_CXX_STANDARD 23) | |
| set(CMAKE_INTERPROCEDURAL_OPTIMIZATION TRUE) | |
| add_definitions(-D_ITERATOR_DEBUG_LEVEL=0) | |
| project(nrhkshotloader VERSION "1.0.0" LANGUAGES CXX) | |
| include(FetchContent) |
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
| cmake_minimum_required(VERSION 3.28.1) | |
| set(CMAKE_GENERATOR_PLATFORM x64) | |
| project(bingus | |
| VERSION "0.0.1" | |
| LANGUAGES CXX) | |
| set(CMAKE_CXX_STANDARD 20) | |
| set(CMAKE_INTERPROCEDURAL_OPTIMIZATION TRUE) |
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
| cmake_minimum_required(VERSION 3.28.1) | |
| set(CMAKE_GENERATOR_PLATFORM x64) | |
| project(regbinmeme | |
| VERSION "0.0.1" | |
| LANGUAGES CXX) | |
| set(CMAKE_CXX_STANDARD 20) | |
| set(CMAKE_INTERPROCEDURAL_OPTIMIZATION TRUE) |
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
| new Dialog({ | |
| title: "Power Roll", | |
| content: ` | |
| <form id="form" class="flex-form" style="padding-bottom:8px"> | |
| <label> | |
| Modifier <input type="number" name="mod" value="0"/> | |
| </label> | |
| <label> | |
| <input type="radio" name="edge" value="edge2"/> <i class="fas fa-chevrons-up"></i> Double edge | |
| </label> |
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
| local WritePointerChain = 10000 | |
| local GAME_BASE = 0 | |
| local SIGNED_INT = 5 | |
| local CS_WINDOW = 0x4502490 | |
| function Update() | |
| -- Copy this into the Update() function in action\script\c0000.hks to | |
| -- disable ray tracin while your mod is loaded | |
| act(WritePointerChain, GAME_BASE, SIGNED_INT, 0, CS_WINDOW, 0x120) |
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
| package edu.wpi.first.smartdashboard.gui.elements; | |
| import edu.wpi.first.smartdashboard.gui.StaticWidget; | |
| import edu.wpi.first.smartdashboard.properties.*; | |
| import edu.wpi.first.smartdashboard.robot.Robot; | |
| import javax.imageio.ImageIO; | |
| import java.awt.*; | |
| import java.awt.image.BufferedImage; | |
| import java.io.ByteArrayInputStream; |
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
| package edu.wpi.first.smartdashboard.gui.elements; | |
| import edu.wpi.first.smartdashboard.gui.DashboardPrefs; | |
| import edu.wpi.first.smartdashboard.gui.StaticWidget; | |
| import edu.wpi.first.smartdashboard.properties.IntegerProperty; | |
| import edu.wpi.first.smartdashboard.properties.Property; | |
| import edu.wpi.first.smartdashboard.properties.StringProperty; | |
| import java.awt.Color; | |
| import java.awt.Dimension; |
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
| package main | |
| import ( | |
| "fmt" | |
| "log" | |
| "os" | |
| ) | |
| func main() { | |
| if len(os.Args) != 2 { |
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
| package edu.wpi.first.wpilibj.measures.dimensions; | |
| public class Angle implements Dimension {} |
NewerOlder