自分なりにUIフレームワーク決めのロジックをまとめたのでメモ書き。 UIフレームワークの大別とそのメリデメをまとめた上で、自分なりの決めのロジックを整理した。
CSSとJavaScriptによって作られたUIコンポーネントを提供する。
Vuetify
| # Before you start: register at Rosetta website (http://boinc.bakerlab.org/rosetta/join.php) and remember your registration email and password | |
| sudo -i | |
| # install dependencies: | |
| apt -qqy update && apt install -y --auto-remove libsm6 libxext6 libnotify-bin libcurl3 && apt -qqy clean | |
| # Install BOINC: | |
| cd /opt | |
| wget -q https://boinc.berkeley.edu/dl/boinc_7.4.22_x86_64-pc-linux-gnu.sh -O boinc.sh |
| policy_module(mastodon 1.1.2) | |
| require { | |
| attribute file_type; | |
| attribute httpdcontent; | |
| attribute port_type; | |
| class dir {read search write}; | |
| class netlink_route_socket {bind create getattr nlmsg_read read write}; | |
| class process execmem; |
| 各パッチの簡単な説明を記載しておきます。 | |
| ---------------------------------------------------------------------------------------------------- | |
| ■ ffmpeg-4.2.2-libavcodec-av-picture-structure.diff | |
| ---------------------------------------------------------------------------------------------------- | |
| [パッチ対象] | |
| -> libavcodec/mpegvideo_parser.c |
| #include <stdio.h> | |
| #include <float.h> | |
| #include <stdint.h> | |
| #include <inttypes.h> | |
| int64_t d2i(double x) | |
| { | |
| union { | |
| int64_t i; | |
| double d; |
| #!/usr/bin/expect -f | |
| set prompt "#" | |
| set address [lindex $argv 0] | |
| spawn sudo bluetoothctl -a | |
| expect -re $prompt | |
| send "remove $address\r" | |
| sleep 1 | |
| expect -re $prompt |
| import sys | |
| import subprocess | |
| import csv | |
| def describe_ucrt_lib(platform): | |
| lib_path = "windows-10-sdk/Lib/10.0.10240.0/ucrt/{}/ucrt.lib".format(platform) | |
| output = subprocess.check_output(["nm", lib_path]) | |
| output = output.decode("utf-8") | |
| # Output (x86 32-bit) looks like: |
| # Xcode 4.3.3 | |
| Apple clang version 3.1 (tags/Apple/clang-318.0.61) (based on LLVM 3.1svn) | |
| Target: x86_64-apple-darwin11.4.0 | |
| Thread model: posix | |
| # Xcode 4.3.2 | |
| Apple clang version 3.1 (tags/Apple/clang-318.0.58) (based on LLVM 3.1svn) | |
| Target: x86_64-apple-darwin11.4.0 | |
| Thread model: posix |
| #!/bin/sh -e | |
| #git-cache-meta -- simple file meta data caching and applying. | |
| #Simpler than etckeeper, metastore, setgitperms, etc. | |
| #from http://www.kerneltrap.org/mailarchive/git/2009/1/9/4654694 | |
| #modified by n1k | |
| # - save all files metadata not only from other users | |
| # - save numeric uid and gid | |
| # 2012-03-05 - added filetime, andris9 |