Command | Format | Description |
---|---|---|
^A | ^Afo,h,w,d:f.x | Use Scalable/Bitmapped Font |
^A@ | ^A@o,h,w,d:f.x | Use Font Name to Call Font |
^B0 | ^B0a,b,c,d,e,f,g | Aztec Bar Code Parameters |
^B1 | ^B1o,e,h,f,g | Code 11 Bar Code |
^B2 | ^B2o,h,f,g,e,j | Interleaved 2 of 5 Bar Code |
^B3 | ^B3o,e,h,f,g | Code 39 Bar Code |
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
/* | |
This is free and unencumbered software released into the public domain. | |
Anyone is free to copy, modify, publish, use, compile, sell, or | |
distribute this software, either in source code form or as a compiled | |
binary, for any purpose, commercial or non-commercial, and by any | |
means. | |
In jurisdictions that recognize copyright laws, the author or authors | |
of this software dedicate any and all copyright interest in the |
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
import com.google.protobuf.gradle.id | |
import de.undercouch.gradle.tasks.download.Download | |
import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform | |
plugins { | |
id("java") | |
id("idea") | |
id("net.linguica.maven-settings") version "0.5" | |
`maven-publish` | |
id("com.google.protobuf") version "0.9.3" |
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/bash | |
clang hello.c -target arm64-apple-darwin20.1.0 -o hello.arm64 | |
echo -n "hello.arm64 is architecture " && lipo -archs ./hello.arm64 | |
clang hello.c -target x86_64-apple-darwin-macho -o hello.x86_64 | |
echo -n "hello.x86_64 is architecture " && lipo -archs ./hello.x86_64 | |
lipo hello.arm64 hello.x86_64 -create -output hello | |
echo -n "final output binary has archs " && lipo -archs ./hello |
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
import * as util from 'util' | |
const setTimeoutPromise = util.promisify(setTimeout); | |
const TIMEOUT_MILLI_SECONDS = 10000; | |
export interface MyContext extends SceneContextMessageUpdate { | |
session: any, | |
} | |
const localSession = new LocalSession({ | |
database: 'example_db.json', |
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
--patch-module test=fastparse_2.12-1.0.0.jar | |
--patch-module test2=fastparse-utils_2.12-1.0.0.jar | |
--patch-module test3=sourcecode_2.12-0.1.4.jar | |
--add-exports javafx.controls/com.sun.javafx.scene.control=org.jabref | |
--add-exports org.controlsfx.controls/impl.org.controlsfx.skin=org.jabref | |
--add-exports javafx.graphics/com.sun.javafx.scene=org.controlsfx.controls | |
--add-exports javafx.graphics/com.sun.javafx.scene.traversal=org.controlsfx.controls | |
--add-exports javafx.graphics/com.sun.javafx.css=org.controlsfx.controls | |
--add-exports javafx.controls/com.sun.javafx.scene.control.behavior=org.controlsfx.controls | |
--add-exports javafx.controls/com.sun.javafx.scene.control=org.controlsfx.controls |
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
/** | |
* | |
* Icon Enum based on Material Design Icons v1.7.22 | |
* https://materialdesignicons.com | |
* | |
* @author Jens Deters ([email protected]) | |
*/ | |
public enum MaterialDesignIcon{ |
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
--patch-module test=fastparse_2.12-1.0.0.jar | |
--patch-module test2=fastparse-utils_2.12-1.0.0.jar | |
--patch-module test3=sourcecode_2.12-0.1.4.jar | |
--add-exports javafx.controls/com.sun.javafx.scene.control=org.jabref | |
--add-exports org.controlsfx.controls/impl.org.controlsfx.skin=org.jabref | |
--add-exports javafx.graphics/com.sun.javafx.scene=org.controlsfx.controls | |
--add-exports javafx.graphics/com.sun.javafx.scene.traversal=org.controlsfx.controls | |
--add-exports javafx.graphics/com.sun.javafx.css=org.controlsfx.controls | |
--add-exports javafx.controls/com.sun.javafx.scene.control.behavior=org.controlsfx.controls | |
--add-exports javafx.controls/com.sun.javafx.scene.control=org.controlsfx.controls |
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
import 'ol/ol.css'; | |
import Map from 'ol/map'; | |
import View from 'ol/view'; | |
import TileLayer from 'ol/layer/tile'; | |
import OSM from 'ol/source/osm'; | |
import Proj from 'ol/proj'; | |
import Projection from 'ol/proj/projection'; | |
import Coordinate from 'ol/coordinate'; | |
import ImageStatic from 'ol/source/imagestatic'; | |
import Image from 'ol/layer/image'; |
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
import 'ol/ol.css'; | |
import Map from 'ol/map'; | |
import View from 'ol/view'; | |
import TileLayer from 'ol/layer/tile'; | |
import OSM from 'ol/source/osm'; | |
import Proj from 'ol/proj'; | |
import Projection from 'ol/proj/projection'; | |
import Coordinate from 'ol/coordinate'; | |
import ImageStatic from 'ol/source/imagestatic'; | |
import Image from 'ol/layer/image'; |
NewerOlder