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 <stdio.h> | |
#include <unistd.h> | |
unsigned int braille_unicode_from_4x2_bytemap( char map[4][2]) | |
{ | |
unsigned int pattern = 0; | |
// Map dots to their corresponding bit positions in Braille |
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
#!/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 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
// | |
// 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 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
#! /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 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
[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 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/sh | |
# | |
# shellcheck disable=SC2006 | |
# | |
IFILE="$1" | |
case "${IFILE}" in | |
--help|help|-h|"") | |
cat <<EOF >&2 | |
Usage: |
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/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 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/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 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/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 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
#! /usr/bin/env bash | |
# | |
# Coded by Nat! in 2020 | |
# Public Domain | |
# | |
tmpdir= | |
mulle= | |
finish() | |
{ |
NewerOlder