User Controls
Posts That Were Thanked by apt
-
2021-11-05 at 2:32 AM UTC in I tried to register on facebookI haven't used FB 4 months, good fucking riddance
-
2021-11-04 at 11:04 PM UTC in Who would you rather be alive ?I will literally never think of Austin Texas without thinking of Bill Krozby, even before Bill Hivks and Alex Jones and Danial Johnston.
-
2021-11-04 at 10:56 PM UTC in What I have been up toDid mom finally pay the internet bill again?
-
2021-11-04 at 8:48 PM UTC in the games motherfuckas play in the cell"Almost fought"
"Almost fought"
"Almost fought"
Almost doesn't mean anything mang -
2018-10-09 at 6:47 PM UTC in New Linux Kernel Root Access Exploit (Mutagen Astronomy)
Originally posted by PrettyHateMachine The jedis are trying to sabotage Linux
First they were going to pay someone for finding a backdoor exploit into Linux, then they get Linus to leave and have a tranny to ruin the ecosystem for developers.
It's obvious who is behind this.
The jedis are moving towards a future completely saturated by the net and a kernel and operating system not controlled by them is their number one threat.
Not to mention Microsoft is moving towards an always online operating system as a subscription style setup.
We must fight this war and help Linux by any means, even if it means actual bloodshed.
Holy fuck you're retarded.
-
2018-10-07 at 10:08 PM UTC in Are we for abortion here?yeah up until the 100th trimester
-
2018-09-28 at 2:51 AM UTC in PGP sign posts on linux
#!/usr/bin/env zsh
PLAIN_TEMP=$(mktemp)
CIPHR_TEMP=$(mktemp)
EDITOR=/usr/local/Cellar/macvim/8.0-143/MacVim.app/Contents/bin/../MacOS/Vim
declare -a EDITOR_ARGS=("-f" "-c" ":call English()")
function usage {
notify "Usage: $0 [--visual] file\nStarts editing of a file. Signs contents of the file in place after editor exits."
exit 1
}
function notify {
if [ $VISUAL_MODE -ne 0 ]; then
osascript -e "tell app \"System Events\" to display alert \"$1\" with title \"Error\" as critical"
else
>&2 echo $1
fi
}
function prompt {
if [ 4 -gt "$#" ]; then
title="Prompt"
yes="Yes"
no="No"
else
title=$2
yes=$3
no=$4
fi
if [ $VISUAL_MODE -ne 0 ]; then
set -x
ascript="tell app \"System Events\" to display dialog \"$1\" with title \"$title\" buttons{\"$yes\", \"$no\"} default button 1 cancel button 2"
echo $ascript
osascript -e $ascript #&> /dev/null
response=$?
return $(( response ^ 1 ))
else
echo -n "$1 [Y/n]"
read answer
if [ "$answer" != "${answer#[Nn]}" ] ;then
return 0
else
return 1
fi
fi
}
# Transform long options to short ones
for arg in "$@"; do
shift
case "$arg" in
"--visual") set -- "$@" "-v" ;;
"--prompt") set -- "$@" "-p" ;;
*) set -- "$@" "$arg"
esac
done
# Default behavior
VISUAL_MODE=0
PROMPT_SIGN=0
# Parse short options
OPTIND=1
while getopts "hvp" opt
do
case "$opt" in
"h") usage; exit 0 ;;
"v") VISUAL_MODE=1 ;;
"p") PROMPT_SIGN=1 ;;
"?") print_usage >&2; exit 1 ;;
esac
done
shift $(expr $OPTIND - 1)
if [ -z "$1" ]; then
notify "Missing file argument.\n"
usage
exit 1
fi
TARGET=$1
if [ $VISUAL_MODE -ne 0 ]; then
EDITOR_ARGS+=('-g')
export PINENTRY_USER_DATA=""
else
# Force pinentry over terminal
export PINENTRY_USER_DATA="USE_CURSES=1"
fi
$EDITOR $EDITOR_ARGS $TARGET
editor_rc=$?
if [ $editor_rc -ne 0 ]; then
notify "Editor exited with status code: $editor_rc"
exit 2
fi
cp $TARGET $PLAIN_TEMP
cp_rc=$?
if [ $cp_rc -ne 0 ]; then
notify "Failed to copy edited file to: $PLAIN_TEMP"
exit 3
fi
should_sign=1
if [ $PROMPT_SIGN -ne 0 ]; then
prompt "Should I sign you message? Refusing saves edits but does not sign." "Sign" "Sign" "Don't Sign"
should_sign=$?
fi
if [ $should_sign -ne 0 ]; then
gpg --clear-sign -u Lanny --batch --yes --output $CIPHR_TEMP $PLAIN_TEMP
gpg_rc=$?
if [ $gpg_rc -ne 0 ]; then
notify "Signing failed. A temporary plaintext file is stored at: $PLAIN_TEMP"
exit 4
fi
mv $CIPHR_TEMP $TARGET
else
mv $PLAIN_TEMP $TARGET
fi
exit 0
-
2018-09-27 at 5:38 AM UTC in The internet is over
Dennis Ritchie died for your sins, but he's not the forgiving merciful god type. Best start groveling normie shits, the day of the null terminated string is fast approaching.
- DontTellEm,
- aldra,
- apt,
- RisiR †,
- Nil
-
2018-09-26 at 10:20 PM UTC in The internet is overYeah its pretty fucked.
I think back on all the various sites I used to check regularly after school and be a part of and they are all gone, or turned corporate shill. Like if we logged in here one day and lanny had all those facebook, twitter, instagram, google + icons at the top and a generic layout with flashy moving shit.
I stopped coming here for years because when NiS first started getting users from like, the 4th or 5th zoklet fallout shelter, it was such a slow trickle of users and posts, it felt like the community had finally fragmented for the last time, never to return.
I can't believe to see some of the original posters here.
I feel like 80% of good feels come from just generic speaking of the old nostalgia we all loved and remembered.
Again, just the forum look and layout and still seeing the age old -Spectral bullshit kinda gives me a warm feeling inside. -
2018-09-26 at 8:17 PM UTC in The internet is overHonestly it's kind of a new phenomenon, in the grand scheme of things.
The idea that it will become just a big market place and a new avenue for entrenched power to spread propaganda as well as clamp down on/track dissent shouldn't be surprising. -
2018-09-26 at 6:04 PM UTC in The internet is overThe internet was built by outliers it's not even debatable. The "normal" users of it made it more accessible but corrupted it's primary purpose of information sharing and turned it into data farming.
-
2018-09-26 at 4:46 PM UTC in Do you suck at regex?
You're right that you can't match a regular expression against a dictionary, only strings, but what you probably want to do is iterate over the keys of the JSON where you know this address might exist and match each of those values. E.g. if you JSON looks like:
{
"items": [
{
"addr": "Opts:map[Addr:0.tcp.domain.com:15273]",
"foo": 42
},
...
]
}
Then you would want to do something like:
ports = []
for item in loaded_json['items']:
match = re.match(r'(?:tcp://)?0\.tcp\.domain\.com:(\d+)', item['addr'])
if match:
ports.append(match.groups(1))
The regular expression there assumes the domain will always be "0.tcp.domain.com", and the protocol will either be "tcp" or omitted. If that's not a reasonable assumption it can be generalized.
-
2018-09-26 at 10:03 AM UTC in Black women belong to white men
-
2018-09-25 at 10:38 AM UTC in Where has this been my whole life
- aldra,
- stare rape,
- apt,
- HTS
-
2018-09-25 at 5:15 AM UTC in Olsen twinsOh wow, I didn't expect that. Totse2k just entered the room when Mary Kate held the double dildo in her hand and humiliated Ashley while she licked it clean. He rambled some dumb shit about Jeff Hunter right before he was smacked in his fuckface by the dildo. It broke his nose and he fell to his knees, holding his hands over his face. Ashley gets up and they now stand over him. "Fucking nigger" bam! Mary Kate kicks him in the head. He's cowering in the fetal position and the twins break out in laughter. Another kick to his ribs. "You like spying on us, huh? Dirty old man". Ashley pulls his pants down and spreads his buttcheeks. Totse is crying. "I hope your crusty old boipussy is lubed up or this is gonna hurt". She rams the dildo in his asshole and forces almost the entire thing in his anus.
Wow, I could write an entire book about Hasbarat getting abused by the teen twins. -
2018-09-25 at 3:54 AM UTC in Olsen twinsI wonder if they ever masturbated together when they were kids. In my mind they did. They did it a lot and experimented lots of stuff while they explored their bodies. They developed many depraved fetishes and made them a reality together. Oh my God those two are fucked up. They literally do everything I want them to do in my mind. This is awesome. You should try it.
-
2018-09-24 at 11:19 PM UTC in Destroying Evidence = ReliefDoesn't it feel good to create cold cases?
Just knowing that some busy detective is not going to be able to collect that and his/her case will unlikely have a conviction.
All while playing with precious metals and memories... -
2018-09-24 at 9:17 PM UTC in L A N N Y when you begin to have a viable social website, call me
Originally posted by cupocheer I wasnt looking for a meet & greet to do car repair.
How about a lite meal and a drink?
Is this the kind of "social banter" you're looking for in a website?
You are clearly in the wrong place, what you need to do is find the nearest body of water and drown yourself in it. You should walk in wearing a wedding dress so you can be a dramatic attention whore while you're doing it. Cut your arms off with a chainsaw beforehand so you don't accidentally survive.
You are shit and your presence makes this place more pathetic -
2018-09-24 at 8:27 PM UTC in IQ estimates for NiS membersYou also confused IQ with BMI.
-
2018-09-24 at 3:54 PM UTC in L A N N Y when you begin to have a viable social website, call mePretty sure nobody here wants this to be a "viable social website"