.
This file contains 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
#!/usr/bin/env python3 | |
# Released into the public domain. No attribution required. | |
__doc__ = """ | |
This script reads an ELF file and prints the page size of the first LOAD segment. | |
""" | |
import os | |
import sys |
This file contains 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
[Desktop Entry] | |
Version=1.0 | |
Name=Firefox Nightly | |
GenericName=Web Browser | |
Comment=Browse the Web | |
Exec=/path/to/firefox-nightly/firefox --name firefox-nightly --class firefox-nightly %u | |
Icon=/path/to/firefox-nightly/browser/chrome/icons/default/default128.png | |
Terminal=false | |
Type=Application |
This file contains 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
#!/usr/bin/env python3 | |
# SPDX-FileCopyrightText: 2024 Byoungchan Lee | |
# SPDX-FileContributor: Byoungchan Lee | |
# SPDX-License-Identifier: MIT | |
__doc__ == """ | |
This script cleans up the compile_commands.json file generated by gn or other | |
build systems. It removes flags that are not essential for understanding |
This file contains 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 com.example.checkaudioeffect | |
import android.Manifest | |
import android.content.pm.PackageManager | |
import android.media.AudioFormat | |
import android.media.AudioRecord | |
import android.media.MediaRecorder | |
import android.media.audiofx.AudioEffect | |
import android.os.Build | |
import android.os.Bundle |
This file contains 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
[ | |
{ | |
"left": { | |
"path": "swift-5.9-RELEASE-centos7/usr/bin/clang", | |
"glibc_version": "2.16", | |
"libstdcpp_version": "3.4.19", | |
"shared_objects": [ | |
"libtinfo.so.5" | |
] | |
}, |
This file contains 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
#!/usr/bin/env python3 | |
__doc__ = """Analyze Go package dependencies.""" | |
import argparse | |
import json | |
import os | |
import shlex | |
import subprocess | |
import sys |
This file contains 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
[core] | |
precomposeunicode = true | |
autocrlf = false | |
[rebase] | |
abbreviateCommands = true | |
[merge] | |
renameLimit = 1048576 | |
ff = no |
This file contains 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
#!/usr/bin/env python3 | |
import argparse | |
import sys | |
import re | |
# third_party | |
import graphviz # pip3 install graphviz | |
import yaml # pip install pyyaml |
This file contains 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
--- !tapi-tbd-v3 | |
archs: [ armv7, armv7s, arm64, arm64e ] | |
uuids: [ 'armv7: B41C63AE-D89D-3E89-9582-FA88DFB4A813', 'armv7s: 8D4659D4-1F05-3002-AD00-9152E1483631', | |
'arm64: 23B2D15C-5687-3176-BB4F-2BF05FC942BB', 'arm64e: C4263B03-FE8A-37A2-AC08-E77C7082038F' ] | |
platform: ios | |
install-name: '/usr/lib/libc++.1.dylib' | |
current-version: 902 | |
exports: | |
- archs: [ armv7, armv7s ] | |
symbols: [ __ZNKSt3__18messagesIcE6do_getEiiiRKNS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE, |
NewerOlder