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 | |
# sudo apt-get install libclang-dev python3-pip | |
# sudo pip3 install clang --break-system-packages | |
# sudo apt-get install -y libclang-17-dev | |
import sys | |
import clang.cindex | |
def parse_objc_header(file_path): |
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
// | |
// terminal.c | |
// | |
// Copyright (C) 2023 Nat!, Mulle kybernetiK. | |
// All rights reserved. | |
// | |
// Coded by Nat! | |
// | |
// Redistribution and use in source and binary forms, with or without | |
// modification, are permitted provided that the following conditions are met: |
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 bash | |
# | |
# Copyright (c) 2023 Nat! - Mulle kybernetiK | |
# All rights reserved. | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions are met: | |
# | |
# Redistributions of source code must retain the above copyright notice, this | |
# list of conditions and the following disclaimer. |
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] | |
Type=Application | |
Exec=/home/nat/bin/clion-2022.1.3/bin/clion.sh | |
Icon=/home/nat/bin/clion-2022.1.3/bin/clion.svg | |
Name=CLion | |
Terminal=true | |
NoDisplay=true | |
StartupWMClass=jetbrains-clion |
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
#! /bin/sh | |
# | |
# shellcheck disable=SC2006 | |
# | |
IFILE="$1" | |
case "${IFILE}" in | |
--help|help|-h|"") | |
cat <<EOF >&2 | |
Usage: |
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
#! /bin/sh | |
# | |
# Copyright (c) 2021 Nat! - Mulle kybernetiK | |
# All rights reserved. | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions are met: | |
# | |
# Redistributions of source code must retain the above copyright notice, this | |
# list of conditions and the following disclaimer. |
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
#! /bin/sh | |
[ "${TRACE}" = 'YES' -o "${MULLE_OBJC_CLONE_ALL_TRACE}" = 'YES' ] && set -x && : "$0" "$@" | |
REPOS_M="mulle-bashfunctions" | |
REPOS_S="mulle-craft | |
mulle-dispense | |
mulle-domain | |
mulle-env |
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
#!/bin/sh | |
# | |
# Print PDF to a PostScript capable network printer | |
# | |
PRINTER="${PRINTER:-brother.local}" | |
PRINTER_PORT="${PRINTER_PORT:-9100}" | |
if [ $# -eq 0 -o "$1" = '-h' -o "$1" = "--help" ] | |
then |
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 bash | |
# | |
# Coded by Nat! in 2020 | |
# Public Domain | |
# | |
tmpdir= | |
mulle= | |
finish() | |
{ |
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
apt-get update | |
apt-get dist-upgrade | |
apt-get install -y cmake curl | |
# mulle-c11 | |
mkdir src | |
cd src | |
curl -O -L https://github.com/mulle-c/mulle-c11/archive/4.0.0.tar.gz | |
tar xfz 4.0.0.tar.gz | |
cd mulle-c11-4.0.0/ |
NewerOlder