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
DEADBEEF | |
BADC0FFEE0DDF00D | |
DEAD10CC | |
0D15EA5E | |
FEEDFACE | |
ABADCAFE | |
BAAAAAAA | |
DEADFEED | |
DEFEC8ED | |
FEEDBACC |
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
#!/bin/bash -eu | |
profile=${1:?usage: eval \`awsenv <profile>\`} | |
xp() { echo export "$*"; } | |
found=false | |
while read key eq value; do | |
if ! $found; then | |
if [ "$key" = "[$profile]" ]; then | |
found=true | |
xp AWS_DEFAULT_PROFILE=$profile | |
fi |
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
/ diamond challenge in K7 | |
/ http://badcode.rocks/2019/060/diamond/ | |
/ usage: k diamond.k Z | |
ci:(*.z.x(1))-65 / get first arg as int (A=0) | |
diam:{ch:`c$x+65;ch,((0|x+x-1)#" "),(x>0)#ch} | |
{pad:(ci-x)#" ";pad,diam[x],pad}'(!ci+1),|!ci | |
\\ |
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
# SYSEXITS.SH -- Exit status codes for system programs. | |
# | |
# This include file attempts to categorize possible error | |
# exit statuses for system programs, notably delivermail | |
# and the Berkeley network. | |
# | |
# Error numbers begin at EX__BASE to reduce the possibility of | |
# clashing with other exit statuses that random programs may | |
# already return. The meaning of the codes is approximately | |
# as follows: |
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
/* | |
* if ... then | |
* ... | |
* elif ... then | |
* ... | |
* else | |
* ... | |
* end | |
*/ | |
#define if if( |
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
aramisauto.com | |
auto-ies.com | |
autojm.fr | |
autoplanet.fr | |
degrifcars.com | |
Elite-auto.fr | |
starterre.fr | |
sndiffusion.fr |
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
<B>UNATCO HANDBOOK</B> | |
<P> | |
<JC>Welcome to UNATCO! | |
<P> | |
<B>Angel/0A</B>. If you are not Angel/0A or above, report immediately to your supervisor or face disciplinary action. Other classifications will be explained upon reaching higher clearance. | |
<P> | |
<P>In its efforts to combat terrorism, the U.N. has created UNATCO for the swift deployment of a COORDINATED FORCE to counteract any insurgent operations. You are justifiably proud to be part of this organization: your physical capabilities place you within the upper one percent of national ground combat units, while your mental capabilities have been honed to sharpness by the UNATCO Academy. | |
<P> | |
<P>But as part of a larger organization, you also understand the necessity to HEED ORDERS from your superiors without hesitation; your superiors are typically briefed on matters for which you may not be cleared, and hesitation on the part of an agent can result in the serious IMPAIRMENT of mission objectives and attendant CASUALTIES. | |
<P> |
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 perl | |
# | |
# Retourne la date de dernière modifications d'un fichier | |
# sous forme de timestamp. | |
# | |
use strict; | |
use warnings; |
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
package WWW::Shorten::SCK; | |
# | |
# URL shortening provider for http://sck.pm | |
# | |
use strict; | |
use warnings; | |
sub new { bless {} } |
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
<lynx> btw, in *ksh you do this: find "$@" -print0 |& while read -pd ''; do … | |
<igli> ah does that keep the while in fg? | |
<lynx> yes | |
<igli> sweet | |
<lynx> it's actually two lines | |
<lynx> you newline after find "$@" -print0 |& | |
<lynx> it's conceptually like & | |
<lynx> except stdio of find is connected to fd 'p' | |
<lynx> you can even do things like exec 3>&p | |
<igli> ah ok |
NewerOlder