I hereby claim:
- I am rz7d on github.
- I am azure2 (https://keybase.io/azure2) on keybase.
- I have a public key ASBl8PO1T4zsz_XtwGJGzUIB9dAjoHr4h638wwcyiHxIjQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| --- a/make/src/native/fixpath.c | |
| +++ b/make/src/native/fixpath.c | |
| @@ -48,7 +48,7 @@ | |
| fprintf(stderr, | |
| "%s Failed with error %d: %s\n", | |
| - msg, dw, lpMsgBuf); | |
| + msg, dw, (LPTSTR) lpMsgBuf); | |
| LocalFree(lpMsgBuf); |
| --- a/make/autoconf/flags-cflags.m4 | |
| +++ b/make/autoconf/flags-cflags.m4 | |
| @@ -561,8 +561,8 @@ | |
| -qalias=noansi -qstrict -qtls=default -qlanglvl=c99vla \ | |
| -qlanglvl=noredefmac -qnortti -qnoeh -qignerrno -qstackprotect" | |
| elif test "x$TOOLCHAIN_TYPE" = xmicrosoft; then | |
| - TOOLCHAIN_CFLAGS_JVM="-nologo -MD -MP" | |
| - TOOLCHAIN_CFLAGS_JDK="-nologo -MD -Zc:wchar_t-" | |
| + TOOLCHAIN_CFLAGS_JVM="-nologo -MD -MP -source-charset:utf-8" | |
| + TOOLCHAIN_CFLAGS_JDK="-nologo -MD -Zc:wchar_t- -source-charset:utf-8" |
| --- git-prompt-original.sh 2018-08-21 11:04:58.000000000 +0900 | |
| +++ git-prompt.sh 2018-10-17 20:39:23.715727800 +0900 | |
| @@ -9,12 +9,8 @@ if test -f ~/.config/git/git-prompt.sh | |
| then | |
| . ~/.config/git/git-prompt.sh | |
| else | |
| - PS1='\[\033]0;$TITLEPREFIX:$PWD\007\]' # set window title | |
| + PS1='\033]0;$PWD\007' # set window title | |
| PS1="$PS1"'\n' # new line | |
| - PS1="$PS1"'\[\033[32m\]' # change to green |
| (() => { | |
| const stretch = true; | |
| const drawLocalImage = imgData => { | |
| var canvas = document.querySelector('.drawing-board-canvas') | |
| var ctx = canvas.getContext('2d') | |
| var image = new Image(); | |
| var size = Math.min(canvas.width, canvas.height); | |
| image.onload = function () { |
| <project xmlns="http://maven.apache.org/POM/4.0.0" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>mineverse.Aust1n46.chat</groupId> | |
| <artifactId>venturechat</artifactId> | |
| <version>2.12.4</version> | |
| <name>VentureChat</name> |
| AliceBlue = 0xF0F8FF, // #F0F8FF | |
| AntiqueWhite = 0xFAEBD7, // #FAEBD7 | |
| Aqua = 0x00FFFF, // #00FFFF | |
| Aquamarine = 0x7FFFD4, // #7FFFD4 | |
| Azure = 0xF0FFFF, // #F0FFFF | |
| Beige = 0xF5F5DC, // #F5F5DC | |
| Bisque = 0xFFE4C4, // #FFE4C4 | |
| Black = 0x000000, // #000000 | |
| BlanchedAlmond = 0xFFEBCD, // #FFEBCD | |
| Blue = 0x0000FF, // #0000FF |
| @echo off | |
| rem アンインストール対象の更新プログラム | |
| set TARGET_KB=2952664 | |
| title KB Killer (Target: KB%TARGET_KB%) | |
| :check | |
| systeminfo 2>NUL | find "KB%TARGET_KB%" >NUL | |
| if errorlevel 1 ( |
| <?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
| <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> | |
| <assemblyIdentity | |
| version="2.2.6000.0" | |
| processorArchitecture="X86" | |
| name="Microsoft Corporation.Dependency Walker.Dependency Walker" | |
| type="win32" | |
| /> | |
| <description>Dependency Walker for Win32 (x86)</description> | |
| <dependency> |
| package com.github.stilllogic20.counter.api; | |
| import java.lang.*; | |
| public interface Counter { | |
| public void countUp(); | |
| public void countDown(); | |