Created
December 11, 2024 03:49
-
-
Save LevitatingBusinessMan/927f9222cda70569b5c5b1f7f2b4c35c to your computer and use it in GitHub Desktop.
Revisions
-
LevitatingBusinessMan revised this gist
Dec 11, 2024 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,6 @@ require "cgi" require "slim" $cgi = CGI.new $cgi.out("text/html") do Slim::Template.new { ARGF.read }.render end -
LevitatingBusinessMan created this gist
Dec 11, 2024 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ #!/usr/bin/env ruby require "cgi" require "slim" $cgi = CGI.new p ARGF $cgi.out("text/html") do Slim::Template.new { ARGF.read }.render end