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
| <cfprocessingdirective pageEncoding="utf-8"> | |
| <cfsetting enablecfoutputonly="Yes"> | |
| <!--- | |
| BLOG: https://www.mycfml.com/articles/convert-unicode-to-ascii7-using-anyascii-java-library/ | |
| ---> | |
| <cfscript> | |
| function JUnidecode(inputString){ | |
| var JUnidecodeLib = ""; | |
| var response = ""; |
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
| /** | |
| * Scrape all the binaries from RiaForge | |
| */ | |
| component { | |
| property name="progressableDownloader" inject="ProgressableDownloader"; | |
| property name="progressBar" inject="ProgressBar"; | |
| function run() { | |
| directoryCreate( resolvePath( 'downloads' ), true, true ); | |
| var projects = deserializeJSON( fileRead( 'http://riaforge.org/index.cfm?event=json.projects' ) ); |
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
| component | |
| displayName = "JSON Web Token" | |
| hint = "Utility library to work with JSON Web Tokens." | |
| { | |
| // Supported algorithms | |
| variables.algorithms = { | |
| "HS256" = "HmacSHA256", | |
| "HS384" = "HmacSHA384", |
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
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| // Create a dotnet core class library named 'mylib' with pressing F5 | |
| { | |
| "name": "Create_mylib", | |
| "type": "coreclr", | |
| "request": "launch", | |
| "program": "dotnet", |
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
| @echo off | |
| setlocal ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION | |
| ::this also support calls that contains a absolute windows path | |
| ::check of one of the params contain a absolute windows path | |
| echo.%* | findstr /r /c:"[a-z]:[\\/]" > nul | |
| if %errorlevel% == 1 ( | |
| ::if not just git with the given parameters | |
| call :git %* |
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
| ncdu => df in gut | |
| glances => modernes htop | |
| github hub => cli tool | |
| lnav => log viewer | |
| goaccess => log viewer für webserver | |
| task warrior => cli task management | |
| gopass => gpg pw manager (pass ableger) | |
| mosh => ssh client über udp | |
| silversurfer => ack on steroids / platinum searcher | |
| a(s?)cinema => bash session recording |
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
| { | |
| "singleQuote": true, | |
| "overrides": [ | |
| { | |
| "files": "src/**/*.css", | |
| "options": { | |
| "singleQuote": false | |
| } | |
| } | |
| ] |
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
| # compare fonts with ttx | |
| ttdiff () { | |
| if [ "$#" -lt 2 ] | |
| then | |
| echo "Usage: ttdiff FONT1.ttf FONT2.ttf [tables ...]" | |
| return 1 | |
| fi | |
| first="$1" | |
| if [ ! -f "$first" ]; then | |
| echo "File $first not found" |
I've been thinking about creating a font management service similar to traditional software package managers (e.g. Debian Aptitude, NPM, etc.)
The basic idea is this:
- There's a main repository of fonts that are free (as in free to distribute) that the working group hosts
- There's a small program that serves as the "manager", to be used or installed on client systems
- The "manager" can be configured to operate with multiple repositories