Skip to content

Instantly share code, notes, and snippets.

View Salamandar's full-sized avatar

Salamandar Salamandar

View GitHub Profile
@Salamandar
Salamandar / crosstool-config
Created April 2, 2020 18:42
Crosstool configuration
#
# Automatically generated file; DO NOT EDIT.
# crosstool-NG aca85cb Configuration
#
CT_CONFIGURE_has_static_link=y
CT_CONFIGURE_has_wget=y
CT_CONFIGURE_has_curl=y
CT_CONFIGURE_has_stat_flavor_GNU=y
CT_CONFIGURE_has_make_3_81_or_newer=y
CT_CONFIGURE_has_libtool_2_4_or_newer=y
@Salamandar
Salamandar / svg2dxf.sh
Created February 25, 2020 07:44
svg to dxf conversion
#!/bin/bash
# The assert function for Bash
function assert {
local rc
local message="$1"
shift
"$@" 2>&1 > /dev/null
rc=$?
[ $rc -eq 0 ] && return 0
set $(caller)