Skip to content

Instantly share code, notes, and snippets.

@cloose
cloose / font-list.md
Last active January 17, 2020 09:10
Fonts made for developers
@cloose
cloose / oracle-idempotent-ddl.sql
Last active March 26, 2024 09:20
Idempotent Oracle SQL migrations
--
-- create new table
--
declare
table_exists number;
begin
select count(1) into table_exists from USER_TABLES where table_name = 'PRODUCTS';
if (table_exists = 0) then
execute immediate 'create table PRODUCTS (ID number(19) not null ...';
@cloose
cloose / CuteMarkEd-refactoring.md
Last active August 29, 2015 14:11
CuteMarkEd Refactoring

HtmlPreviewGenerator

MarkdownConverter

document = converter->createDocument(text, converterOptions());
QString htmlBody = converter->transformToHtml(document);

RenderRequest