| IPs | Country |
|---|---|
| 81 | United Arab Emirates |
| 2 | Afghanistan |
| 4 | Albania |
| 2 | Armenia |
| 1 | Angola |
| 42 | Argentina |
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
| # -*- coding: utf-8 -*- | |
| """Directory Services helper class.""" | |
| from __future__ import unicode_literals | |
| from __future__ import print_function | |
| from __future__ import division | |
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 | |
| cat <<__MARKDOWN__ | | |
| # Title ÅÄÖ | |
| * list | |
| __MARKDOWN__ | |
| /usr/bin/python <( cat <<__EOF__ | |
| #!/usr/bin/python |
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 | |
| set -o errexit | |
| PKG_NAME="FWUpdate" | |
| PKG_ID="se.gu.it.FWUpdateStandalone.pkg" | |
| datestamp=$( date "+%Y%m%d" ) | |
| PKG_VERSION="1.0.$datestamp" |
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/python | |
| # -*- coding: utf-8 -*- | |
| from __future__ import unicode_literals | |
| from __future__ import print_function | |
| from __future__ import division | |
| import io | |
| import sys | |
| import codecs |
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 | |
| # | |
| # Restore the machine's saved .MASManifest. | |
| echo "===== restore_masmanifest =====" | |
| VARDBPATH="{{target_volume}}/private/var/db" |
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/python | |
| # -*- coding: utf-8 -*- | |
| from __future__ import unicode_literals | |
| from __future__ import print_function | |
| from __future__ import division | |
| import sys |
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <sys/sysctl.h> | |
| #include <sys/types.h> | |
| #include <time.h> | |
| int main(int argc, char *argv[]) { | |
| pid_t pid = atoi(argv[1]); | |
| int mib[4] = { CTL_KERN, KERN_PROC, KERN_PROC_PID, pid }; |
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
| -> emulate parts of a c64 | |
| OPT PREPROCESS | |
| /* #define DEBUG */ | |
| MODULE 'tools/file', 'intuition/screens', 'graphics/gfx', 'dos/dos' | |
| MODULE 'intuition/intuition' | |
| -> the different memory parts |
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/python | |
| # -*- coding: utf-8 -*- | |
| import sys | |
| import base64 | |
| userids = dict() | |
| with open(sys.argv[1]) as f: |