This is a note for building the anbox Android image on my Arch Linux laptop.
This closely follows the official guide.
This is a note for building the anbox Android image on my Arch Linux laptop.
This closely follows the official guide.
| ### 橙光相关 ### | |
| Font | |
| Data/* | |
| Library | |
| Backup | |
| Backold | |
| !Data/Story.data | |
| !Data/StoryNew.data |
| bayoo-docx==0.2.0 |
| #!/bin/sh | |
| if [ -z ${1+x} ]; then echo "URL must be specified!" && exit -1; fi | |
| URL=$1 | |
| ARGS="${@:2}" | |
| PARENT=$(dirname $URL)/ | |
| PARENT_ESCAPED="${PARENT//\//\\\/}" |
| SELECT timestamp, subject_id, activity_id, | |
| chest_acc_x, chest_acc_y, chest_acc_z, | |
| left_ankle_acc_x, left_ankle_acc_y, left_ankle_acc_z, | |
| left_ankle_gyro_x, left_ankle_gyro_y, left_ankle_gyro_z, | |
| left_ankle_magn_x, left_ankle_magn_y, left_ankle_magn_z, | |
| right_lower_arm_acc_x, right_lower_arm_acc_y, right_lower_arm_acc_z, | |
| right_lower_arm_gyro_x, right_lower_arm_gyro_y, right_lower_arm_gyro_z, | |
| right_lower_arm_magn_x, right_lower_arm_magn_y, right_lower_arm_magn_z | |
| FROM uci_mhealth__samples, | |
| (SELECT sample_id as sid_1, acc_x as chest_acc_x, acc_y as chest_acc_y, acc_z as chest_acc_z FROM uci_mhealth__sensor_readings WHERE location = 1), |
| <html lang="en" class=""> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="robots" content="noindex"> | |
| <link rel="stylesheet" href="https://cdn.plyr.io/3.4.6/plyr.css"> | |
| <style class="cp-pen-styles">/* This is purely for the demo */ | |
| .container { | |
| max-width: 800px; | |
| margin: 0 auto; |
| _collect_union(t::Type,set) = push!(set,t) | |
| _collect_union(t::Union,set) = _collect_union(t.b, push!(set,t.a)) | |
| collect_union(t) = _collect_union(t,Set{Type}()) | |
| _unpack_abstract(::Type{T}) where {T} = isabstracttype(T) ? Union{map(_unpack_abstract,subtypes(T))...} : T | |
| # query Base.parent methods to find potential wrapper types | |
| const supported_wrappers = collect_union( | |
| Union{map(_unpack_abstract,filter(t->t!=AbstractArray,map(m->m.sig.parameters[2], methods(Base.parent))))...} |
| using SimpleTraits | |
| abstract type MyInterface{T} end # like AbstractArray | |
| abstract type MyGPUStruct{T} <: MyInterface{T} end # like GPUArray | |
| struct MyStruct{T} <: MyGPUStruct{T} # like CuArray | |
| name::String | |
| x::T | |
| end |