Skip to content

Instantly share code, notes, and snippets.

View soapdog's full-sized avatar

Andre Alves Garzia soapdog

View GitHub Profile
@alex-hhh
alex-hhh / ishido.rkt
Created July 2, 2020 06:26
Ishido Game Impementation
#lang racket
;; Ishido Game Implementation
;; Copyright (c) 2020 Alex Harsányi (AlexHarsanyi@gmail.com)
;; Permission is hereby granted, free of charge, to any person obtaining a
;; copy of this software and associated documentation files (the "Software"),
;; to deal in the Software without restriction, including without limitation
;; the rights to use, copy, modify, merge, publish, distribute, sublicense,
;; and/or sell copies of the Software, and to permit persons to whom the
@alex-hhh
alex-hhh / md-view.rkt
Last active September 14, 2021 13:43
markdown view demo
#lang racket
;; Markdown Viewer
;; Copyright (c) 2020 Alex Harsányi (AlexHarsanyi@gmail.com)
;; Permission is hereby granted, free of charge, to any person obtaining a
;; copy of this software and associated documentation files (the "Software"),
;; to deal in the Software without restriction, including without limitation
;; the rights to use, copy, modify, merge, publish, distribute, sublicense,
;; and/or sell copies of the Software, and to permit persons to whom the
@9214
9214 / puppy.red
Last active March 30, 2024 21:23
Puny GUI Puppy Finder in Red.
Red [
Title: "Puny GUI Puppy Finder, Red version"
Author: @9214
Date: 26-Apr-2020
Link: https://ahungry.com/blog/2020-04-24-Puny-GUI-Puppy-Finder.html
]
view [
title "Puppy Finder"
below center
@raivivek
raivivek / Kobo Reader Highlights & Annotations
Created December 31, 2019 03:27 — forked from ozgurkalan/Kobo Reader Highlights & Annotations
Kobo eReader - KoboReader.sqlite - SQL statement for listing books, highlights and annotations per chapter
'''''list highlights and annotations by ISBN and book:
select
ISBN, title,
text, annotation
from bookmark
left outer join content
on (content.contentID=bookmark.VolumeID and content.ContentType=6)
where
text is not null;
@paulcuth
paulcuth / deploying-sailor-to-heroku.md
Created July 22, 2015 20:46
Deploying Sailor to Heroku

Deploying Sailor to Heroku

Getting set up

Heroku basics

You will need to create an Heroku account if you don't have one already. You'll also need to install the Heroku Toolbelt, which includes the Heroku CLI that we'll be using shortly.

Sailor basics

Follow the installation instructions for your platform in the Sailor docs, but essentially all you need is the sailor CLI.

@trevordevore
trevordevore / StyledText to XHTML Converter
Last active October 1, 2015 02:37
Convert LiveCode styledText array to/from XHTML
/**
* \brief Converts a styled text array to XHTML.
*
* \param pStyledTextA The array to convert.
*
* \return XHTML
*/
function ConvertStyledTextToXHTML pStyledTextA
local theXHTML, theRun, theString
local theListKey