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/sh | |
# lame source | |
# https://github.com/luciuskwok/lame-3.100-macos | |
# build.sh source | |
# https://github.com/kewlbear/lame-ios-build | |
# ./build.sh arm64 x86_64 | |
# ./build.sh lipo |
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
func derivedPath(_ path: String) -> String? { | |
guard let url = URL(string: path) else { return nil } | |
let fileName = url.deletingPathExtension().lastPathComponent | |
guard let data = path.data(using: .utf8) else { return nil } | |
let digest: Insecure.MD5.Digest = Insecure.MD5.hash(data: data) | |
let digestBytes: [UInt8] = digest.withUnsafeBytes { (pointer: UnsafeRawBufferPointer) in | |
return Array(pointer) | |
} |
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
// | |
// SignPost.swift | |
// | |
// Created by Yume on 2018/12/5. | |
// Copyright © 2018 Yume. All rights reserved. | |
// | |
import Foundation | |
import os.signpost |
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
import Foundation | |
public class MessageQueue { | |
public typealias Message = Void -> Void | |
private var exitFlag = false | |
private var messageQueue:[Message] = [] | |
private var loopInterval:Double |
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
package com.yume190.tw.test; | |
import android.os.Environment; | |
import com.loopj.android.http.AsyncHttpResponseHandler; | |
import com.loopj.android.http.FileAsyncHttpResponseHandler; | |
import com.loopj.android.http.SyncHttpClient; | |
import com.maxwin.busstop.advance.YumeFile; | |
import junit.framework.TestCase; |
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
package com.yume190.tw.test; | |
import android.os.Handler; | |
import android.os.Message; | |
import junit.framework.TestCase; | |
import org.junit.After; | |
import org.junit.Before; | |
import org.junit.Test; |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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 facebook | |
# 引入 MySQL 模組 | |
import MySQLdb | |
# 連接到 MySQL | |
db = MySQLdb.connect(host="x.x.x.x", user="yume", passwd="xxxx", db="xData",charset="utf8",use_unicode = True) |
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
class func receivePacketAskDevice(data:NSData) -> devicePacketReceiver<devicePacketAskDeviceID>{ | |
return receivePacket(data, type: devicePacketAskDeviceID()) | |
} | |
class func receivePacketSetting(data:NSData) -> devicePacketReceiver<devicePacketSetting>{ | |
return receivePacket(data, type: devicePacketSetting()) | |
} | |
class func receivePacketRadios(data:NSData) -> devicePacketReceiver<devicePacketRadios>{ | |
return receivePacket(data, type: devicePacketRadios()) |
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
// | |
// MCUPacketDevice.swift | |
// APSMSwift | |
// | |
// Created by APP559 on 2014/7/30. | |
// Copyright (c) 2014年 yume. All rights reserved. | |
// | |
import UIKit |
NewerOlder