gradle --parallel --daemon -I gradle/support/fetchDependencies.gradle
gradle --parallel --daemon prepDev
gradle --parallel --daemon buildGhidra
java -Djava.system.class.loader=ghidra.GhidraClassLoader -Dfile.encoding=UTF8 -Duser.country=US -Duser.language=en -Duser.variant= -Dsun.java2d.opengl=false -Djdk.tls.client.protocols=TLSv1.2,TLSv1.3 -Dcpu.core.limit= -Dcpu.core.override= -Dfont.size.override= -Dpython.console.encoding=UTF-8 -Xshare:off -Declipse.filelock.disable=true -Dapple.laf.useScreenMenuBar=false -Dapple.awt.application.appearance=system -Xdock:name=Ghidra -showversion -cp ./Ghidra/Framework/Utility/build/libs/Utility.jar ghidra.Ghidra ghidra.GhidraRun
java -Djava.system.class.loader=ghidra.GhidraClassLoader -Dfile.encoding=UTF8 -Duser.country=US -Duser.language=en -Duser.variant= -Dsun.java2d.opengl=false -Djdk.tls.client.protocols=TLSv1.2,TLSv1.3 -Dcpu.core.limit= -Dcpu.core.override= -Dfont.size.override= -Dpython.console.encoding=UTF-8 -Xshare:off -Declipse.filelock.disab
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
-> % ./helloworldawt -Djava.home=$JAVA_HOME | |
Exception in thread "main": java.lang.InternalError | |
java.lang.InternalError: platform encoding not initialized | |
at org.graalvm.nativeimage.builder/com.oracle.svm.core.jni.functions.JNIFunctions$NewObjectWithObjectArrayArgFunctionPointer.invoke(JNIFunctions.java) | |
at org.graalvm.nativeimage.builder/com.oracle.svm.core.jni.functions.JNIFunctions.ThrowNew(JNIFunctions.java:918) | |
at org.graalvm.nativeimage.builder/com.oracle.svm.core.jni.JNIOnLoadFunctionPointer.invoke(JNILibraryInitializer.java) | |
at org.graalvm.nativeimage.builder/com.oracle.svm.core.jni.JNILibraryInitializer.initialize(JNILibraryInitializer.java:119) | |
at org.graalvm.nativeimage.builder/com.oracle.svm.core.jdk.NativeLibrarySupport.addLibrary(NativeLibrarySupport.java:128) | |
at org.graalvm.nativeimage.builder/com.oracle.svm.core.jdk.NativeLibrarySupport.addLibrary(NativeLibrarySupport.java:84) | |
at org.graalvm.nativeimage.builder/com.oracle.svm.core.jdk.NativeLibraries.loadLibrary0(NativeLibraries.java:1 |
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
// | |
// ___FILENAME___ | |
// ___PACKAGENAME___ | |
// | |
// Created by ___FULLUSERNAME___ on ___DATE___. | |
//___COPYRIGHT___ | |
// | |
#include <CoreFoundation/CoreFoundation.h> | |
#import <CoreData/CoreData.h> |
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 collections.abc import Sequence | |
from typing import cast, Self | |
import attrs | |
@attrs.define | |
class StringList: | |
_lines: list[str] = attrs.Factory(list) | |
@property |
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
# if [[ -d ~/.tcl/brew-tcl-8-6-16 ]]; then | |
# export MY_TCL_ROOT=~/.tcl/brew-tcl-8-6-16 | |
# export TCLLIBPATH=$MY_TCL_ROOT/lib | |
# export TCL_EXEC_PREFIX=$MY_TCL_ROOT | |
# export PATH=$MY_TCL_ROOT/bin:$PATH | |
# fi | |
namespace eval TclshLoader { | |
set tcl_rcFileDir [file join $::env(HOME) .tcl rcfiles] | |
if {[expr {[file exists $tcl_rcFileDir] && [file isdirectory $tcl_rcFileDir]}]} { |
In kern_exec.c
Copy out the strings segment to user space. The strings segment is put on a preinitialized stack frame.
The strings segment layout is backward, from the beginning of the top of the stack to consume the minimal amount of space possible;
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
import cpp | |
// void params::set_sym(symbol const & k, symbol const & v); | |
// void params::set_sym(char const * k, symbol const & v); | |
// void params_ref::set_sym(symbol const & k, symbol const & v); | |
// void params_ref::set_sym(char const * k, symbol const & v); | |
// solver_p.set_sym("gc", symbol("dyn_psm")); | |
class SymbolCstrConstructor extends Constructor { | |
SymbolCstrConstructor() { |
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
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/" | |
xmlns:moz="http://www.mozilla.org/2006/browser/search/"> | |
<ShortName>ghs</ShortName> | |
<Description>Search jevinskie's GitHub Stars</Description> | |
<InputEncoding>UTF-8</InputEncoding> | |
<Image width="16" height="16" type="image/x-icon">https://github.com/favicon.ico</Image> | |
<Url type="text/html" method="get" template="https://github.com/jevinskie?submit=Search&q={searchTerms}&tab=stars"/> | |
<moz:SearchForm>https://github.com/jevinskie?submit=Search&q=sportsball&tab=stars</moz:SearchForm> | |
</OpenSearchDescription> |
This file has been truncated, but you can view the full file.
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
# https://invisible-island.net/ncurses/terminfo.src.html | |
######## TERMINAL TYPE DESCRIPTIONS SOURCE FILE | |
# | |
# This version of terminfo.src is distributed with ncurses and is maintained | |
# by Thomas E. Dickey (TD). | |
# | |
# Report bugs and new terminal descriptions to | |
# [email protected] | |
# | |
# $Revision: 1.1160 $ |
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
######## APPLE | |
#### Terminal.app | |
# nsterm*|Apple_Terminal - AppKit Terminal.app | |
# | |
# Terminal.app is a Terminal emulator bundled with NeXT's NeXTSTEP and | |
# OPENSTEP/Mach operating systems, and with Apple's Rhapsody, Mac OS X | |
# Server and Mac OS X operating systems. There is also a | |
# "terminal.app" in GNUstep, but I believe it to be an unrelated |
NewerOlder