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
<?xml version="1.0" encoding="utf-8" ?> | |
<Modules> | |
<Module AssemblyName='Clifton.SemanticProcessorService.dll'/> | |
<!--<Module AssemblyName='Clifton.DockingFormService.dll'/>--> | |
<!--<Module AssemblyName='Clifton.WinForm.ServiceInterfaces.dll'/>--> | |
<Module AssemblyName='FlowSharpService.dll'/> | |
<Module AssemblyName='FlowSharpCanvasService.dll'/> | |
<Module AssemblyName='FlowSharpToolboxService.dll'/> | |
<Module AssemblyName='FlowSharpMouseControllerService.dll'/> |
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 python | |
import socket | |
import time | |
def GetCmd(hexString): | |
hexString = hexString.replace(" ", ""); | |
if ((len(hexString) % 2) != 0): | |
hexString += " "; |
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
<body> | |
<form id="form1" runat="server"> | |
<div id="headerPanel" class="headerPanel"> | |
<div class="tools_bar">控件 | |
<!-- button 控件 菜单编号为12 --> | |
<uc:PermitButton runat="server" ID="btn_PermitBtns" PermissionID="12" /> | |
</div> | |
<div class="btnbarcontetn" style="margin-top: 1px; background: #fff"> |
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
Jun 5 02:24:31 localhost opendirectoryd[101]: opendirectoryd (build 339.1.4) launched - installer mode | |
Jun 5 02:24:32 localhost opendirectoryd[101]: Logging level limit changed to 'notice' | |
Jun 5 02:24:32 localhost opendirectoryd[101]: Safe Boot is enabled | |
Jun 5 02:24:32 localhost opendirectoryd[101]: Initialize trigger support | |
Jun 5 02:24:32 localhost opendirectoryd[101]: created endpoint for mach service 'com.apple.private.opendirectoryd.rpc' | |
Jun 5 02:24:32 localhost opendirectoryd[101]: set default handler for RPC 'reset_cache' | |
Jun 5 02:24:32 localhost opendirectoryd[101]: set default handler for RPC 'reset_statistics' | |
Jun 5 02:24:32 localhost opendirectoryd[101]: set default handler for RPC 'show' | |
Jun 5 02:24:32 localhost opendirectoryd[101]: starting endpoint for service 'com.apple.private.opendirectoryd.rpc' | |
Jun 5 02:24:33 localhost opendirectoryd[101]: no dynamic data found at '/System/Library/OpenDirectory/DynamicData/Configure.plist' |
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 | |
#!/bin/python | |
import os | |
import sys | |
import json | |
import base64 | |
import binascii | |
import codecs | |
from Crypto.Cipher import AES |
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
SRCS+= adb.c | |
SRCS+= adb_client.c | |
SRCS+= commandline.c | |
SRCS+= console.c | |
SRCS+= file_sync_client.c | |
SRCS+= fdevent.c | |
SRCS+= get_my_path_linux.c | |
SRCS+= services.c | |
SRCS+= sockets.c | |
SRCS+= transport.c |