This file contains 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 fish | |
# - https://gist.github.com/schleumer/3d7acf1bad48ef7a98945aafde90344d | |
function remove-docker-containers | |
echo "Stop running shit" | |
docker stop (docker ps -q) | |
echo "Remove the whale shit" | |
docker rm (docker ps -a -q) | |
end |
This file contains 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 | |
echo('<?xml version="1.0" encoding="ISO-8859-15"?>' . "\n"); | |
echo('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'); | |
?> | |
<html> | |
<head> | |
<title>Server status</title> | |
<meta http-equiv="Refresh" content="60"/> | |
<style type="text/css"> | |
body { |
This file contains 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
GNU DDD 3.3.12 (i686-pc-linux-gnu), by Dorothea Lütkehaus and Andreas Zeller. | |
Copyright © 1995-1999 Technische Universität Braunschweig, Germany. | |
Copyright © 1999-2001 Universität Passau, Germany. | |
Copyright © 2001 Universität des Saarlandes, Germany. | |
Copyright © 2001-2004 Free Software Foundation, Inc. | |
Reading symbols from /home/koom/manaplus2/src/manaplus...done. | |
(gdb) run | |
Starting program: /home/koom/manaplus2/src/manaplus | |
[Thread debugging using libthread_db enabled] | |
Using host libthread_db library "/lib/i386-linux-gnu/libthread_db.so.1". |
This file contains 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/python | |
#-*- coding: utf-8 -*- | |
import os, sys |