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
var TRACE = false; | |
var net = require('net'); | |
var util = require('util'); | |
var pathModule = require('path'); | |
var fsModule = require('fs'); | |
var dateformat = require('dateformat'); | |
var EventEmitter = require('events') | |
var glob = require('./glob'); | |
var starttls = require('./starttls'); |
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
00000000 23 20 43 6f 70 79 72 69 67 68 74 20 28 43 29 20 |# Copyright (C) | | |
00000010 32 30 31 31 20 54 68 65 20 41 6e 64 72 6f 69 64 |2011 The Android| | |
00000020 20 4f 70 65 6e 20 53 6f 75 72 63 65 20 50 72 6f | Open Source Pro| | |
00000030 6a 65 63 74 0d 0a 23 0d 0a 23 20 4c 69 63 65 6e |ject..#..# Licen| | |
00000040 73 65 64 20 75 6e 64 65 72 20 74 68 65 20 41 70 |sed under the Ap| | |
00000050 61 63 68 65 20 4c 69 63 65 6e 73 65 2c 20 56 65 |ache License, Ve| | |
00000060 72 73 69 6f 6e 20 32 2e 30 20 28 74 68 65 20 22 |rsion 2.0 (the "| | |
00000070 4c 69 63 65 6e 73 65 22 29 3b 0d 0a 23 20 79 6f |License");..# yo| | |
00000080 75 20 6d 61 79 20 6e 6f 74 20 75 73 65 20 74 68 |u may not use th| | |
00000090 69 73 20 66 69 6c 65 20 65 78 63 65 70 74 20 69 |is file except i| |
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
<key>PciRoot(0x0)/Pci(0x2,0x0)</key> | |
<dict> | |
<key>AAPL,ig-platform-id</key> | |
<data> | |
CQCbPg== | |
</data> | |
<key>device-id</key> | |
<data> | |
mz4AAA== | |
</data> |
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
// compile this to hook.dll | |
// for example, with MSVC: cl.exe /LD /MT /O2 hook.c /Fehook.dll | |
#include <windows.h> | |
// get this from https://github.com/kubo/plthook | |
#include "plthook_win32.c" | |
static plthook_t* hook; |
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
# first in sh - brew install fileicon | |
# then input path to folder 2d assets or 3d assets | |
import os | |
from subprocess import call | |
def set_directory_preview(root_dir): | |
for subdir, dirs, files in os.walk(root_dir): | |
for file in files: | |
if file == 'Preview.png' or file == 'Preview1.png' or file == 'Sample.png': # Name of the preview file | |
preview_path = os.path.join(subdir, file) |