See also: SchemaCrawler Database Diagramming.
-
Downlod the latest release of SchemaCrawler, for example v14.16.01 was tested to work.
-
Ensure Java is in place.
-
Run:
See also: SchemaCrawler Database Diagramming.
Downlod the latest release of SchemaCrawler, for example v14.16.01 was tested to work.
Ensure Java is in place.
Run:
#include "color.h" | |
#include "utilities.h" | |
#include <math.h> | |
/* | |
* Algorithm adapted from https://gist.github.com/hdznrrd/656996. Uses a little libmath. | |
* */ | |
void color_HSV2RGB(struct color_ColorHSV const *hsv, struct color_ColorRGB *rgb) { | |
int i; |
FFMPEG '-i', file, '-c:v', 'libopenjpeg', "jpeg2000\\" + name + ".jp2"\ | |
Convert image to jpeg2000 | |
ffmpeg -i in.png -c:v libopenjpeg out.jp2 | |
Hex Edit out.jp2 | |
ffmpeg -i in.jp2 -c:v png out.png | |
General Edit | |
ffmpeg -i input.avi -c:v mpeg2video -g 999 -q:v 1 output.avi | |
*edit in avidemux/whatever* |
CARGO = cargo | |
all: build doc | |
build: | |
@$(CARGO) build | |
doc: | |
@$(CARGO) doc |
/*<?php | |
//*/public class PhpJava { public static void main(String[] args) { System.out.printf("/*%s", | |
//\u000A\u002F\u002A | |
class PhpJava { | |
static function main() { | |
echo(//\u000A\u002A\u002F | |
"Hello World!"); | |
}} | |
//\u000A\u002F\u002A | |
PhpJava::main(); |
# -*- coding: utf-8 -*- | |
# | |
# Copyright (C) 2016 Jasper v. Blanckenburg <[email protected]> | |
# | |
# This program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation; either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, |
var MARGIN = 28; | |
// Fullscreen | |
slate.bind('f:cmd,alt', function(win) { | |
// ±4 to account for hidden Dock on left of screen. | |
win.doOperation(S.op('move', { | |
'x': 'screenOriginX - 4 + ' + MARGIN, | |
'y': 'screenOriginY + ' + MARGIN, |