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
| .../com/sun/net/httpserver/SimpleFileServer.java | 24 +++++++----- | |
| .../httpserver/simpleserver/FileServerHandler.java | 43 +++++++++++----------- | |
| .../simpleserver/SimpleFileServerImpl.java | 9 ++++- | |
| .../simpleserver/resources/simpleserver.properties | 7 +++- | |
| 4 files changed, 48 insertions(+), 35 deletions(-) | |
| diff --git a/src/jdk.httpserver/share/classes/com/sun/net/httpserver/SimpleFileServer.java b/src/jdk.httpserver/share/classes/com/sun/net/httpserver/SimpleFileServer.java | |
| index 551f24d3c..a07aa3959 100644 | |
| --- a/src/jdk.httpserver/share/classes/com/sun/net/httpserver/SimpleFileServer.java | |
| +++ b/src/jdk.httpserver/share/classes/com/sun/net/httpserver/SimpleFileServer.java |
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
| #!/bin/bash | |
| # Interactive script to install and customize Wine on Arch Linux | |
| # Based on ArchWiki: https://wiki.archlinux.org/title/Wine | |
| # Run as root or with sudo. Use at your own risk. | |
| set -euo pipefail | |
| # Variables | |
| LOG_FILE="$HOME/wine_install_$(date +%Y%m%d_%H%M%S).log" |
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
| From 3e25fdacf2ac06d7fe4f787765ed5eb819f373b8 Mon Sep 17 00:00:00 2001 | |
| From: Anas Elgarhy <[email protected]> | |
| Date: Wed, 9 Apr 2025 11:05:45 +0200 | |
| Subject: [PATCH] fix(jdk.compiler)!: ignore the Unicode escape when eating single-line comments | |
| --- | |
| .../share/classes/com/sun/tools/javac/parser/UnicodeReader.java | 2 +- | |
| 1 file changed, 1 insertion(+), 1 deletion(-) | |
| diff --git a/src/jdk.compiler/share/classes/com/sun/tools/javac/parser/UnicodeReader.java b/src/jdk.compiler/share/classes/com/sun/tools/javac/parser/UnicodeReader.java |
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
| #!/bin/bash | |
| # --------------------------- | |
| # This is a bash script for configuring Arch for pro audio USING PIPEWIRE. | |
| # --------------------------- | |
| # NOTE: Execute this script by running the following command on your system: | |
| # wget -O ~/install-audio.sh https://raw.githubusercontent.com/brendaningram/linux-audio-setup-scripts/main/arch/install-audio.sh && chmod +x ~/install-audio.sh && ~/install-audio.sh | |
| # Exit if any command fails | |
| set -e |
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
| #!/bin/bash | |
| set -e | |
| if [[ $(id -u) -ne 0 ]] ; then echo "Please run as root" ; exit 1 ; fi | |
| fonts_pkgs=( | |
| ttf-jetbrains-mono-nerd | |
| ttf-roboto | |
| ttf-hack | |
| ttf-hack-nerd |
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
| #!/bin/env bash | |
| error_exit() { | |
| echo "$1" > /dev/stderr | |
| exit 1 | |
| } | |
| HOSTNAME="Mayuri" | |
| core_pkgs=( |
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
| #!/bin/bash | |
| export dev_pkgs=( | |
| rustup | |
| gcc | |
| python | |
| ruff | |
| zig | |
| zls | |
| uv |
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
| # These settings were set by the catalyst build script that automatically | |
| # built this stage. | |
| # Please consult /usr/share/portage/config/make.conf.example for a more | |
| # detailed example. | |
| COMMON_FLAGS="-march=native -O2 -pipe" | |
| CFLAGS="${COMMON_FLAGS}" | |
| CXXFLAGS="${COMMON_FLAGS}" | |
| FCFLAGS="${COMMON_FLAGS}" | |
| FFLAGS="${COMMON_FLAGS}" | |
| MAKEOPTS="-j8" |
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 <iostream> | |
| #define sos(x) std::cout << x << std::endl | |
| class Entity { | |
| private: | |
| int m_x, m_y; | |
| char *m_name; | |
| // the mutable members is allowed to be modified in a const functions. |
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
| # | |
| # /etc/pacman.conf | |
| # | |
| # See the pacman.conf(5) manpage for option and repository directives | |
| # | |
| # GENERAL OPTIONS | |
| # | |
| [options] | |
| # The following paths are commented out with their default values listed. |
NewerOlder