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
;;; myelisp-prefix-helper.el --- A hack for namespace insertion -*- lexical-binding: t; coding: utf-8; lisp-indent-offset: nil; -*- | |
;; Copyright (C) 2018 Klaus-Dieter Bauer | |
;; Author: Klaus-Dieter Bauer <[email protected]> | |
;; Keywords: lisp, tools, convenience | |
;; 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 |
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
#!/usr/bin/env bash | |
# -*- coding: iso-safe-unix -*- | |
set -e -E -u | |
#### SETTINGS | |
SPOTLIGHT_PATH="$(cygpath $LOCALAPPDATA)/Packages/Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy/LocalState/Assets" | |
OUTPUT_PATH='/tmp/SPOTLIGHT_DISPLAY' | |
#### 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
<html> | |
<head><title>Hello world.</title></head> | |
<body><h1>Bye world.</h1></body> | |
</html> | |
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
! writerec.f90 | |
program main | |
implicit none | |
print '(*(1x,G0))', 'x', getX(), 'x', getX() | |
contains | |
integer function getX() | |
getX = 1 | |
print *, '(inside getX)' | |
end function getX |
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
javascript: body.document.requestFullscreen(); undefined | |
// Bookmarklet, that allows triggering fullscreen mode in mobile browser/website combinations, | |
// that don't give the option explicitly. Useful when using webapps on mobile, | |
// e.g. Teams, lesen.amazon.de (read.amazon.com), ... | |
// | |
// Useless on desktop browsers, where the F11 key usually triggers full-screen. | |
// | |
// Does not work on iOS, because the iOS javascript engines do not implement any fullscreen API. | |
// Instead, a more limited |
OlderNewer