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
#!/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: |
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
diff -rub Security Update 2015-005 Yosemite.pkg/Distribution Security Update 2015-006 Yosemite.pkg/Distribution | |
--- Security Update 2015-005 Yosemite.pkg/Distribution 2015-11-13 00:32:26.000000000 +0100 | |
+++ Security Update 2015-006 Yosemite.pkg/Distribution 2015-12-12 02:30:09.000000000 +0100 | |
@@ -42,7 +42,7 @@ | |
my.result.type = 'Fatal'; | |
return false; | |
} | |
- if (compareBuildVersions(my.target.systemVersion.ProductBuildVersion, '14F1505') > 0) { | |
+ if (compareBuildVersions(my.target.systemVersion.ProductBuildVersion, '14F1509') > 0) { | |
my.result.message = system.localizedString('ERROR_4'); |