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
'use strict' | |
const sprintf = require( 'sprintf-js' ).sprintf | |
const moment = require( 'moment' ) | |
const unicode_generalCategory = require( 'unicode-13.0.0/General_Category' ) | |
const charCategoryMultipliers = [ | |
0, // none | |
1, // latin letters |
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 <string> | |
#include <atlbase.h> | |
#include <imapi2fs.h> | |
void create_iso( std::wstring_view src, std::wstring_view iso_path ) | |
{ | |
HRESULT hr; | |
IFileSystemImage* fsimg; | |
IFsiDirectoryItem* fsdir; | |
IFileSystemImageResult* fsresult; |
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
# If not running interactively, don't do anything | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac | |
umask 022 | |
export LC_ALL=en_US.UTF-8 | |
# don't put duplicate lines or lines starting with space in the history. |
OlderNewer