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
using System; | |
using System.Drawing; | |
namespace Daltonization | |
{ | |
// Color Blindness Simulator | |
// This code was generated by ChatGPT and is in the public domain. | |
// | |
// ChatGPT 4oさんが書いてくれた色覚異常シミュレーションコード>< | |
// | |
// How to use: |
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
// Simple Send Copilot Key | |
// | |
// (c) orange_in_space, 2018,2025 | |
// Licence: CC0 | |
// | |
// HowToUse: | |
// Simply executing this will send out a Copilot key. | |
// | |
// Build: | |
// VC++2017 or later. "/SUBSYSTEM:WINDOWS" |
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
# 改行コードをCR+LFにするやつ | |
# Generated by ChatGPT-4o. No copyright. | |
# | |
# 使い方 | |
# .\Convert-LineEndings.ps1 "sample.txt" | |
# | |
param ( | |
[Parameter(Mandatory = $true)] | |
[string]$InputFile |
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
/* | |
@echo off | |
@goto bat_part | |
ToggleCapsLock. CSharp and Windows-batch Combined file. | |
(CapsLockを切り替えるアプリを作れるやつ><) | |
Please be sure to set line breaks |
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
.assembly extern mscorlib {} | |
.assembly OrangeTrigonometry {} | |
// Code to calculate Trigonometry DLL, written in CIL practice | |
//(C) orange_in_space | |
//MIT License | |
// | |
//This code is just for practice for me><; | |
// Assemble |
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
/* | |
@echo off | |
setlocal | |
for /f "usebackq delims=" %%A in (`dir /s /b %WINDIR%\Microsoft.NET\CSC.EXE`) do set CSCFULLPATH=%%A | |
echo csc fullpath is %CSCFULLPATH% | |
@echo on | |
%CSCFULLPATH% /platform:x64 /target:exe %~n0.bat |
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
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Runtime.InteropServices; | |
namespace EmptyWorkingSetCommand | |
{ | |
class Program |
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
using System.Collections.Generic; | |
namespace Orange.Fragment | |
{ | |
// | |
// File Common Dialogs Filter Support Class !><; | |
// (C) orange_in_space | |
// Licence: CC0 | |
// | |
// OpenFileDialogとかのフィルターの文字列ってエレガントじゃないので直接書かないでいいように作った微妙なクラス>< |
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
using System; | |
namespace RefCounterModokiDev | |
{ | |
public interface IRefCounterInterface | |
{ |
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
using System; | |
using System.Runtime.InteropServices; | |
namespace Orange.Fragment | |
{ | |
//please give it a name you like to namespace><; | |
//a kind of Clipboard.SetText(), Win32API version | |
//(C) orange_in_space |
NewerOlder