- Press CTRL-H ( ⌥⌘F on Mac ).
- Press ALT-R ( ⌥⌘R on Mac ).
- Type
_([a-zA-Z])
. - Press TAB and type
$1
. - Press ALT-ENTER ( ⌥ENTER on Mac ).
- Press F1 and type
upper
, then press ENTER. - Press CTRL-ALT-ENTER ( ⌥ENTER on Mac ).
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 | |
# ensure freetype is updated, important to avoid error: | |
# undefined symbol: FT_Get_Var_Blend_Coordinates | |
sudo add-apt-repository ppa:glasen/freetype2 | |
sudo apt update && sudo apt install freetype2-demos | |
# kitty installer script from https://sw.kovidgoyal.net/kitty/binary.html#manually-installing | |
curl -L https://sw.kovidgoyal.net/kitty/installer.sh | sh /dev/stdin |
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
# code | |
face global value rgb:ffffff,default | |
face global type rgb:dedede,default | |
face global identifier rgb:dedede,default | |
face global string rgb:aaccaa,default | |
face global error default,rgb:ffffff | |
face global keyword rgb:bbbbbb,default+b | |
face global operator rgb:dedede,default | |
face global attribute rgb:ccaaaa,default |
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 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
DECLARE SUB PrintSomeStars (StarCount!) | |
REM QuickBASIC example | |
INPUT "What is your name: ", UserName$ | |
PRINT "Hello "; UserName$ | |
DO | |
INPUT "How many stars do you want: ", NumStars | |
CALL PrintSomeStars(NumStars) | |
DO | |
INPUT "Do you want more stars? ", Answer$ | |
LOOP UNTIL Answer$ <> "" |
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
<?php | |
// the query | |
$the_query = new WP_Query( $args ); ?> | |
<?php if ( $the_query->have_posts() ) : ?> | |
<!-- pagination here --> | |
<!-- the loop --> |
West of House Score: 0 Moves: 1
ZORK I: The Great Underground Empire Copyright (c) 1981, 1982, 1983 Infocom, Inc. All rights reserved.
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
SSSSSSSSSSSSS | |
SSSSSSS...SSS...SSSSSSS | |
SSSS.........SSS.........SSSS | |
SSS............SSS............SSS | |
TTT..............TTT..............TTT | |
TTT................TTTT...............TTT | |
TTT....................TTTTT............TTT | |
TTT......................TTTTT............TTT | |
AA...................AAAAAA................AA | |
AAA...............AAAAA.....................AAA |
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
/* | |
Theme name: Instruments of Mercy | |
*/ | |
@import url('https://fonts.googleapis.com/css?family=Slabo+27px|Josefin+Slab'); | |
$color: burlywood; | |
$srotateY: 357; /* .gd-slides {$gd_slider_srotateY="357,0,360,1,deg"} */ | |
$srotateZ: 4; /* .gd-slides {$gd_slider_srotateZ="4,0,360,1,deg"} */ | |
$eqrotateY: 358; /* .gd-slides {$gd_slider_eqrotateY="358,0,360,1,deg"} */ |