+ + 数据压缩算法 + +
+-
+
+ 存储压缩 +
++ 背景 +
++ 数据压缩存在于各种场景,视频传输(VR),视频压缩编码–>VR 球形数据的压缩,模型压缩(剪枝) +还存在于各种中间件中, +
++ 数据量增加,解决方式通过扩容,或者通过压缩数据,扩容的成本高于压缩, +
++ huffman +
++ 高频的字母使用短的信号来编码<... +
+diff --git a/Design2Code-HARD.zip b/Design2Code-HARD.zip new file mode 100644 index 0000000000000000000000000000000000000000..c9f3d16bd22be818f00fd051ee3fc09bf0406930 --- /dev/null +++ b/Design2Code-HARD.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dba13571895487b6e61d4677c558412e345ca5969156171b38e38829cd1a4ae +size 33118268 diff --git a/g0.html b/g0.html new file mode 100644 index 0000000000000000000000000000000000000000..a59dfde1903ac17f2c2c737b2de966129eb2a328 --- /dev/null +++ b/g0.html @@ -0,0 +1,991 @@ + + +
+ + + ++ With several layer-one protocols gaining meaningful traction over the last few years and layer-two protocols taking + + center stage in the scalability roadmap for Ethereum + + , it is increasingly becoming clear that the future will be multichain. This thesis is further reinforced by emerging patterns such as + + modular blockchains + + , + + application-specific chains + + , and + + fractal scaling + + . A multichain world is one in which disparate chains co-exist as thriving ecosystems. +
++ In the absence of a countervailing force, the proliferation of chains would naturally lead to increased fragmentation and the siloing of ecosystems. Crosschain protocols directly address this problem by enabling interoperation across distinct chains. +
++ The growth and adoption of such protocols over the last couple of years have been astounding. The total value locked in token bridges on Ethereum alone, which only offers a partial picture of the scale of adoption of such protocols, reached a high of US$27B in late 2021. +
++ The flip side to this rapid growth and adoption has been the slew of high-profile hacks and failures of these protocols. Between 2021 and 2022, more than + + US$2.5B was stolen in bridge hacks + + , which is more than two-thirds of all DeFI hacks in that period. +
++ To this end, this document provides a high-level systematic overview of the security risks in crosschain protocols by identifying, classifying, and analyzing the risk elements inherent in the design, implementation, and operation of such infrastructure. In addition, it offers a set of risk controls and best practices to mitigate the likelihood and severity of risks. +
++ While this document is still a work in progress, its ultimate objective is to enable progress toward more secure, robust, and decentralized crosschain protocols that can serve as solid foundations for a multichain future. We highly encourage contributions and feedback from the community towards this end. +
++ Broadly defined, crosschain protocols enable the exchange of data and value across chains through one of the following three types of interactions: +
++ Asset Exchange involves coordinating the transfer of ownership of an asset in one + + network + + with a corresponding transfer of ownership in another. This enables two or more parties to swap assets across networks under pre-agreed exchange terms. +
++ Asset Transfer involves moving the value of an asset from a source ledger to a destination ledger. It enables assets in one network to be used inside applications in another. +
++ General-purpose messaging refers to the communication of any data across chains. It can enable asset exchanges and transfers but also orchestrate complex application behavior across chains for a broad range of use cases. +
++ Crosschain protocols can have several distinct stakeholders with direct or indirect involvement in the system. These stakeholders can be individuals, groups, or organizations and have different roles, constraints, goals, and incentives. +
++ Users are the primary customers of the service offered by a crosschain protocol. They interact with the system directly to exchange assets or transfer data and value across chains. +
++ In a crosschain asset exchange, a + + liquidity provider + + is the counter-party to a user. +
++ A common approach to enabling the transfer of assets from one chain to another is through a lock-and-mint mechanism, in which crosschain protocols lock assets on one network and mint corresponding synthetic assets on another. + + bridge token holder + + . A + + bridge token holder + + might or might not be a user of a crosschain protocol. +
++ Crosschain protocols typically coordinate several off-chain systems and actors that collectively ensure the integrity of state communication across chains. + + bridge validators + + are the primary entities that ensure the security and continued operation of a crosschain protocol and thus represent a significant source of potential risk to the overall system. +
++ + Bridge operators + + are actors that can update or reconfigure key elements of a crosschain protocol (e.g., upgrading on-chain smart contracts, updating validator registries, or moving contract funds). How many bridge operators a protocol has, what they are allowed to change and what policies govern their actions can significantly influence the risk profile of a protocol and varies considerably across projects. +
++ + Bridge developers + + design, build, test, and maintain the codebase behind a crosschain protocol. + + implementation risk + + . +
++ In addition to the direct stakeholders discussed above, crosschain protocols also have indirect stakeholders. These entities have interest in or influence over the security and efficacy of crosschain protocols, even though they might not directly interact with them. +
++ Blockchain Network Participants: Recent bridge hacks have shown how failures in crosschain protocols can cause significant disruptions and halts of the underlying blockchains, impacting all network participants. +
++ Crosschain Applications: Applications built atop crosschain protocols have independent economic value that could influence the security of the underlying bridge. In addition, they have their own stakeholders that are impacted by the operations of the crosschain protocol. +
++ Bridge Protocol Investors: Investors of bridge protocols can directly or indirectly influence the operations and security of a protocol. For instance, the security guarantees of Proof-of-Stake bridges depend on the value of the bridge tokens staked. +
++ For brevity, the rest of this document primarily focuses only on direct stakeholders of crosschain protocols. +
++ At its essence, crosschain communication creates a dependency relationship between two or more networks. + + unidirectional + + or + + bidirectional + + , + + transient + + or + + persistent + + . +
++ This document primarily discusses and assesses the risk of crosschain protocols by considering factors that affect these core security requirements. +
+ ++ +
++ GTFOArgs is a curated list of Unix binaries that can be manipulated for argument injection, possibly resulting in security vulnerabilities. +
++ Argument injection (sometimes referred to as parameter injection) takes advantage of a program’s legitimate functionality in order to extend the capabilities provided by the method in which the program is intended to be run. +
++ The project collects legitimate + + arguments + + of Unix binaries that can be abused to break out of the environment they were run, in order to escalate privileges, transfer files, spawn bind and reverse shells, and facilitate other post-exploitation tasks. +
++ GTFOArgs is a + + collaborative + + project where everyone can + + contribute + + with additional binaries and techniques. +
++ This project was inspired by + + GTFOBins + + and most of the layout source code is written by them. +
++ Binary + | ++ Functions + | +
---|---|
+ + awk + + | +
+
|
+
+ + curl + + | +
+
|
+
+ + dig + + | +
+
|
+
+ An + + Architectural Decision (AD) + + is a justified design choice that addresses a functional or non-functional requirement that is architecturally significant. +An + + Architecturally Significant Requirement (ASR) + + is a requirement that has a measurable effect on the architecture and quality of a software and/or hardware system. +An + + Architectural Decision Record (ADR) + + captures a single AD and its rationale; +the collection of ADRs created and maintained in a project constitute its + + decision log + + . +All these are within the topic of Architectural Knowledge Management (AKM), but ADR usage can be extended to design and other decisions (“any decision record”). +
++ The aim of the + + GitHub adr organization + + is to: +
++ The repository for the Website of the ADR organization is + + https://github.com/adr/adr.github.io + + . +
++ A “lightweight” ADR consists of + + title, status, context, decision, and consequences + + (according to + + [Username Redacted] + + ). + + ThoughtWorks + + listed architectural decision records as “adopt” at their + + technology radar vol. 18 + + : + + https://www.thoughtworks.com/en-us/radar/techniques/lightweight-architecture-decision-records + +
+
+ We think that the considered options with their pros and cons are crucial to understand the reason of a chosen option.
+
+ MADR
+
+ — The Markdown Any/Architecture Decision Records (MADR:
+
+ [ˈmæɾɚ]
+
+ ) in this ADR organization includes such tradeoff analysis information.
+
+ +
++ We base our work on the guidelines and principles in + + Sustainable Architectural Decisions + + by Zdun et al., for instance the Y-statement format suggested in that article. +However, we are open to other formats of ADRs as shown at + + @joelparkerhenderson’s repository + + . +
++ In short, the Y-statement is as follows: +
++++ In the context of +
++ <use case/user story u> +
+ , facing ++ <concern c> +
+ we decided for ++ <option o> +
+ to achieve ++ <quality q> +
+ , accepting ++ <downside d> +
+ . +
+ The long form of it is as follows (extra section “because”): +
++++ In the context of +
++ <use case/user story u> +
+ , +facing ++ <concern c> +
+ we decided for ++ <option o> +
+ and neglected ++ <other options> +
+ , +to achieve ++ <system qualities/desired consequences> +
+ , +accepting ++ <downside d/undesired consequences> +
+ , +because ++ <additional rationale> +
+ . +
+ You can find more explanations and examples on Medium + + Y-Statements - A Light Template for Architectural Decision Capturing + + . +
++ + A Definition of Done for Architectural Decision Making + + proposes five criteria and a checklist to decide when it is time to set the status of a single decision to “done”: evidence, criteria and alternatives, agreement, documentation, and realization/review plan. Here, we focus on the ‘D’ in + + ecADR + + . +
+
+ [ˈmæɾɚ]
+
+ ).
+
+ matter
+
+ [ˈmæɾɚ]
+
+
+ .
+ + + Disclaimer: + + The following list is rather inclusive. +Please find out about the status and the maturity of the list entries for yourself by following the links. +We are happy to include more candidate assets here. +
++ For a more detailed list for tooling for MADR, please head to + + https://adr.github.io/madr/tooling.html + + . +
+
+ To improve this page, head to
+
+ https://github.com/adr/adr.github.io
+
+ , edit
+
+ index.md
+
+ , and submit a pull request.
+
+ We believe businesses should contribute back to F# OSS. +
+ + Read more + ++ Open-source has changed people's professional lives. +
+ + Read some inspiring stories + ++ Every week we try to highlight a different open-source project by + actively contributing during a live stream. +
+ + View sessions + +
+ We are a group of
+
+ independent individuals
+
+ , not tied to any organisation, with an
+
+ ambition to see
+
+ F#
+
+ grow
+
+ .
+
+ What brought us together is our aspiration to make an
+
+ actual difference
+
+ in the
+
+ F# open-source
+
+ landscape.
+
+ United we can take this F# ecosystem to the next level. By
+
+ hand-ons collaboration
+
+ and targeted efforts.
+
+ The world of + + open-source software can be quite overwhelming + + to get your feet wet in. There is a lot to learn and you might not be confident that you can contribute actually code changes. +
++ Just like when starting a new job, you need to learn a new codebase. + + Edgar’s testimonial + + . +
++ And that is why we want to invoke our collective hive-mind to help people get started. +We want to guide you as best as we can to scratch your own itch in the open-source space. +
++ + Literally anything + + (within reason 😸) you want + + to see improved + + in your daily + + F# experience + + . Be it a compiler feature, tooling improvement, performance increase, … +There is so much work left to do in the F# eco-system and there for sure is something we can do that will rock your boat. +
++ In practical terms, you should see this initiative as two things: + + educational + + and an attempt to improve + + daily productivity + + . +
++ There is a lot you can learn from pair/mob programming with seasoned F# developers from all over the world. +The diversity of backgrounds can broaden your perspective and genuinely make you better at your job. +
++ Being able to solve outstanding problems that hinder your day-to-day flow, will reward itself over time. +
++ If you need more help to convince your boss, you can refer to our + + incitation letter + + or reach + + out to us + + and we would happily chime in. +
+ + ++ Explore the experiences of individuals who have contributed to + open-source projects within the F# community. +
+ ++ I'm creating animations and instructional videos about neural networks. + Check out my + + Patreon + + and + + YouTube channel + + ! +
++ + | ++ + | +
+ No Padding AKA "Valid" + | ++ [1,1,1,1] Padding AKA "Same" + | +
+ Stride 1 + | ++ Stride 2 + | +
---|---|
+ + | ++ + | +
+ No Padding AKA "Valid"; Stride of 1 + | ++ No Padding AKA "Valid"; Stride of 2 + | +
+ + | ++ + | +
+ + | ++ + | +
+ 1 Group + | ++ 2 Groups + | +
+ + | ++ + | +
+ Depthwise (8 Groups) + | ++ Depthwise-separable (8 Groups followed by pointwise) + | +
+ + | ++ + | +
+ 2x2 Pixel Shuffle + | ++ 2x2 Pixel Unshuffle + | +
+ + | +|
+ 2x2 Pixel Shuffle/Unshuffle Loop + | +
+ + | ++ + | +
+ 3x3 Pixel Shuffle + | ++ 3x3 Pixel Unshuffle + | +
+ + | +|
+ 3x3 Pixel Shuffle/Unshuffle Loop + | +
+ Licensed under the + + MIT License + +
++
+ ++ Dynamische Stromtarife haben keinen fixen Preis sondern einen Stunden variierenden Preis der sich nach den Ergebnissen der Strombörse EPEX SPOT ergibt. +
++ Durch bewusstes Anwenden von Haushaltsgeräten wie Waschmaschine oder Geschirrspüler mittels Zeitvorwahl kann man damit seinen persönlichen Strompreis verringern. Noch besser funktioniert das mit großen Verbraucher wie Elektroauto oder + + Wärmepumpe + + . + Der Börsenpreis ist in der Regel niedriger wenn viele erneuerbare Energien im Netz verfügbar sind, aber keine Abnehmer finden. + Dynamische Stromtarife sind daher eines der vielen Puzzlesteine die wir für die Energiewende benötigen. +
++ Backtesting ist ein Vorgang um ein Modell auf historische Daten zu testen. Mit diesem Tool kann man die Verbrauchsdaten seines Netzanbieters uploaden (siehe Anleitungen weiter unten), welches dann den erzielten Strompreis berechnet. +
++ Hier ein Beispiel wie sowas aussieht: +
++ +
++ Verbrauchsdaten vom Netzbetreiber uploaden (Beispieldatensätze gibt es + + hier + + zum Herunterladen): +
+ ++ warning place holder. +
+ ++ nothing +
+ ++ + 1 + + Der H0-Durchschnittspreis ergibt sich aus dem Verbrauch laut dem + + H0 Standardprofil + + im selben Zeitraum und dient somit als Benchmark. Erzielt man einen Durchschnittspreis unter dem H0 Ø hat man + + sehr + + gute Vorraussetzungen um von einem dynamischen Stromtarif zu profitieren, ist aber nicht notwendig um generell davon zu profitieren. +
++ Gehe auf + + https://smartmeter.netz-noe.at + +
++ Einloggen +
++ Tab + + Verbrauch + + auswählen +
++ Richtigen Zähler auswählen unter + + Vertragskonto + + . Achtung, nicht den Einspeisepunkt wählen. +
++ + Hinweis + + : Die 15-min-Profilwerte müssen explizit aktiviert werden, siehe Spalte "Opt-in" im Screenshot. + Ist das nicht der Fall, kann die heruntergeladene CSV trotzdem nur Tageswerte enthalten. Solche Einträge werden von diesem Tool ignoriert. + Es kann auch sein, dass der Inhalt gemischt ist. + Beispiel: Opt-In wurde am 15. September gemacht, dann ist der Verbrauch bis zum Stichtag als Tageswerte enthalt, danach folgen erst die 15-min-Profilwerte. Ersteres wird vom Tool ignoriert. + +
++ Download der 15-Minutenwerte über das + + NetzOÖ e-Service-Portal + +
++ Vertrag auswählen +
++ Verbrauchsübersicht +
++ Zeitraum auswählen +
++ Gehe auf + + kaerntennetz.at + +
++ Kundenportal +
++ Einloggen +
++ "Profildownload" unter "meine.messwerte" auswählen +
++ Login auf + + https://portal.salzburgnetz.at + +
++ Klick auf Anlagendetails +
++ Anlage bzw. Vertrag auswählen +
++ Daten auswählen und über das "Burger Menü" den Download anstoßen +
+ ++ Einloggen beim Tinetz Kundenportal: + + https://kundenportal.tinetz.at/ + +
++ Unter "Zähler" auf Verbrauchshistorie gehen +
+ ++ Zeitraum auswählen +
+ ++ Herunterladen, "Rohdaten als CSV" +
+ ++ Gehe auf + + smartmeter-web.wienernetze.at + +
++ Klicke auf + + Datenexport + +
++ Zeitfenster wählen +
++ + Viertelstundewerte + + auswählen +
++ Gehe auf + + https://www.endkundenwebportal.at + +
++ Wähle + + Strom + +
++ Zeitfenster auf + + Tag + + einstellen (nur so werden 15-Minuten Werte geliefert!) +
++ Auf + + Angezeigte Werte als CSV-Datei speichern + + klicken +
+
+ Associate Teaching Professor
+
+ Software and Societal Systems Department
+
+ School of Computer Science
+
+ Carnegie Mellon University
+
+ I'm a computer scientist working on AI and developer tools. + + declined + + the NSF CAREER Award, + + taught + + amazing students, built novel + + tools + + for code and data, went through a startup + + acquisition + + , and learned valuable + + lessons + + . I also spend a lot of time + + writing + + about my side projects. +
++ 标签 + | ++ 文章 + | ++ 标签 + | ++ 文章 + | +
---|---|---|---|
+ + kubernetes + + | ++ + k8s yaml配置文件 + + + + 架构设计理论 + + + + 调整pod内核参数 + + + + 服务发布 + + + + 1.13.3安装 + + + + 调度简介 + + + + dashboard + + + + traefik + + + 编译二进制 + + | ++ + docker + + | ++ + 了解docker和kubernetes + + + + docker初学 + + | +
+ + databases + + | ++ + mysql集群mgr + + + + mongodb + + + + windows主机的Mysql + + + + mysql-mmm + + | ++ + ansible + + | ++ + redis的sentinel高可用 + + + rabbitmq集群 + + | +
+ + logs + + | ++ + flume-ng日志收集 + + + + ELK5 + + + + filebeat + + + + logstash使用kafka日志收集 + + | ++ + monitor + + | ++ + kubernetes的监控 + + + cadvisor+prometheus + + + java + + | +
+ + 由docker-compose导致的网络故障–网络不可达 + +
++ + 在kubernetes中部署skywalking(elasticsearch7集群) + +
++ + 在kubernetes中statefu方式安装elasticsearch-6集群 + +
++ + 在kubernetes中statefu方式安装rabbitmq集群 + +
+ + ++ + mysql集群mgr(mysql_group_rplication_config) + +
+ ++ + 一分钟简单了解docker和kubernetes + +
+ + ++ + glusterfs在kubernetes中的使用详解 + +
+ ++ + kubernetes代理内部服务之websocket服务 + +
+ + ++ + etcd安装操作 + +
++ + etcd集群故障处理 + +
++ + Nexus Repository权限配置管理 + +
++ + jinja和jenkins结合做为kubernetes的服务发布平台 + +
+ ++ + azure微软云之powershell创建主机 + +
++ + azure微软云之Azure CLI更新网络安全组 + +
++ + linux工匠之kubernetes使用ceph块存储 + +
+ ++ + prometheus对kubernetes集群的监控 + +
+ + ++ + mesos marathon consul的集群试验 + +
++ + mesos marathon和chronos构建分布式系统 + +
+ + + + + + + ++ + 用ansible-playbook安装redis的sentinel高可用集群 + +
++ + 使用ansible-playbook一键安装rabbitmq集群 + +
+ ++ + Haproxy keepalived的线上高可用 + +
+ ++ + NAT模式的LVS和keepalived高可用 + +
++ + 发布系统之jenkins-maven-svn + +
+ ++ + 生产环境Centos编译安装Nginx-MySQL-php + +
+ + ++ + pyenv virtualenv构建独立的python环境 + +
++ + python统计nginx日志的条数及错误率 + +
+ + + ++ + 小议python的迭代iterative和递归recursive + +
++ + python插入排序算法 + +
++ + mysql组复制mgr(mysql group replication)配置 + +
+ + ++ + centos系统pyodbc+MS_ODBC连接azure的SQL Server + +
+ ++ + mysql的不常用命令 + +
++ + Mysql数据库引擎innodb转换为TokuDB + +
+ ++ + Multi-Master Replication Manager for MySQL(mysql-mmm) + +
+ ++ + docker和kubernetes的监控(cadvisor+prometheus) + +
+ + + + + + + ++ + swarm中的zookeeper和kafka集群配置 + +
++ + kubernetes集群中的kafka服务配置 + +
++ + kubeadm安装1.13.3版本kubernetes文档 + +
++ + kubernetes 1.13.3集群安装步骤文档 + +
++ + kubernetes 1.9.4集群安装文档向导 + +
+ ++ + kubeadm创建的kubernetes集群证书到期后续期 + +
++ + kubernetes dashboard面板只读用户创建 + +
+ ++ + kubernetes的调度简介nodeName nodeSelector Affinity Anti-affinity Taints Tolerations + +
+ ++ + kubernetes的dashboard登录方式 + +
+ ++ + linux工匠之kubernetes的traefik配置介绍 + +
++ + inux工匠之kubernetes的ingress-nginx配置介绍 + +
++ + CICD之logstash服务的Dockerfile使用Gitlab Runner打docker包 + +
++ + linux工匠之heapster监控kubernetes + +
+ ++ + kubeadm部署kubernetes 1.8离线安装绝对成功版 + +
+ ++ + docker服务在kubernetes(k8s)中跑起来 + +
++ + vagrant虚拟机运行 + +
+ ++ + kvm和Xen主机在线调整cpu核心数和内存大小 + +
++ + 虚拟化之Xen配置应用 + +
++ + 虚拟化之KVM配置应用 + +
++ + docker初学跟我来 + +
++ + ELK5完整部署 + +
+ ++ + elasticsearch的template和mapping + +
++ + logstash使用zookeeper建立kafka集群对日志收集 + +
++ + ELK日志服务使用-filebeat多文件发送 + +
++ + ELK日志服务使用-shipper-to-indexer + +
+ + + ++ + squid+stunnel+ldap距离网络更近一步 + +
++ + SQL Server Changed language setting to us_english + +
++ + 运维过程中遇到的一些问题 + +
+ ++ + 升级glibc解决GLIBC_2.14 not found + +
+ ++ + 关于此linux工匠网站 + +
++ + Kafka深度解析 + +
++ + MySQL主从复制idempotent模式以及同步错误处理预案 + +
+ ++ + 腾讯高级工程师:一道面试题引发的高并发性能调试思考 + +
++ + 消息队列设计精要 + +
++ + 异地多活设计难-其实是你陷入了这四大误区出不来 + +
+ + +Commonly-Dockerfile 常用服务如mysql、redis、zookeeper、kafka、elasticsearch、eureka的Dockerfile、docker-compose、kubernetes配置
+jenkins_publish 一个项目多个环境的jenkins多线程构建
+RedisSearchKey 模糊搜索redis 16个数据库中key
+Message_Board 简单的留言板
+docker-compose-publish docker-compose项目的自动更新发布脚本
+magedu_logscan 搜索日志
+mysite 学习Django的mysite
+
+ kubernetes_cluster_install_1.9.4.md kubernetes 1.9.4集群安装文档
+kubernetes_cluster_install_1.13.3.md kubernetes 1.13.3集群安装文档
+mysql-mgr mysql集群 mgr
+redis-cluster redis cluster集群
+etcd-v3.4_install etcd集群
+kafka-cluster kafka集群
+
+ + 此项目为博客中用到脚本或项目,也有工作中使用的脚本,比如: +
+文件夹 备注
+2015year 2015年以前的文档
+Commonly-Dockerfile 常用服务的Dockerfile,包含elasticsearch、mysql、eureka、zookeeper、kafka、redis、nginx、java、mongodb等Dockerfile
+docker-compose-publish docker-compose发布脚本
+harbor-py 有关harbor仓库的python脚本
+kubeadm_binary kubeadm 10年过期时间的二进制文件
+python_project python相关
+service_config 服务配置
+shell shell脚本
+virtualization 虚拟化,k8s、docker
+databases 数据库
+monitor_safe 监控和安全
+others 转载和其他
+
+
+shell脚本
+backup_nginx_conf.sh 备份nginx配置文件
+change_passwd.sh 更改系统初始化密码和主机名
+check_logs_error.sh 查看一定时间段内日志错误信息
+delete_docker_images.sh 除了最新的docker镜像、使用中的docker镜像,其他都删除
+delete_file_by_time.sh 按时间删除文件
+echo_java_port.sh 查看主机上java服务端口号
+hosts_binding.sh 绑定hosts脚本
+java-publish-Windows.sh java服务发布脚本--Windows环境
+java-publish.sh java服务发布脚本
+mysql_status.sh 查看mysql状态
+php-publish.sh php发布脚本
+
+
+python脚本
+DeleteElasticsearchIndices.py 删除es数据库数据
+nginx_log_error_rate_statistics.py nginx日志错误率
+
+
+ + 本项目属于博客,欢迎Star及issues +
++ + 关于我 + +
+ ++ 指挥控制(Command and Control, + + C2 + + )是我们今天再熟悉不过的军事术语。其不仅代表了军事中的核心活动,也广泛体现在生产、管理以及日常生活中。 +
++ 例如,军队中有各级各类的指挥所,企业有用于生产的指挥调度系统,政府有应急指挥中心。日常生活中,教练指挥比赛、交警指挥交通、指挥家指挥演奏等等。可以说,人类的群体性活动都离不开指挥控制。 +
++ 另一方面,作为实现指挥控制的技术平台,各种指控系统(C2系统)不仅是计算机、网络、人工智能等先进技术应用的产物,也直接推动着技术的发展与革新。例如,第一套基于计算机的C2系统——赛其系统( + + SAGE, Semi-Automatic Ground Environment + + ),为了实现对苏联远程轰炸机的早期预警与拦截,首次将雷达与计算机通过电话线进行连接,导致了计算机广域网的出现,并催生了互联网的前身——APRNET。 +
++++ 除了计算机网络外,SAGE系统还创新出了磁芯存储器、基于光笔及CRT的人机交互、软件工程等当今耳熟能详的技术,并催生了鼎鼎大名的MIT林肯实验室以及MITRE公司等重量级企业。SAGE系统被认为是计算机发展史上的一座丰碑,位于硅谷的计算机博物馆(紧挨谷歌公司总部)收藏了SAGE系统的部分设备,有机会一定要去膜拜一下。 +
+
+ +
++ 指挥控制相关的例子、术语及概念演化请参考站内博文“ + + C2的概念及其演化 + + ”。简单来讲: +
++ “ + + 指挥 + + ”意为上级对下级行使权利,对行动进行组织领导。指挥是系统的源动力, + + 基础 + + 是法定或个人的威信, + + 核心 + + 是决策、判断以及行动(作战)构想, + + 前提 + + 是信息交互, + + 形式 + + 既包括艺术,也涉及科学。 +
++ “ + + 控制 + + ”意为驾驭、支配、掌握,使不超出范围。从自动控制的角度看, + + 负反馈 + + 是实现控制过程的前提;从控制论的角度看,“ + + 可能性空间 + + ”是其最基本的概念。控制归根结底,是一个在事物可能性空间中进行有方向的选择的过程: +
++ (——参见金观涛《 + + 控制论与科学方法论 + + 》)。 +
++ PLA军语将“指挥控制”定义为:“ + + 指挥员及其指挥机关对部队作战或其行动掌握和制约的活动 + + ”,美军及北约也有相应的定义(参见“ + + C2的概念及其演化 + + ”)。 +
++ C2术语的出现体现了“指挥”、“控制”的结合,一方面体现了战争对战场硬件设施和技术的依赖性越来越强,另一方面也体现了由于战争活动中所涉及要素的复杂性增强,以至于对战场的集中控制成为必须。因此,C2是“战争机器”精确、快速、高效运作的需要,也是科学技术,特别是工业革命以来的科学技术在军事领域运用的产物。 +
++ 对于两者的关系,我们有如下理解: +
++ 因此,有个形象的比喻:如果将兵力比作马,指挥比作骑手,控制比作挽具。 +
++ 虽然C2术语起源于军事,但C2的概念、方法被广泛使用于应急指挥、生产管理、空中交通管制等众多领域。 + + 《C2 Re-envisioned: The Future of the Enterprise》 + + 一书中对广义C2的定义为:“指挥和控制由组织、技术的属性组成,企业藉此安排使用人力、物力和信息资源,以解决问题、完成任务”;《2015-2015 指挥与控制学科发展报告》对广义C2的定义为:“指挥和控制是指为完成事先指定的任务,综合运用多种技术和一系列信息过程,对群体性社会活动进行快速协调、调度、管理或治理。” +
++ C2过程最广为人知的是 + + + OODA + + + 模型,简言之是指从“观察”到“行动”,也是从“数据”到“决策”的过程。 + +
++ C2的成效是胜负的决定性因素。在战争中,任何一项其它活动的重要程度都无法与指挥与控制相提并论。因此,C2理论与技术的研究一直是军事、管理、理论研究中最活跃的领域之一。值得指出的是,C2研究具有典型的交叉、跨学科的特点,涉及的相关学科包括计算机、通信、控制、数学、军事、管理、系统工程等。 +
++ 我们将所关心的C2问题划分为“理论问题”、“技术问题”两大类型。“理论问题”侧重对基本原理的研究,主要包括C2的领域、模式、过程、方法、组织设计等问题,“技术问题”侧重OODA闭环中各类支撑、使能技术问题的研究,可大致归结为态势认知、决策评估两类。 +
++ 20世纪90年代以来,新一轮以信息化为标志的军事变革掀起了以消除各军兵种“烟囱系统”、建立指挥系统之间的“互联、互通、互操作”为目的的C2系统发展高潮。C2迅速从单纯的C2演化到 C3I、C4I、C4ISR等等,技术元素与功能形式等越来越多,结构与过程越来越复杂,涉及到的人、信息与结构及其对象等指挥与控制要素都发生了发生深刻变化。 + + 智能 + + 技术的迅速兴起又给C2注入了新的发展动力,以智能化为特征的C2系统成为未来发展的重点,整个领域面临着一场深刻的变革。在信息与智能时代,C2可以突破传统的统一指挥、统一意图、等级组织、直接控制等方式,并表现出不确定性、动态性、随机性、涌现性、非线性等特点。 +
++ 这些变革,都触及到C2的本质——结构与过程、决策与智能等基础理论问题。就像牛顿发现万有引力之前我们看待苹果落到地上,对现象的漠视往往是我们认识科学掌握真理的桎梏。尽管不乏有真知灼见的观点和宏篇巨著探索了C2相关的理论问题,也有从战术到战略C2系统的设计与运用,但关于C2本质的认识仍然缺乏从现代科学(系统论、控制论、信息论等)的角度进行深刻的剖析,诸多C2系统设计与使用仍然没有突破工业时代机械化战争的思维模式的限制。 +
++ 因此,重新认识和理解C2成为一项十分迫切的重要任务。对C2本质的认识,需要从源头探究其基础理论的发展,以新的技术、新的使命与任务为出发点,建立新的C2基础理论。 +
++ 我们认为,C2的基础理论问题主要包括以下几个方面: +
++++ 有关以上问题的整体性简要描述请参考“ + + 信息与智能时代指挥与控制基本理论问题 + + ”)。 +
+
+ C2技术,可以理解为贯穿从“观察”到“行动”的循环中的支撑和使能技术,可以形象地理解为“知而后行”。“知”对应态势认知,“行”对应决策评估,如下图所示。“知行合一”,才能无往而不胜。 + +
++ + 态势 + + 是指状态与形势,包括人或事表现出的形态、环境或事物的发展状况和情形等,各种事实、信息和认知等纷乱复杂的状态和现象就构成了态势。 +
++ 两千多年前,《孙子兵法》的形篇、势篇和虚实篇中就详细阐述了战场环境、部署、军事实力及运用对作战的影响,在谋攻篇中提出的“知己知彼,百战不殆”,进一步突显出了掌握战场态势的重要性。PLA军语将态势定义为: 敌对双方部署和行为所形成的状态和形势。我们认为战场态势是作战空间内战场环境以及敌我双方兵力和装备部署的当前状态和形势,及其 + + 变化发展趋势 + + 。 +
++ 针对战场态势,其组成包括以下几方面: +
++ 对态势的认知是行动的前提。(战场) + + 态势认知 + + 是指在一定的时间和空间范围内,指挥决策人员对战场态势的智能处理,包括对战场态势元素的含义理解,以及对它们未来的改变进行预测,是指挥决策人员对态势的内在理解的一个过程。态势认知是人类心智模型的一种体现。心智模型是指人通过眼睛、耳朵等传感器,接受外界数据与信息以后会在脑中形成一个思维的模型来描述外部世界,并对它的运行发展进行分析、判断和预测。因此,态势认知过程从信息融合的基础上开始,通过对态势要素(敌我态势、战场环境等)进行识别、描述、解释、评价等一系列处理过程,由表及里、由此及彼地梳理、判断、预测态势,形成对态势的理解和认知。 +
++ 以空情态势为例:针对来袭的飞行器,首先通过各类传感器获取关于目标的各维度观测数据,通过数据融合、关联,形成目标航迹,并基于特征识别目标类型,最终形成对目标威胁程度的判断。 + +
++ 除了对个体的认知外,更重要的是对整体的认知。如,冷战时期曾有研究对苏联的铁路网进行分析,从中找出其关键点作为打击目标,以期迟滞苏军向西欧推进的速度。 + +
++ 无独有偶,日本《军事研究》2014年11月号刊载了题为《攻击长江铁路桥可产生摧毁中国的效果》的文章,提出了在难以对中国内陆实施长时间持续轰炸的条件下,选择京广、京沪、京九、武广等线路的长江铁路桥作为打击目标将成为瓦解中国战时经济、使中国屈服的理想策略。除给出基于中国南北交通流量的计算依据外,文章还进一步给出了利用巡航导弹从防空能力相对薄弱的中国西南方向进行突击的“低成本”实现方案。 +
++ JDL、SA是与态势认知密切相关的两个过程模型,前者基于数据处理与融合的角度,后者则基于决策者的认知角度。JDL模型可参见“ + + Revisions to the JDL +Data Fusion Model + + ”,SA模型可参见维基百科词条” + + Situation Awareness + + “,以及“ + + 什么是态势感知? + + ” +
++ 我们认为,态势认知过程可以表达为从观测数据中还原对方信息,并进而理解其意图、判断其关键点、脆弱点的过程,如下图所示。 + +
++ 与之对应,我们所关心的态势认知中的技术问题主要包括: +
++ C2中的态势认知问题的主要难点在于: +
++ 大数据与AI技术的突飞猛进为态势认知提供了新的方法与思路,自动化、智能化的态势认知成为发展趋势。一些值得注意的方法包括: +
++ C2中的 + + 决策评估 + + 指在态势认知的基础上,确定意图、生成行动方案/计划,并对方案/计划的效果、效率、代价、风险等进行评估的过程。其目的是把有限的资源在正确的时间部署到正确的地点去执行正确的任务,并在这一过程中实现预设目标的优化。 +
++ 古今中外的军事理论无不强调筹划、计划的重要性。《孙子兵法》将“计”作为开篇,进行了专门的论述,认为“夫未战而庙算胜者,得算多也,未战而庙算不胜者,得算少也。多算胜,少算不胜,而况无算乎”。宋代《册府元龟》卷“任篇”说,“运筹于帷握之中”。克劳塞维茨在《战争论》中提出:“战争计划总括全部军事行动,并且使它成为具有一个最终目的的统一行动”。 +
++ 从决策的层次看,C2中的决策问题一般可分为三个层次:战略(Strategical)、战役(Operational)、战术(Tactical),不同层次的决策要素不同。 +
++ +
++ 由于问题的复杂性,C2中的决策评估通常需要依赖软件系统进行辅助。例如,下图是美空军的联合任务规划系统 + + JMPS-AF + + 的界面,该系统支持目标选择、武器匹配、航路规划等问题的辅助决策。 +
++ +
++ 下图是NASA开源的数据可视化与任务规划框架软件 + + OpenMCT + + 的界面,可对火星车任务进行管理调度以及状态监控。 +
++ +
++ 为确保决策质量和效率,C2中的决策通常还有规范的流程作为依据。例如,美军联合出版物JP5-0 “Joint Planning”(2017)将联合作战计划生成的流程分为:任务分析、COA生成、COA分析与推演、COA比较、COA批准、计划与指令生成等阶段。 + +
++ 下图则描述了DARPA “ + + X计划 + + “中关于Cyber行动计划生成过程的示意图。 +
++ +
++ C2领域目前一个经常使用的词是“任务规划”,我们将其视为一种解决C2中决策评估问题的技术,但相当多的研究用其泛指C2中与决策有关的活动。有关“任务规划”的概念、流程等,可参考“ + + 浅谈对作战任务规划的认识 + + ”、“ + + 从作战筹划到联合任务规划 + + ”等文献。 +
++ 我们所关心的决策评估问题主要包括: +
++ C2中决策评估问题的主要难点在于: +
++ 一些值得注意的方法包括: +
++ Hint: Press enter to add the current search term as a tag filter. +
+ Chosen tags: ++ Software + | ++ Tags + | +
---|---|
+ + 2pac + + | ++ + complex/rips + + + + custom/boundary-matrix + + + + custom/distance + + + + custom/filtration + + + + lang/c++ + + + + lang/cli + + + + lang/python + + + + type/multiparameter + + + + type/persistence + + + | +
+ + bats + + | ++ + complex/cell + + + + complex/cubical + + + + complex/rips + + + + complex/simplicial + + + + complex/witness + + + + custom/distance + + + + custom/filtration + + + + lang/c++ + + + + lang/python + + + + type/persistence + + + + type/representative + + + + type/vineyard + + + | +
+ + cereeberus + + | ++ + complex/simplicial + + + + lang/python + + + + type/Reeb + + + + type/mapper + + + + type/mergetree + + + | +
+ Please contribute by making a pull request on + + our Github + + . +
++ +
++ Here is + + [Name Redacted] + + . +
++ I am a graduate student in the Department of Engineering at the University of Cambridge, advised by + + Prof. [Name Redacted] + + , within + + Internet of Everything (IoE) Group + + . I also spent a lovely summer research program with + + Prof. [Name Redacted] + + at + + Artificial Intelligence Group + + . Prior to Cambridge, I have worked on System Engineering, Cybersecurity and Wireless Communication with + + Prof. [Name Redacted] + + and + + Dr. [Name Redacted] + + . Recently, I was honored to be selected as + + AAAI and SIGKDD Undergraduate Scholars + + . +
++ If you are interested in any aspect of me, I am always open to discussions and collaborations. Feel free to reach out to me at - [Email Redacted] +
++ My current research focuses on practical problems that artificial intelligence faces in real life. My interests are on the + + Machine Learning + + and its applications in + + Industrial IoT + + . +
+
+
+
.d8888b. 888 888 d8888 8888888 888b 888 .d8888b.
+ + CHAINS is a research project at + + KTH Royal Institute of Technology + + , it is about hardening the software supply chain, incl. dependency engineering as well as reproducible, executable and verifiable builds and SBOMs. +We primarily look at Maven, NPM, and the software supply chain of crypto. +The project is funded by the + + Swedish Foundation for Strategic research (SSF) + + . We are recruiting software engineers, postdocs, and interns, + + get in touch! + +
+ <dependency>
+ <groupId>com.martiansoftware</groupId>
+ <artifactId>jsap</artifactId>
+ <version>2.1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <version>1.7.36</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>2.11.0</version>
+ </dependency>
+
+ + (chronological order) +
++ Posts: +
++ Chains alumni: + + [Name Redacted] + + , + + [Name Redacted] + + , + + [Name Redacted] + + , + + [Name Redacted] + + , + + [Name Redacted] + + , + + [Name Redacted] + + , + + [Name Redacted] + + , + + [Name Redacted] + + , + + [Name Redacted] + +
++ See + + [URL Redacted] + +
++ Work in Progress +
+
+ This Wiki is a work in progress and may contain outdated and/or incomplete information.
+
+ If you can, consider
+
+ contributing to the wiki on GitHub
+
+ .
+
+ This is the official documentation of the Chaos League Stream Game created by + + DoodleChaos + + . +
++ Chaos League is a Stream-interaction Game, meaning the viewers of the stream can participate in it. It is maintained and run by the YouTuber + + DoodleChaos + + . +
++ The goal of the game is simple: Capture the Throne, that is visible in the middle of the screen at the top, and keep it as long as you can. +
+
+ Check the
+
+
+ Attacking the King
+
+ page
+
+ for more info.
+
+ To earn points, you have to participate in Minigames. To participate, you have to either spend Channel Points or Bits to buy "
+
+ tickets
+
+ ".
+
+ Each
+
+ ticket
+
+ bought will be added to a Prize that the winner of the Minigame can earn. The more
+
+ tickets
+
+ bought, the higher the Prize will be.
+
+ + Chat Commands + +
++ List of all available Chat commands. +
+ ++ + Game Mechanics + +
++ Currently available Game mechanics. +
+ ++ + Tiles + +
++ A list of all tiles available in Chaos League to join. +
+ ++ + Changelog + +
++ Past and current changes to the Chaos League Game. +
+ ++ The + + London Computation Club + + is a meet-up for people interested in one or more of the following: +
++ We organise the club via + + Slack + + so please join us there. Everyone is welcome to suggest a meeting topic, be it to + + learn about algorithms by playing with trains + + , + + showcase a side-project for solving complex problems + + or + + create an unbeatable noughts and crosses playing computer program together + + . +
++ You can also follow us on + + Twitter + + , see code that we’ve produced on + + GitHub + + and write-ups of past meetings on + + our wiki + + . +
++ Subscribe to + + future meetings in iCal format + + . +
++ It’s of primary importance that everyone who wants to participate feels safe and welcome. When participating in the London Computation Club, either online or offline, at the meeting itself or at the pub afterwards, we expect you to respect our + + code of conduct + + . +
++ If you buy any books using the Blackwell's links, London Computation Club gets a little kickback via the Blackwell's affiliate programme. We use that kickback to buy copies of the books for our library, to assist members or potential members who otherwise wouldn’t be able to afford the book. +
++
++ Thanks to the following companies for providing office space and copies of books for the club to read. +
++ CYSCOM +
+ ++ Started off with a few people having cyber safety in mind, the club now boasts a big gathering of members and associates alike. Join us on our mission to + make the cyber space a safer place. +
+ + + ++ The Cybersecurity Student Community (CYSCOM), VITCC aims to spread awareness about cybersecurity +
++ We spread awareness regarding cybersecurity through weekly blogs, social media posts and more. +
++ Speaker sessions, competitions and periodic conferences all help to spread the message of security. +
++ We believe in maintaining a completely transparent and open source of code. Anyone, from anywhere can access it. +
++ With continuous projects and new ideas, we aim to create unique tools to spread awareness on cybersecurity. +
++ CYSCOM is proposed for approval. +
++ The Cybersecurity Student Community (CYSCOM) is officially formed. +
++ CYSCOM kicks into action. +
++ CYSCOM VIT hosts Cyber Defender, a 2 day technical and fun event for all cyber enthusiasts, with a workshop and a CTF event. +
++ HackOverflow, our flagship hackathon, is organized. It consisted of 2 rounds - an online ideathon and a 24-hour offline hackathon event, themed + around solving the technological problems faced by NGOs. +
++ Over the years, CYSCOM has conducted a number of exciting and innovative events and competitions for spreading awareness of cybersecurity. +
++ Is a small event series put on by a group of friends, + once-a-month-or-two-ish, where people come show off cool stuff they've + made. +
++ Smart watch for chess ranking + | ++ [Name Redacted] + | +
+ Miegakura related stuff + | ++ [Name Redacted] + | +
+ AI Drawn Card deck + | ++ [Name Redacted] + | +
+ How to make film with AI + | ++ [Name Redacted] + | +
+ Circuit Sculpture + | ++ [Name Redacted] + | +
+ 3D Medley + | ++ [Name Redacted] + | +
+ Dreams of Vision OS + | ++ [Name Redacted] + | +
+ Dissecting magic eyes + | ++ [Name Redacted] + | +
+ Slices of a book + | ++ Andy Matuschak & Derrek Chow + | +
+ Retro horror game + | ++ [Name Redacted] + | +
+ Stochastic parrot + | ++ [Name Redacted] + | +
+ AI Super Smash Coach + | ++ [Name Redacted] + | +
+ Prayer App + | ++ [Name Redacted] + | +
+ The making of Orion + | ++ [Name Redacted] + | +
+ Super wide interfaces 2 + | ++ [Name Redacted] + | +
+ New interfaces for dynamic images over text + | ++ [Name Redacted] + | +
+ Figma computer + | ++ [Name Redacted] + | +
+ playhtml + | ++ [Name Redacted] + | +
+ Buffo - a documentary + | ++ [Name Redacted] + | +
+ Tamagotchi spongey + | ++ [Name Redacted] + | +
+ Light and shadow interfaces + | ++ [Name Redacted] + | +
+ Reverse engineering chatgpt + | ++ [Name Redacted] + | +
+ Silly pet game + | ++ [Name Redacted] + | +
+ AI quilt + | ++ [Name Redacted] + | +
+ Playbit + | ++ [Name Redacted] + | +
+ A Personal Journaling App + | ++ [Name Redacted] + | +
+ Reprocessing + | ++ [Name Redacted] + | +
+ Shaders & CSS + | ++ [Name Redacted] + | +
+ Documentary + | ++ [Name Redacted] + | +
+ Poetry Camera + | ++ [Name Redacted] + | +
+ A Farsi Typeface + | ++ [Name Redacted] + | +
+ Super Wide Interfaces + | ++ [Name Redacted] + | +
+ ডেভেলপারদের জন্যে চিটশিট খুবই কাজের জিনিস। কারণ আমাদের পক্ষে অনেক কমান্ড বা কোনো লাইব্রেরীর সব ফাংশন একসাথে মনে রাখা সম্ভব হয় না। সেক্ষেত্রে আমরা যদি একটা তালিকা তৈরি করি যে অমুক কমান্ড বা ফাংশন অমুক কাজ করে তাহলে খুব সহজেই পরবর্তিতে কেউ কাজ করতে গেলে শুধুমাত্র সেই তালিকা দেখলেই প্রয়োজনীয় সবকিছু খুঁজে পাবেন। আমরা আমাদের পুরো জ্ঞানকে বিভিন্ন বিভাগে ভাগ করে শুধুমাত্র আসল ফাংশানালিটিগুলো খুব ছোট্ট করে বর্ণনা দিয়ে তালিকা তৈরি করতে পারি। যেগুলোতে পরবর্তিতে কোনো ডেভেলপার শুধু একটু চোখ বুলিয়ে নিলেই তার কাঙ্ক্ষিত জিনিসটা খুঁজে পাবেন। এরকম চিটশিট + + এখানেও + + পাবেন। কিন্তু আমাদের লক্ষ্য হচ্ছে সম্পূর্ণ বাংলায় চিটশিট তৈরি করা। +
++ Cheatsheets are very handy for developers. + + here + + . +
++ এই প্রজেক্টটি পুরোপুরি গিটহাব ভিত্তিক। এখানেই + + + data + + + নামক ডিরেক্টরির ভিতরে আমাদের সবগুলো চিটশীট + + json + + ফাইল আকারে সাজানো আছে। আমাদের মেইন অ্যাপ্লিকেশন এখান থেকেই ডাটাগুলো নিয়ে প্রদর্শন করাবে। আমাদের বর্তমানে দুই ফরম্যাটের চিটশীট সাপোর্ট করছে। +
++ This project is completely GitHub based. This is where all our cheatsheets are organized as + + json + + files inside a directory called + + + data + + + . +
++ কোড এবং বর্ণনা সহ ফরম্যাট( + + এখানে ডেমো দেখুন + + ) +
++ Format with code and description( + + See demo here + + ) +
++ মিক্স ( + + এখানে ডেমো দেখুন + + ) +
++ + ভবিষ্যতে নতুন কোনো ফরম্যাটের প্রয়োজন হলে অবশ্যই যোগ করা হবে। আপনি চাইলে + + এখান থেকে + + একটা ইস্যু তৈরী করতে পারবেন নতুন ফরম্যাট তৈরী করার জন্যে + +
++ Any new formats will be added in future if needed. If you want + + from + + can create an issue to create a new format_ +
++ এখানে যেহেতু আমরা + + json + + ফাইল নিয়ে কাজ করছি তাই অনেকেই হয়তো + + json + + এর সাথে পরিচিত নাও থাকতে পারেন। সে উদ্দেশ্যে আমরা একটা + + + draft + + + ডিরেক্টরিও রেখেছি + + data + + ডিরেক্টরির ভিতরে। আপনি যদি + + json + + ফাইল দিয়ে কনট্রিবিউট করতে নাও পারেন তাহলে আপনার যেকোনো ফরম্যাটে তৈরী করা চিটশিট পরিষ্কার টাইটেলসহ ড্রাফট ফোল্ডারে পুশ করে দিতে পারবেন। আবার একই সাথে আপনি চাইলে ড্রাফট ফোল্ডার থেকে কোনো ড্রাফট নিয়ে সেটাও + + json + + আকারে কনভার্ট করে আসল + + data + + ডিরেক্টরির ভিতরে পুশ করে দিতে পারেন। তো এভাবেই আপনি চাইলে + + ৪ রকমভাবে + + এই প্রজেক্টে কনট্রিবিউট করতে পারবেনঃ +
++ + (How to Contribute) + +
++ Since we are dealing with + + json + + files here, many may not be familiar with + + json + + . For that purpose we also put a + + + draft + + + directory inside the + + data + + directory. If you can’t contribute with a + + json + + file, you can push your cheatsheet in any format to the draft folder with a clean title. At the same time, if you want, you can take a draft from the draft folder and convert it to + + json + + format and push it inside the original + + data + + directory. So this is how you can contribute to this project in + + 4 ways + + if you want: +
++ অন্যের ড্রাফটগুলোকে আমাদের কাঙ্ক্ষিত + + json + + ফরম্যাটে কনভার্ট করে পুশ করতে পারবেন +
++ এখানে প্রধান কয়েকজন কনট্রিবিউটর থাকবে যারা একটা চিটশিটকে আসল ওয়েবসাইটে দেখানোর কাজটা করবে। সেক্ষেত্রে যারা আমাদের কনট্রিবিউটরদের তালিকায় বেশী কনট্রিবিউট করবে অথবা যেকেউ যদি যথেষ্ট দায়িত্ববান মনে হয় তাহলে তাকে পুরো সংগঠনের অ্যাডমিনদের তালিকায় যুক্ত করা হবে। + + English + +
++ There will be a few main contributors who will do the work of showing a cheatsheet on the original website. In that case those who will contribute more in our list of contributors or if anyone seems responsible enough then he will be added to the list of admins of the whole organization. +
++ + Contributing Guidelines📝 + +
++ You are welcome to contribute to this project. +To start contributing, follow the below guidelines: +
++ আপনি যদি কোন টপিকের উপর চিটশিট করবেন সেটা বুঝতে না পারেন, তাহলে আমাদের + + প্রোজেক্ট বোর্ড + + থেকে আইডিয়া নিতে পারবেন। + + এখানে + + মূলত আমরা গুরুত্বপূর্ণ যে সকল চিটশিটগুলো সবার কাজে আসবে সেগুলোর তালিকা আপডেটেড রাখছি। +
++ If you don’t know what topic to cheatsheet on, you can get ideas from our + + project board + + . + + Here + + Basically we keep updated list of important cheatsheets that will be useful for everyone. +
++ হ্যাঁ, আমাদের এখানে লক্ষ্যই হচ্ছে বাংলাতে একটা বড় চিটশিটের ভান্ডার গড়ে তোলা। + + এটা + + সম্পূর্ণ স্বাধীন এবং ওপেন সোর্স গিটহাব সংগঠন। এটি কারো ব্যক্তিমালিকানাধীন নয়। আমি আপনি সবাই মিলেই আমাদের লক্ষ্যে পৌছাবো। +
++ Yes, our aim here is to build a big cheat sheet repository in Bengal. + + It + + is a completely independent and open source GitHub organization. +
++ আমাদের একটি ফেসবুক গ্রুপ রয়েছে। + + এই লিঙ্কে + + ক্লিক করে সেখানে যুক্ত হতে পারবেন। আপনার কোনো ব্যাপারে সহায়তা প্রয়োজন হলে, কোনো রকম সাজেশন থাকলে অথবা যেকোনো ব্যাপারে খোলামেলাভাবে সেখানে আমাদের সবার সাথে আলোচনা করতে পারবেন। +
++ We have a Facebook group. You can join there by clicking + + this link + + . If you need any help, have any suggestion or discuss anything openly with all of us there. +
++ আপনিও যদি + + ডেভ সংকেত + + কে কোনোভাবে স্পন্সর করতে চান, অথবা + + ডেভ সংকেত + + এর হয়ে কোনো ইভেন্টের আয়োজন করতে চান তাহলে অবশ্যই আমাদের জানাবেন। +
++ If you also want to sponsor + + Dev Signal + + in any way, or organize an event for + + Dev Signal + + please let us know. +
+ ++ In the face of an alarming and accelerating loss of biodiversity, it +is essential to safeguard the places that contribute significantly to +the persistence of species around the world. The IUCN Species Survival +and World Protected Areas Commissions recently led an effort to develop +a + + standard + + for identifying the places with the highest conservation value, the Key +Biodiversity Areas (KBAs; IUCN, 2016). In the process of identifying +KBAs, it is recommended to first conduct a comprehensive scoping +analysis (KBA Standards and Appeals Committee, 2020). However, this +analysis requires a great effort to obtain, compile and analyze spatial +data for as many taxonomic groups as possible. The + + Locating KBAs +workflow + + helps to streamline the scoping analysis by using the R +programming language and leveraging GBIF data. The workflow code +accesses the occurrence data of species present in a user-defined area +and determines all those that could trigger the criteria of the KBA +standard. Subsequently, it helps users identifying the places where the +potential trigger species occur in significant numbers. In this way, the +workflow enables users to efficiently and transparently identify the +sites where it is most appropriate to focus efforts on gathering +information on mature individuals, engaging stakeholders, and applying +the standard’s criteria. +
+ ++ + On this website you can find an overview of the workflow and +the requirements and steps necessary to run the code. Click on the +Notebook tab to see the workflow code and interact with the main +results, such as tables and maps. Click on the GitHub repository tab to +go to the repository where the script is stored. You can clone the +script on your computer to modify and run it locally (see section + + How to run the workflow code in your local +computer + + ). + +
++ To get started, you need to confirm that you have the following +requirements: +
++ Have R and RStudio installed on your computer. If you do not have +them, please download and install + + R + + first and continue downloading +and installing + + RStudio + + . +
++ Have a GitHub account and GitHub Desktop installed on your +computer. You can create a free GitHub account + + here + + and download GitHub Desktop + + here + + . +
++ Have a GBIF account. If you do not have one yet, create it using +this + + link + + . +
++ Request an API token + + here + + to access the IUCN Red +List information. +
++ Once you have met all the above requirements, open RStudio and make +sure you have the following packages installed; otherwise use the +following code to install them: +
+install.packages(c("tidyverse", "Hmisc", "rgbif", "wellknown", "rredlist", "ggplot2", "ggspatial", "RCurl", “xml2”, “rvest”, “sf”, "sp", “DT”, “leaflet”, “knitr”, "foreach", "doSNOW", "parallel", "stringi", "CoordinateCleaner", "countrycode", "taxadb"))
+ + The workflow code presented in the notebook tab, accessible through +the GitHub repository, is designed to facilitate and streamline the +scoping analysis for KBAs identification by leveraging the free and open +access data of GBIF. Before exploring and running the workflow code, I +encourage users to familiarize themselves with the + + Global +Standard for the Identification of Key Biodiversity Areas + + (IUCN, +2016) and the + + Guidelines +for using this standard + + (KBA Standards and Appeals Committee, +2020). +
++ In this workflow, we will focus solely on the following species-based +criteria: +
++ The workflow is divided into + + three main steps + + . +First, the user downloads and cleans GBIF occurrence data. The code then +retrieves information for each species present in the dataset, accessing +the IUCN Red List and Bird Data Zone portals and the tools provided in +the following KBA + + webpage + + . +With this information, the code + + selects the species present in +the study area that have the potential to trigger the aforementioned KBA +criteria. + + The second step is to apply two functions that allow +the user to map the location of the potential trigger species and + + identify the sites where they occur in significant +numbers. + + In the case of bird species, it is also possible to +locate the places where they meet the thresholds of the KBA criteria +considered. The last step of the workflow is to + + obtain the +citations + + of the different sources of information consulted in +the previous steps. +
++ The scheme below represents the overall workflow +
++ In the Notebook tab you will find the explanation of all the steps +needed to complete the workflow and their associated code. Additionally, +you will be able to interact with the most important results of the +workflow, such as the table of potential trigger species and the maps of +the sites where they occur in significant numbers. +
++ The following is a preview of the table to identify potential trigger +species under KBA criteria (globally threatened species, restricted +range species, species that form seasonal congregations). For bird +species, it is also possible to obtain the global number of mature +individuals and calculate the criteria thresholds. +
++ The script also contains a function that will help the user +identifying the sites where potential trigger species have large counts +or where there are multiple records of potential trigger species. +
++ A second function, available only for bird species, creates an +interactive map showing the location of records that meet the threshold +of individuals for each criterion evaluated. +
++ Sign in into your GitHub account + + here + + . +
++ To copy the repository to your profile, go to the search tab at +the top of the screen and type +[URL Redacted] +
++ +
++ Click on the repository +
++ Click the fork button in the right corner. +
++ +
++ If you want to open or modify the files and run the code in your +local computer, open the GitHub Desktop software. +
++ If this is your first time opening the software, it will ask you +to sign into your GitHub account. Once done, select the Locating KBAs +repository and click the clone button at the bottom. +
++ +
++ +
++ Select clone +
++ After GitHub desktop finishes cloning the files to your local +computer, select show in explorer to open the folder where the files +were saved. +
++ +
++ +
++ Linero D (2021) Locating KBAs: An automated workflow for identifying +potential Key Biodiversity Areas. + + [URL Redacted] + +
++ Gueta, T., Carmel, Y (2016). Quantifying the value of user-level +data cleaning for big data: A case study using mammal distribution +models. Ecological Informatics, 34, 139-145. + + https://doi.org/10.1016/j.ecoinf.2016.06.001 + +
++ IUCN (2016). A Global Standard for the Identification of Key +Biodiversity Areas, Version 1.0. +
++ KBA Standards and Appeals Committee (2020). Guidelines for using +A Global Standard for the Identification of Key Biodiversity Areas. +
++ +
++++ Preprocessing markdown documents with Mustache +
+
+ + Get Started + + + GitHub + +
++ + Version 1.0.5 + +
+ +
+ A
+
+ Docsify
+
+ plugin that allow preprocessing markdown documents with
+
+ Mustache
+
+ template engine. You can substitute variables in markdown documents using mustache syntax
+
+ {{variable}}
+
+ and
+
+ {{variable.property}}
+
+ . Variables can be load from various sources, including front matter section of markdown documents, external JSON or XML files and Docsify configuration.
+
+ Add following script tag to your
+
+ index.html
+
+ after docsify.
+
<script src="//cdn.jsdelivr.net/npm/docsify-mustache"></script>
+ + Optionally add docsify-front-matter plugin to access markdown front matter variables. +
+<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/front-matter.min.js"></script>
+
+ You can load Mustache variables with
+
+ data
+
+ option. The value can be a
+
+ string
+
+ ,
+
+ object
+
+ or
+
+ array
+
+ .
+
+ + string + + value interpreted as data file URL (relative or absolute). Both JSON and XML data file formats are supported. +
++ + object + + properties will be mapped to Mustache variables using property name as variable name +
++ + array + + may be use to specify multiple string or object values as data sources +
++ Example: +
+window.$docsify = {
+ mustache: {
+ data: [
+ 'doc/vars.json',
+ 'doc/pom.xml',
+ {
+ question: 'What is your favorite number?'
+ }
+ ]
+ }
+}
+ + + + Note +
++ There is no way to access XML attributes, tag names used for hierarchy and for referring element’s inner text. +
+
+ The plugin loads
+
+ package.json
+
+ and make it available for Mustache as
+
+ package
+
+ variable. You can disable this feature setting
+
+ noPackage
+
+ option to
+
+ true
+
+ value:
+
window.$docsify = {
+ mustache: {
+ noPackage : true
+ }
+}
+ + If + + docsify-front-matter + + plugin loaded and actual markdown file has front matter data then the front matter keys will be mapped to Mustache variables with same name. The front matter data has the highest priority if variables exists with same name in multiple data sources. +
++ Example: +
+---
+answer: 42
+question: What is your favorite number? ---
+
+**Est o te viri tum mihi**
+
+Lorem markdownum nunc attenuarat pocula **{{question}}** atria ante est.
+ + + Est o te viri tum mihi + +
++ Lorem markdownum nunc attenuarat pocula + + What is your favorite number? + + atria ante est. +Erat lacte neve vulnus audistis infelix sidera tuae + + 42 + + . +
+
+ The plugin loads
+
+ package.json
+
+ and make it available for Mustache as
+
+ package
+
+ variable.
+
**Temerasse rerum taurus**
+
+Tum me modo leones verbis: meum mons Pirithoi conubia! Studio color sed erit
+ducitur leto contrahitur dolor est quodvis Aeolidis sororum **{{package.version}}**.
+ + + Temerasse rerum taurus + +
++ Tum me modo leones verbis: meum mons Pirithoi conubia! Studio color sed erit +ducitur leto contrahitur dolor est quodvis Aeolidis sororum + + 1.0.5 + + . +Rubentia sumit + + docsify-mustache + + . +
++ + package.json + +
++ Data can be loaded from relative or absolute URL. Both JSON and XML data file formats are supported. +
+window.$docsify = {
+ mustache: {
+ data: ['doc/vars.json','data/pom.xml']
+ }
+}
+ **Aditus terras ignoto longa ad captis colunt**
+
+Inde pondera silva tantum glaebas tenetis ab **{{favorite.fruit}}**. Cunctas est orbem profatu
+erigitur maximus: in **{{project.version}}** figuris canes.
+ + + Aditus terras ignoto longa ad captis colunt + +
++ Inde pondera silva tantum glaebas tenetis ab + + raspberry + + . Cunctas est orbem profatu +erigitur maximus: in + + 1.2.3 + + figuris canes. Oete iniaque stta in + + foo + + ego favent Penei. Lacertos tenebat veteres + + brown + + . +
+{
+ "favorite": {
+ "fruit": "raspberry",
+ "color": "brown"
+ }
+}
+ <project>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>com.example.app</groupId>
+ <artifactId>foo</artifactId>
+ <version>1.2.3</version>
+</project>
+ + Data can be loaded from Docsify’s JavaScript configuration. +
+window.$docsify = {
+ mustache: {
+ data: {
+ author: {
+ name: 'John Smith',
+ email: 'john.smith@example.com'
+ }
+ }
+ }
+}
+ **Viri coniuge resistit mariti**
+
+Aderat voluisti excipit caede meus celanda usus, **{{author.name}}**. Qua ad Pagasaea
+perenni pleno exprobravit dextra.
+ + + Viri coniuge resistit mariti + +
++ Aderat voluisti excipit caede meus celanda usus, + + John Smith + + . Qua ad Pagasaea +perenni pleno exprobravit dextra. Nec heros rebelles ambiguus, sunt timuere +suis; per fuerat, dixit muro + + + john.smith@example.com + + + undique, tanto satos. +
++ Mustache template data is actually merged from multiple different sources before the template is rendered. The order of priority for sources of data is (from highest priority to lowest): +
+
+ data
+
+ configuration option contains multiple source (as an array) then the latest data source will have the highest priority.
+ + This project is licensed under the MIT License. See the + + LICENSE + + for details. +
++ + Spelling Bee Assistant + + is an add-on for + + Spelling + Bee + + , the New York Times’ popular word puzzle. It’s packed with + + features + + that will boost your playing experience. +
++ Follow your progress, see what lies ahead of you and if you want to, get a hint or two. + Eventually, when you run out of ideas, reveal today’s answers - no more waiting until the next + day! +
++ Spelling Bee Assistant is a great improvement for this excellent game and it won’t spoil the fun. Promised! +
++ By installing this software you agree to the terms of the + + GNU General Public License v3.0 + + . +
++ The browser extension loads the assistant along with the + + Spelling + Bee + + website. It is available for + + Chrome + + and + + Edge + + . +
++ Alternatively, you can launch the assistant via a + + bookmarklet + + . + To set it up, simply drag the amber badge to your browser's bookmarks bar. +
++ All tools in the main panel work in the same fashion; they show you how + many items you’ve found so far ( + + ✓ + + ), how many are still in the pot ( + + ? + + ) + and the sum thereof ( + + ∑ + + ). +
++ Greyed out lines indicate that all terms in a row have been found. +
++ + Show Assistant + + lets you show or hide the main panel. + + Score + + , + + Letter count + + , + + First letter + + , + + First two + letters + + and + + Pangrams + + do the same for each section. +
++ The + + + Progress Bar + + + is a visual indicator of your all-over progress. +
++ The + + + Grid + + + is a matrix grouping the terms by first letter and word length. +
++ + + Spill the beans + + + validates your answer while you type. +
++ + + Dark Mode + + + and + + + Dark Mode Colors + + + provide a configurable dark color scheme. +
++ + + Your Progress + + + explains in detail what you already achieved. +
++ + + Community + + + shows how to connect to like-minded + + hiveminds + + . +
++ + + Today’s Answers + + + should be the last resort. +
++ Use the + + + Buy me a coffee + + + link if you want to show some appreciation... +
++ The + + Progress Bar + + displays your advancement based on your points so far. You can click on it + to reveal the more detailed + + Your Progress + + screen. +
++ With every letter you type, the + + Spill the beans + + emoji reveals whether you’re on the right track or + barking up the wrong tree. +
++ Spelling Bee Assistant requires a modern web browser in a recent version. Below is a chart with Browser/OS combinations that are known to be working: +
++ Browser + | ++ Windows + | ++ MacOS + | ++ Ubuntu + | ++ Android + | ++ iOS + | +
---|---|---|---|---|---|
+ Blink ¹ + + | + + ² + | ++ | ++ | ++ | ++ ² + | ++ ? + | +
+ WebKit ³ + + | + + ⁴ + | ++ n/a + | ++ ³ + | ++ ⁴ + | ++ n/a + | ++ ³ + | +
+ To install it on mobile devices, follow the instructions below. +
++ + Thanks to + + [Name Redacted] + + for contributing the iOS instructions and hosting the shortcut. + +
++ The extension will now be active whenever you visit the Spelling Bee game on Kiwi, enhancing your gameplay + experience. +
++ To keep it handy, pin + + SB Assistant + + to the top of your share sheet by tapping + + Edit Actions… + + and selecting + the green plus next to the + + SB Assistant + + action. +
++ I try to keep Spelling Bee Assistant as subtle and unobstrusive as possible. Judging from user feedback as well my own experience, this concept works out just fine. +
++ The challenge stays the same and so does the fun. But now you have a set of little helpers at hand when you’re stuck in a corner. +
++ Bookmarklets are small pieces of code that can enhance the functionality of a website. They reside, + just + like regular bookmarks, in your browser’s bookmark menu. +
++ You can report bugs or request features + + at GitHub + + . Keep in mind that this + is a + fun weekend project and I don’t want it to be a burden. I might work on issues from time to time, + but I can’t make any promises. +
++ You can also find me at + + [Link Redacted] + + where I regularly post the latest updates under the handle + + spellingBeeAssistant + + . +
++ No, no affiliation whatsover. They know that Spelling Bee Assistant exists and rumor has it that some of them are even users... +
++ This website does not employ any technology to collect personally identifiable information about its visitors. + Both the site and the associated bookmarklet are hosted on GitHub Pages. For details on the data GitHub Pages + collects, please consult + + their privacy policy. + + Regardless, I have no access to the data collected by GitHub. +
++ Regarding the browser extension associated with this site: When installing the extension from a browser + add-on store, you might see a message stating, + + "This extension can read and change your data + on www.nytimes.com [...]" + + , or something similar. Such messages can understandably lead to + privacy concerns. However, the extension is designed solely to read data from the Spelling Bee game; + it does not access, modify, or submit any personal information. +
++ Although most + + add-on stores + + offer download statistics, these are typically + aggregated by country and do not include any personally identifiable information. +
++ + + +
+
+
+ Hainanu Application Wiki Since 2022.6 +
++ All Rights Reserved. +
++ + GitHub + + + Get Started + +
++ 👋 这里是海南大学飞跃手册,希望持续收录海南大学各院系同学不同出路的经验分享,愿尽力为海大学子每一年的求学求职道路提供指导。祝大家学业顺利,学有所成 ୧(๑•̀⌄•́๑)૭✧ 。 +
++ 海南大学课程攻略表-期末大学牲收容站 + + + + 传送门 + + + +
++ 海南大学课程资源及攻略 + + + + 传送门 + + + +
+ ++ 全部文章列表: + + 个人总结 + +
++ 感谢学弟学妹阅读海南大学飞跃手册。 +
++ 这是由我们在 + + 学习、申请、升学和就业 + + 中遇到一系列疑问和体悟总结出的一份电子书。我们邀请了海南大学每年各个院系和专业的毕业生们,在书中分享他们在 + + 学习、申请、升学和就业路上踩过的坑和填过的土 + + ,希望你能常回来查查看看,总会有不少收获。 +
++ 该篇飞跃手册共有四部分,分别为" + + 写在前面 + + , + + 初入海大 + + , + + 个人总结 + + 和 + + 国内外交流 + + ",力求为 “ + + 如何在海南大学为申请国内、海外高校和入职优秀企业做出更全面的准备 + + “ 这一问题作出解答。 +
++ 需要特别指出的是,飞跃手册具有一定的 + + 时效性 + + ,比如一些热门专业每年的升学、就业形式都会发生极大变化,所以参考往年飞跃手册时请注意。 +
++ 在此非常感谢来自海南大学各个院系提供原创申请经验分享的同学们。每一位为飞跃手册写下文字的同学都怀着极高的热诚和真诚的态度,为学弟学妹留下这笔宝贵的财富。 +
++ 希望这样的传统能够一直流传下去,去帮助未来更多海大学子实现飞跃梦想。 +
++ 飞跃手册欢迎 + + 所有的毕业生 + + 分享你们的故事,不限出路、不限水平。 +
++ © 2022 - 2024 海南大学飞跃手册编委会. + + Powered by docsify + + . +
++ 85 + | + + : + ++ 11 + | + + : + ++ 58 + | + + : + ++ 02 + | +
+ We are team 1418 Vae Victis, a + + FIRST Robotics Competition (FRC) + + team from Meridian High School in Falls Church, VA. + + here + + . +
++ If you'd like to help us with fundraising, please visit + + this page + + . +
++ To see our competition schedule for this year, visit + + this page + + . +
++ Gas Gauge is designed to focus on gas-related vulnerabilities of Solidity Smart Contracts. This tool contains three major algorithms. +
++ You can view our source code, benchmark, and experimental results as well as our case study on our + + Github repository. + +
+$ sudo apt-get update
+$ sudo apt-get install -y software-properties-common
+$ sudo add-apt-repository -y ppa:ethereum/ethereum
+$ sudo apt-get update
+$ sudo apt-get install -y solc
+$ sudo apt-get install libssl-dev
+$ sudo apt-get install -y python3-pip=9.0.1-2 python3-dev
+$ sudo ln -s /usr/bin/python3 /usr/local/bin/python
+$ sudo apt-get install -y pandoc
+$ sudo apt-get install -y git
+$ sudo apt-get install nodejs
+$ sudo apt-get install npm
+$ sudo apt install python-pip
+$ sudo apt install python3-pip
+$ pip install numpy
+$ pip3 install numpy
+
+
+ + (Recommneded Method) Clone our repository and navigate to the folder “Slither” +
+$ sudo python3 setup.py install
+
+ + Method 2: +
+$ pip3 install slither-analyzer
+
+ $ npm install -g truffle
+$ npm install -g ganache-cli
+
+ + If the installation fails, it is most likely because Node.js is using an older version. Please update it to the newest version and try installing Truffle and Ganache again. +
+$ pip3 install solc-select
+
+ + Then install all the solc versions you need for your contracts (refer to the solc-select website) +For exaplme to install version 0.8.1: +
+$ solc-select install 0.8.1
+
+ $ python3 run.py
+
+ + +
++ 硅谷脱口秀是硅谷地区一群中文喜剧爱好者于2019年创立的喜剧俱乐部,表演形式以脱口秀(单口喜剧)为主。 +
++ 自成立至今,我们一直致力于丰富硅谷的中文娱乐生活,成就喜剧爱好者的演艺梦想。我们希望通过敏锐观察生活,并用段子的方式进行演绎,来自由表达我们对环境和社会的思考。期待大家和我们一起享受幽默,宣泄情绪,笑面生活! +
++ 我们举办的演出包括: +
++ +
++ 欢迎在线上关注我们! +
+
+ custom.py
+
+ + 2023-05-13 +
++ 存储压缩 +
++ 数据压缩存在于各种场景,视频传输(VR),视频压缩编码–>VR 球形数据的压缩,模型压缩(剪枝) +还存在于各种中间件中, +
++ 数据量增加,解决方式通过扩容,或者通过压缩数据,扩容的成本高于压缩, +
++ 高频的字母使用短的信号来编码<... +
++ hive的执行延迟比较高,因此常用于数据分析,对实时性要求不高的场景 +hive优势在于处理大数据,对于处理小数据没有优势,因为hive的执行延迟比较高, +hive支持用户自定义函数,用户可以根据自己的需求来实现自己的函数 +
++ hive的HQL表达能力有限... +
++ Java中提供的性能工具,可以分为4类:count,event,instrument,sampling +
++ JFR +
++ Async profiler +
++ alibaba 开源工具:[URL Redacted] +Alibaba Dragonwell +
++ Arthas +
++ 搜索客 [URL Redacted] +
++ [URL Redacted] +
++ ASM是一个Java字节码操纵框架,能用来动态生成类或者增强既有类的功能 +ASM可以直接产生二进制class文件,也可以在类被加载入Java虚拟机之前动态改变类的行为,Java class被存储在严格格式定义的.class文件里,这些类文件拥有足够的元数据来解析类中的所有元素: +类名称,方法,属性以及Java字节码(指令),ASM从... +
++ # +参考: + + javassist解析 + +
++ +
++ O grupo investiga o conceito de dado de pesquisa e os processos que envolvem sua transformação em informação e conhecimento científico. Estuda os cenários que dão origem à geração, uso e compartilhamento intensivos de dados: eScience, Ciência Aberta, simulação, big data científico versus cauda longa da ciência e que possibilitam o seu reuso para fins de geração de novos conhecimentos, Estuda ainda tecnologias e ferramentas que possibilitam a gestão, a organização, a curadoria, a representação, a encontrabilidade, o acesso, a interoperabilidae e o reuso de dados e informações técnicos-científicas. +
++ Situação do grupo: + | ++ Certificado + | +
---|---|
+ Ano de formação: + | ++ 2017 + | +
+ Data da Situação: + | ++ 11/12/2017 13:59 + | +
+ Data do último envio: + | ++ 23/05/2022 17:50 + | +
+ Distributed Filesystem + | +||
---|---|---|
+ Apache HDFS + | ++ The Hadoop Distributed File System (HDFS) offers a way to store large files across + multiple machines. Hadoop and HDFS was derived from Google File System (GFS) paper. + | +
+
+ 1. hadoop.apache.org
+
+ + + 2. Google FileSystem - GFS Paper + + + + 3. Cloudera Why HDFS + + + + 4. Hortonworks Why HDFS + + |
+
+ Red Hat GlusterFS + | ++ GlusterFS is a scale-out network-attached storage file system. GlusterFS was + developed originally by Gluster, Inc., then by Red Hat, Inc., after their + purchase of Gluster in 2011. + | +
+
+ 1. www.gluster.org
+
+ + + 2. Red Hat Hadoop Plugin + + |
+
+ Quantcast File System QFS + | +
+ QFS is an open-source distributed file system software package for
+ large-scale MapReduce or other batch-processing workloads. It was
+ designed as an alternative to Apache Hadoop’s HDFS, intended to deliver
+ better performance and cost-efficiency for large-scale processing clusters.
+ It is written in C++ and has fixed-footprint memory management. QFS uses
+ Reed-Solomon error correction as method for assuring reliable access to data.
+ + Reed–Solomon coding is very widely used in mass storage systems to correct the burst + errors associated with media defects. Rather than storing three full versions of + each file like HDFS, resulting in the need for three times more storage, QFS + only needs 1.5x the raw capacity because it stripes data across nine different disk drives. + |
+
+
+ 1. QFS site
+
+ + + 2. GitHub QFS + + + + 3. HADOOP-8885 + + |
+
+ ICFP Contest 2021 took place 12:00 PM Friday 9 July - 12:00 PM Monday 12 July UTC. +
+ ++ You can now watch the contest presentation video right here or + + on YouTube + + . +
++ We have announced the winners at the + + ICFP 2021 Conference + + . +
++ The scoreboards for the + + full division + + and + + lightning division + + have been updated + as well with the complete rankings. +
++ We will provide a link to the video recording of the programming contest + report as soon we have it. Congratulations to the winners, and thanks + again to everyone who took part! +
++ We're excited to announce that we have open sourced the code that we used to + put together the contest under the BSD3 license. +
++ You can find the code alongside the source for this website + + in + this repository + + . +
++ We've sent e-mails notifying the winners. The final scoreboard will be + reavealed and the winners will be announced at the ICFP conference on August 23-25, 2021. +
++ The + + final scoreboard for the lightning and the full + division is now available + + . Teams with 0 points are not shown, and the top + 15 teams in both rounds have been randomly shuffled, and their score hidden to + keep some intrigue. We will get in touch with the winners soon. +
++ Some teams have already posted interesting writeups on how they approached + the problem. We started collecting these + + here + + . +
++ Several people have asked what will happen to the + + poses.live + + website now that the contest + is over. Since there is some interest in keeping it around, the organisers + will move this to a smaller instance on a personal server. All data from + the contest will be wiped, and teams will have to re-register on this new + instance if they want to continue trying it out. There will be significant + downtime this week as we move it. +
++ We will also release source code of the portal and judge after the contest + presentation at ICFP 2021. Thanks again to everyone for taking part in this! +
++ The ICFP Contest is over for this year! +
++ We would like to thank all teams for particating, and we hope people had a + lot of fun implementing UIs and solvers for the problem, regardless of how + well they did on the scoreboard. +
++ The + + poses.live + + server will remain up for a + bit more. If you want to qualify for prizes, + + don't forget to upload + your source code on your team profile page + + within the next 12 hours. +
++ The winners of the contest will be announced at the + + 2021 International Conference on + Functional Programming + + , taking place Sun 22 - Fri 27 August. +
++ We added a clarification to the WALLHACK bonus in the + + the specification + + . +
++ We have now extended + + the specification + + with +a last bonus. We have also added new problems, and added bonuses to existing problems. +This is the last modification to the specification that will be made, barring unforeseen errors. +
++ We will freeze the scoreboard on Mon, 12 July at 11:00 UTC. +
++ Participants must submit their source code to be elligible for prizes. This can be done via the team profile page in the portal. +
++ We added a new type of bonus to + + the specification + + . We've also added new problems + and added new bonuses to the existing problems. +
++ We fixed a naming inconsistency in the definition of the GLOBALIST bonus in + + the specification + + . +
++ The Lightning Division (first 24 hours of the contest) has now ended. We + hope everyone had fun so far! +
++ We have now extended + + the specification + + with + + bonuses + + , which allow you gain certain advantages in other problems. +
++ We have also added 10 new problems to + + poses.live + + . +
++ The scoreboard will remain frozen for another half hour, until 12:30 UTC. +
++ We have added 19 new problems to + + poses.live + + . +
++ We would like to remind everyone that the Lightning Division ends in twelve + hours on Sat, 10 July 12:00 (noon) UTC. +
++ To keep things exciting, we will freeze the scoreboard temporarily on + Sat, 10 July from 11:30 to 12:30 UTC. We've also limited the scoreboard to + teams with at least one valid solution. +
++ Additionally, we have updated + + the + specification + + with a new API endpoint to obtain some information about + submitted poses. +
++ Welcome to ICFPC2021! +
++ We have published a first version of + + the specification + + . +
++ Teams can register, submit solutions and view the current scoreboard at + our web portal located at + + poses.live + + . +
++ Good luck, and have fun! +
+
+ ta.jvfblvbi
+
+ Te6XDacTWXn
+
+ vbtib.lafvj
+
+ KE7ZFnZQ59D
+
+ We strongly recommend participants this year to wear waterproof clothing and + leave their phone in a locker. +
++ An atom feed is + + now available for contest updates + + . +
++ We have set up a Discord server for participants to communicate and + socialise during the contest. + + You can join the server here + + . + Please note that we use the + + Berlin Code of Conduct + + . + This website remains the single source of truth for the contest and all + announcements will be posted here. +
+
+ InfValues (short for Infinite Values), is based on
+
+ SapplyValues
+
+ , which is in turn based on
+
+ 8values
+
+ . You will be presented by a statement, and then you will answer with your opinion on the statement, from
+
+ Strongly Agree
+
+ to
+
+ Strongly Disagree
+
+ , with each answer slightly affecting your scores. At the end of the quiz, your answers will be displayed on a political compass.
+
+
+
+ There are
+
+
+
+ 185
+
+
+
+ questions in the test.
+
+ There are currently 45 axes, with 8 values each (Moderate, Regular, Extreme, Off-Compass). This means that there are currently 360 values. +
++ u01aua1 +
++ sebimoe +
++ The 8values, 9Axes, and SapplyValues project licenses grant the rights to "modify, merge, publish, distribute" the software as long as "The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software." The included notice can be found + + here + + . This project is released under the same license. +
+ + diff --git a/g39.png b/g39.png new file mode 100644 index 0000000000000000000000000000000000000000..413475ec3254579e70b6ad5efca2d53875952425 --- /dev/null +++ b/g39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3af5dc9837f7166635fe907bd19565428c22625669ea6c0bd2943906564f0389 +size 129087 diff --git a/g4.html b/g4.html new file mode 100644 index 0000000000000000000000000000000000000000..5ae19becc26e53d5c9f4786b0fc3d42fc8e7aab9 --- /dev/null +++ b/g4.html @@ -0,0 +1,460 @@ + + + + + + + + ++ 由于GFW墙的持续升级、一轮一轮封锁,以及iOS系统自身的封闭性,VPN协议不能广泛支持,目前在iPhone或iPad上使用VPN非常不方便,我自己也用iPhone,我的经验是使用苹果手机fan qiang不如开放的安卓系统方便,连接所需时间和网络速度相对都差一些。而且随着防火长城的增高, + + 适合在中国大陆苹果手机的正规VPN已经没有几款了 + + ,比如前几年还不错的VyprVPN、NordVPN、PureVPN和iVacy,我都付费购买并在iPhone上安装了,但是最近2年越来越难用,NordVPN要连新出的线路,不过在iPhone APP里面经常连不上,不过可以选择手动设置翻墙,就是比较麻烦;VyprVPN、PureVPN和iVacy就不用说了,APP客户端直连大多数时候无法连接,即使更新了APP遇到新一轮封锁也坚持不了多久。 + + 不知道为啥网上还有一些人说这些好用,我反正不推荐大家在iOS设备上使用上面这几款。 + +
++++ 大家选择VPN的时候, + + 最好选创立时间超过3年以上的大牌VPN + + ,因为最近几年新出道的VPN要么因为名气不大没市场、要么坑一笔钱就跑,跑路的特别多,退钱就别想了。特别是国产的翻墙软件,不仅安全性没法保证,由于行业的混乱和政策风险,趁着大封锁的时候跑路,之后换马甲再开张,成本和风险都更小。至于国外的大牌VPN,主要用户在国外,都比较看重品牌,合法且有利润支撑,至少不会跑路,至于能不能在国内使用,还要仔细测试和辨别,别小看了墙的能力。 +
+
+ +
++ + 如果你想直接选择一款VPN能顺利翻墙,我建议你参考以下两款: + +
++++
+- +
++ + ExpressVPN(活动链接) + + ,在iPhone上翻墙使用体验最好,但访问官网需梯子。也许你不是第一次听说它,在我使用和测试过的VPN产品中网络速度是最快的,也是我最喜欢的VPN产品,但在国内 + + 访问ExpressVPN的官网 + + 需要梯子,客户端能正常使用。设备支持最全面,国内外口碑都很好,已经运营了16年。在安全性方面,也是行业顶级的“军事级别”的加密算法,保护用户的上网数据的安全。虽然它不能称得上100%完美(由于GFW的封锁,翻墙软件在国内不可能100%完美),但应对封锁的反应最快,在中国大陆苹果手机上使用能保障每年95%左右(我的使用体验)的全年可用率。如果遇到敏感时期,防火长城升级,针对中国大陆的优化服务器被屏蔽,中国用户也可以改为“L2TP – IPsec”或“IKEV-2”协议,使用除推荐节点之外的其它服务器线路,你会发现很多节点依然可用,“IKEV-2”和“L2TP–IPsec”协议的节点可以作为敏感时期的备用节点。 + + 在防火长城升级后的2-3个工作日后,ExpressVPN会陆续推出更新版本,iPhone APP版本直接进入苹果商店一键更新即可;其他设备点击客户端下方的链接进入镜像官网(国内能访问),下载并更新客户端后就能恢复正常使用了 + + 。 +
+- +
++ + StrongVPN + + ,创立于2005年的老牌VPN,属于美国数字科技巨头Ziff Davis(之前叫J2 Global)旗下的产品,我已经使用了2年多,官方的精简版客户端在Windows、Mac和安卓手机使用体验不错,长期的可连接率很高,速度也还行,在翻墙VPN产品中性价比不错,但在iOS系统中长期使用的稳定性还是不如 + + ExpressVPN + + 稳。VPN服务器经常会更新,每次登陆客户端也会自动检测服务器更新。 + + 建议在国内的Windows、Mac和安卓手机用户找客服下载StrongVPN特供的精简版V1 App(直接说在中国使用客服就会给你并帮你设置账户),相比官方的标准版客户端,精简版客户端在国内连接更为顺畅 + + 。目前有优惠券可以使用。不过如果是使用梯子访问,由于反欺诈系统的检测有可能导致套餐不能购买,这样的情况需要先断开梯子,改电脑Host文件访问Strong官网域名,因为官网DNS在天朝被定位到不能访问的IP,需要修改本地的DNS才能访问, + + 国内网络访问StrongVPN官网方法 + + 见下文。 +
+
+ 随着GFW近些年持续地封锁,在中国iPhone手机能稳定使用的翻墙软件已经不多了,网上的信息也是鱼龙混杂,另读者辨不清真假,不少用户被坑过不止一次,很多翻墙软件真的最好别去试,比如下个章节我提到的那些。 +
++ 由于国内对于翻墙软件的封锁和iOS生态的封闭,使用苹果手机不能直接从中国区App Store上搜索下载VPN APP,安装外部安装包也不方便。当然解决方法有不少,而且在iPhone上不越狱也能翻墙。在2020年的今天各大国内网站早已将“翻墙”、“VPN”等设置为禁词,在百度或者知乎上你难以搜索到有价值的信息。 +
++ + 目前iOS设备上有效的翻墙方法主要有2种:VPN和SSR机场。 + +
++ VPN适合绝大多数翻墙用户,尤其是技术小白,在用户的需求中也占很大一部分。VPN软件安装方便,一键连接,而且从翻墙安全性角度讲VPN是最好的,因为VPN技术最开始发明出来就是给数据通信加密用的,一般是公司为了传输机密数据或者注重隐私的个人使用,只是通过VPN连接国外的服务器恰好能实现翻墙的功能,VPN更多的是用于企业级别的加密传输,所以考虑到商用原因,在中国不会全面封禁VPN,只会封禁未经许可的服务器IP,这就给拥有IP资源多的大型VPN厂商留下了可操作的空间,比如ExpressVPN的IP资源多到可以和GFW硬刚。墙升级后封一批,就再更新一批,这种猫捉老鼠的游戏已经玩了很多年,而且大型VPN厂商会进行VPN协议的2次开发,比如加入混淆算法,延长被防火长城检测到的时间,如果是自己使用VPS服务器套用标准协议,很快就会被检测到被封; +
++ SSR是专门为翻墙而开发的技术,数据的加密和保护远远比不上VPN,如果涉及到账号登录、看涉及政治的网站等敏感信息,一定要选择你信得过的机场。这里有一句话我要说,小机场都不可信,除非是你自己搭建的,而且小机场存在跑路的风险,每年一到敏感期就有不少小机场降价促销然后跑路,接着换个马甲重新开始坑人。大机场由于用户量大,存在口碑价值,这方面风险小一些。iPhone最好的SSR客户端是ShadowRocket,但是ShadowRocket是付费软件,很可能你的外区ID不能支付,需要去淘宝买礼品券。别的几款和“ShadowRocket”类似的软件都很一般,支持的协议和混淆模式很少,可能折腾半天也折腾不出个所以然来。 +
++ 总之,能用VPN解决的事情就不要使用机场,想方便、安全翻墙只需要正规的VPN就够了,如果使用机场又要确保翻墙的安全性,可以手中备一个机场和VPN,平时使用VPN,机场只作为备用。 +
++ 这款VPN目前还有不少人推荐,iPhone版本的APP大部分时候几乎不能使用,安卓基本只能用OpenVPN,Windows和Mac只能用系统自带进行配置。虽然速度还可以,就是每次需要手动更换服务器,比较麻烦。如果在iPhone上使用,不推荐选择这款。 +
++ iPhone版本的PureVPN大部分时候无法连接,有时显示已连接,但是没有网络,什么网站都打不开。Windows和Mac版本也是这种情况,不管在什么系统设备使用,都不推荐PureVPN。 +
++ 前些天有读者看到有人推荐VyprVPN,问我VyprVPN怎么样,好用吗,iPhone上表现怎样? +
++ 这款VPN目前在中国虽然也能勉强使用,但稳定性比较差,经常掉线,VyprVPN很多节点不能连接,有些节点可用但连不连得上有时要看运气。我个人的使用体验是2年前在中国还是不错的,速度和稳定性都不错,被屏蔽后修复也快,现在给我的感觉是在中国比较难用,速度和稳定性都不如以前了。我近期测试的VyprVPN,经常连接不上,有时连上了速度也是时快时慢,有时容易掉线。 +
++ 同PureVPN一样,因为iVacy和PureVPN是一家的,服务器共用,表现也差不了多少,我之前买的5年套餐,现在放着在吃灰。虽然价格便宜,但是不能使用再便宜也不能买,强烈不推荐。 +
++ Astrill VPN怎么样,在中国好用吗?之前有几个读者问我关于Astrill在国内使用的问题, + + 我不推荐使用Astrill VPN + + !并不是不能翻墙的问题,实际上Astrill VPN目前在国内还是能用的,但是我自己亲自使用测试过之后,对Astrill VPN的安全性和隐私保护产生了怀疑,首先是DNS泄漏的问题,不管我在DNSLeak网站上测试还是使用Astrill VPN自带的DNS检测,都发生了DNS泄漏,导致用户的隐私遭到泄漏;其次,Astrill VPN会记录用户的VPN使用日志,这点是我无法接受的。其价格也是我所测试的翻墙软件中最贵的,即使一年费用每月也得$10美元,所以我试了一个月之后,不再续费Astrill了。 +
++ DNSLeak测试Astrill VPN DNS泄漏: + + + +
++ Astrill VPN自带的DNS检测测试Astrill VPN DNS,同样发生泄漏: + + + +
++ Astrill VPN记录用户日志: + + + +
++ 国产翻墙软件基本上都是私人开设的,意味着你的网络数据掌握在私人手里,安全性很值得怀疑;甚至有不少钓鱼的,因为网上传出的翻墙被请喝茶的案例绝大部分是使用国产翻墙软件的,已经记录在案的就有老王VPN、极光加速器、佛跳墙加速器、IP精灵、蚂蚁加速器、QuickQ、旋风加速器、坚果加速器、快连VPN、神风加速器等,这些不要碰,有安全隐患。 +
++ 中国区的苹果商店已经全部移除各种VPN App了,用国区的Apple ID是搜索不到的。有人说可以自己注册一个外国的Apple ID,不过读者反映步骤对于没有经验的人来说比较麻烦,而且使用过程中会出现解决不了的问题。最简单直接的方法有2种: +
++ 购买VPN后,询问VPN官网的客服索取外区的Apple ID进行下载安装,不过这个Apple ID是很多人共用过的,而且VPN服务商也会经常更换密码保证账号的安全性,所以要更新VPN APP时或长期使用可能存在问题。 +直接上万能的淘宝,搜索“美国 id”,就可以购买国外的Apple ID了,几块钱一个,独享Apple ID账号,可以长期自己使用。 +
++ 注意,Apple ID要去苹果商店App Store里面进行登录,不要在设置里面登录。因为App Store里面只是涉及APP软件的安装和更新,设置里面会涉及到iCloud和其他隐私信息。 +
++++ 确认可用,速度体验在我测试使用的几款中表现最好,iPhone用户首选。 +
+
+ + + +
++ ExpressVPN开始运营于2008年,属于英属维尔京群岛的一家公司,也是全球最大规模的VPN服务商。目前在我所使用和测试过的翻墙VPN中,ExpressVPN在中国大陆网络速度最快,因为和其他VPN品牌使用传统的硬盘服务器不同,ExpressVPN的服务器没有传统硬盘,流量直接在内存进行传输,比传统的硬盘服务器的数据传输速度快得多,而且内存是即时传输,不保留数据,对用户隐私信息的保护也更加安全。技术能力(防被封)出色且能快速应对防火长城的封锁,是最好用的iPhone翻墙VPN软件。因为硬件有较高的成本,使得价格相对较高一些,一分价钱一分货,适合要求较好速度体验的朋友。 +
++ 由于在中国用户众多,ExpressVPN售后服务还不错,应对防火长城的封锁反应很快,一般服务器IP被封2-3个工作日内就可以通过更新客户端解决推荐线路不能连接的问题,在封锁期使用L2TP–IPSec或IKEV-2协议连接其他服务器也能使用,长期可用率能保持在95%左右,在中国使用能达到这样的翻墙软件真没几个能做到。 +
++ 通过上面的优惠链接,进入官方的活动页面,额外获得1个季度的使用时间,在购买ExpressVPN后,你的注册邮箱会收到激活链接,打开链接重置密码即可。 +
++ + + +
++ + 续费年套餐如何获得3个月优惠? + +
++ 如果买了ExpresssVPN之后打算续费买 + + 年套餐 + + 的,通过本页面的优惠链接进入,然后 + + 用新邮箱注册新账号,可以获得三个月的免费赠送 + + ,旧账号续费或直接进官网购买年套餐是没有这个活动的。所以有续费打算的请收藏本页面,续费购买时 + + 首先要断开ExpressVPN,清除浏览器cookie或者换一个浏览器,然后点击本页面的优惠链接进入官网,换一个新的Email进行注册购买就行了 + + 。 +
++ 其他品牌续费获得优惠的操作方法也是一样的,因为一般年套餐的优惠只对新帐号开放,为了避免被系统认为是重复注册,需要清除浏览器cookie记录或者换一个浏览器再进行注册。 +
++ ExpressVPN的服务器分布广泛,在全球94个国家和地区都有VPN服务器,对流量和带宽没有任何限制,能满足经常看视频和下载的用户的需求。ExpressVPN的客户端支持各种常见设备,并且可以配置在路由器上,在电脑(Windows、Mac和Linux)和移动设备(iPhone、iPad、安卓)上都可以安装客户端APP一键连接,支持最多5台设备同时连接使用。 +
++ + + +
++ ExpressVPN官网提供了iOS系统的安装包,可以使用iPhone自带的浏览器Safari登录后台,选择“iPhone,iPad”选项,点击下载安装包,按照要求操作即可,在安装过程中可能出现提示信息,需要手动确认,根据提示点击下一步。安装完成之后,还要确认授权VPN信任。不过这个操作对于新手稍显麻烦,不一定能完美设置好。 +
++ + 推荐使用外区的App Store一键安装和更新 + + ,以后更新客户端APP也方便。可以去淘宝购买国外Apple ID,搜“美国id”这些字眼,几块钱一个,进店问,这种独立账号能长期使用。 +
++ + + +
++ 有一点提示,首次在ExpressVPN App登录的时候,需要输入激活码,在后台一眼就能找到激活码(Activation Code)。 +
++ 在中国大陆使用ExpressVPN,建议选择连接官方推荐的VPN服务器线路,这些服务器线路是ExpressVPN官方针对中国地区做过的混淆服务器优化: +
++ 近期使用中国移动的4G网络连接Singapore–Marina Bay进行测速,测速结果如图: +
++ 连接界面: +
++ + + +
++ 使用SpeedTest进行测速结果: +
++ + + +
++ 在苹果手机iPhone上使用移动4G网络连接Singapore–Marina Bay,测试的下行速度是29.71Mbps,在几乎所有的iPhone翻墙软件中,这个速度水平都算得上很不错的,当然实际的使用过程中,在观看油管高清视频也不会存在卡顿。 +
++ 除了推荐的VPN线路, + + 中国用户也可以在客户端APP的设置中改为“L2TP – IPsec”或“IKEV-2”协议,使用其它的服务器线路 + + ,这些服务器一般没有经过针对中国网络优化,速度和稳定性可能会不如官方推荐的服务器线路,不过在敏感时期仍有部分可连的节点,可以作为敏感时期的备用节点。 +
++ ExpressVPN官网提供了半自动配置脚本的方案,按照这个方案不用登录App Store就能使用ExpressVPN进行翻墙,方法如下。 + + 但我建议还是自己在淘宝上买一个外区的Apple id长期使用,因为后续的更新会更加方便 + + 。 +
++ + 半自动配置脚本 + + :在iPhone或是iPad用iOS系统自带的safari浏览器进入官网登录账号,接着点击My account->Set up ExpressVPN->iPhone,iPad,然后下载配置文件进行安装,然后进入系统设置Settings->VPN,进行连接,输入用户名和密码就可以使用了。 +
++ + + +
++++ 确认可用,但iOS版本的App客户端直连还未恢复,需要联系客服进行手动设置, + + 其他平台的精简版客户端无影响,可用节点较多 + + ,有些节点网络速度不错,有些节点网络速度就一般,要自己测试。性价比不错,支持支付宝Alipay付款,但是官网套餐页面直接提交到支付宝购买可能出现参数错误,需要在提交注册后到邮箱查看账号和密码,登录官网会员后台进行支付,详情可参考: + + 如何购买和使用StrongVPN + + 。 +
+
+ StrongVPN是一家美国的老牌VPN服务商,成立于2005年,在35个国家的59个城市有950+的VPN服务器,拥有近60000个IP地址资源。StrongVPN是属于NetProtect旗下的品牌,同样也是世界排名前列的大牌服务商。 +
++ 有梯子的同学可直接进入 + + StrongVPN官网 + + ,但如果网页出现“We detected that you are using a VPN or Proxy service…”而不能购买(可以顺利下单的话不用管),说明StrongVPN反欺诈系统检测到你是用代理IP访问的(国外存在代理IP盗刷信用卡),需要使用本地网络访问官网,方法如下: +
++ + 国内本地网络访问方法 + + :国内打开Strong官网需要改电脑Host文件,因为Strong官网在中国被墙,其官网DNS在天朝被定位到不能访问的IP,需要修改本地的DNS才能访问。 +
++ 改电脑Host文件方法很简单,国内Windows/Mac用户可以直接下载hosts文件解锁官网,建议在电脑上打开本页面操作,因为手机由于系统版本原因改host操作较麻烦,下面是操作步骤: +
++ 1.下载hosts文件: + + 下载地址 + + (右键另存为)。 +
+
+ 2.Windows用户将下载的hosts文件移动到文件夹
+
+ C:\Windows\System32\drivers\etc
+
+ (Mac的文件夹是
+
+ /etc/hosts
+
+ ),建议备份系统自带的原始hosts文件。如果本地hosts文件之前自己修改过,用记事本打开下载的hosts文件,把里面的信息全部复制到原来的hosts文件中保存就行了。
+
+ 3.完成之后清空浏览器缓存、刷新浏览器,或用另一浏览器访问本页面,然后 + + 点击获取StrongVPN优惠 + + 。 +
++ 完成之后,就可以正常访问官网了。 +
++ StrongVPN从近3年开始也开始重视开发中国市场,售后服务也不错,它也和Express一样,发布了一个在中国使用StrongVPN的并实时更新的帖子, + + 给在中国境内的用户提供最新的使用信息和公告,进入 + + StrongVPN官网 + + 页面点击右上角Help,查找“在中国境内如何下载,安装以及使用StrongVPN” + + 。其实据我了解,这款VPN在过去几年在中国一直可用,只是由于官网被墙,在国人用户群体中略显小众,使用者是以在中国的老外居多。 + + 技术客服很给力(在官网的右下角的“Help”帮助聊天框,选择Technical Support),以前几次大封锁期间,我都是通过技术客服给我的备用翻墙方案,备用的精简客户端V1 App一直很稳定 + + 。 +
++ 这款VPN是我在19年初开始使用,在过去几年的使用时间里,总的来说,全年可用率能达到95%左右,服务器经常会更新,每次登陆客户端都会自动检测服务器更新。 + + 在国内的Windows、Mac和安卓用户可以在官网右下角的在线聊天框(或者用户后台发Tickets给客服)找客服要StrongVPN特供的精简版客户端V1 app + + ,直接说在中国使用,客服会帮你设置账户并给你最新的下载链接,这也是官方为了尽量避免被墙做的备用方案,精简版客户端在中国登录和连接更为顺畅,官方的标准版客户端过程中可能会出现登录和连接问题,要等版本更新。iPhone苹果手机APP版本的登录和使用直接使用App Store下载安装即可,但在敏感时期不一定能连上,要等版本更新,如果无法连接,可以找客服获取备用的服务器地址和手动连接方法,不过 + + 如果只是在iPhone使用VPN,强烈建议选择 + + ExpressVPN + + ,它在iPhone的长期稳定性比其他VPN产品要好太多 + + 。 +
+
+ 如果安装或者连接遇到问题,可以在官网的右下角的“Help”聊天框->Get in touch->Live chat,选择Technical Support(技术支持),咨询客服相关问题,我有几次遇到连接问题都是找技术支持解决的。
+
+ 连接协议建议选择
+
+ OpenVPN UDP/TCP
+
+
+ ,UDP和TCP哪个好用用那个,建议TCP,我使用时感觉TCP相比UDP更容易连上一些。
+
+ B7P64IMWOCXWEYOXIMBX6HN5MHEULFS4V
+
+
+ blog
+
+ 目录,再进入
+
+ html
+
+ 目录,打开
+
+ index.html
+
+ 就可以显示【离线浏览的首页】。
+
+ html
+
+ 目录下所有网页的交叉链接,都已经转换为【相对路径】。因此,你可以把整个
+
+ html
+
+ 目录复制到其它电脑;也可以用压缩软件打包,然后分享给其他人。
+
+ blog\make\chm
+
+ 并双击
+
+ make-chm.wsf
+
+
+ blog/make/chm
+
+ 并运行 Python 脚本
+
+ make-chm.py
+
+ (该脚本同时兼容 Python2 和 Python3)
+
+ blog\make\epub
+
+ 并双击
+
+ make-epub.wsf
+
+
+ blog/make/epub
+
+ 并运行 Python 脚本
+
+ make-epub.py
+
+ (该脚本同时兼容 Python2 和 Python3)
+ + A directory of information for you to acknowledge the amount of data that web services gather from you. +
++ + + Visit JustGetMyData + + + Contribute on GitHub + + + Translate on Crowdin + + + Tweet JWTD + +
++ Can't find what you're looking for? + + Help make JustWhatsTheData better + + . +
++ Low +
++ Medium +
++ Medium +
++ Medium +
++ Medium +
++ Lots +
++ Medium +
++ Low +
++ Low +
++ Medium +
++ Medium +
++ Lots +
++ Medium +
++ Lots +
++ Medium +
++ Ambiguous +
++ Low +
++ Medium +
++ Low +
++ Lots +
++ Medium +
++ Lots +
++ Ambiguous +
++ Medium +
++ Low +
++ Medium +
++ Medium +
++ Medium +
++ Low +
++ Ambiguous +
++ Medium +
++ Medium +
++ Low +
++ Medium +
++ Low +
++ Medium +
++ Low +
++ Low +
++ Medium +
++ Medium +
++ Medium +
++ Medium +
++ Low +
++ Medium +
++ Low +
++ Low +
++ Lots +
++ Low +
++ Medium +
++ Many companies use + + dark pattern + + techniques to make you share more information that you really intended to. JustWhatsTheData makes it easy for the user to know the amount and type of information that web services collect when using them. +
++ Got a site you think should be added? + + Make a Pull Request on GitHub + + . +
++ The links above are colour-coded to indicate the amount of data gathered by those companies. Note: We meassure de quantity of data by taking account of the number of types of data recovered not the actual data itself, also, the ambiguos (black) tag refers to those companies which policies pages are hard to read/understand, independently of the amount of data gathered: +
++ 2017 年 12 月 28 日,一款叫做《跳一跳》的微信小游戏横空出世,为微信小程序跳出一片繁华;2018 年 5 月,研究公司 QuestMobile 发布了微信小游戏《跳一跳》的数据,这款只有 4MB 大小的游戏截至 2018 年 3 月份已经积累了 3.9 亿玩家。除了本身平台用户基数的优势,微信还认为,微信小游戏的加载速度比 HTML5 快 30%也是其成功的原因。 +
+ ++ 如果我说,我们要讨论一个 2016 年被提出、2017 年落地、至今在国内仍可算籍籍无名的概念,你是不是会觉得这没有什么意义? +
+ ++
+ ++ 大音希声,大象无形,大智若愚,大巧若拙,越是“复杂”的东西,其原理越趋向“简单”,大道至简,繁在人心。 +
+ ++|/ +|\ISS Tidbits Posts Answers Install Wiki Contact Donate + + ++------------------------------------------------------------------------------+ +| | +| (Created by [Name Redacted]) | +| | +| | +| | +| |/ | +| |\ISS LINUX | +| | +| A Linux(R) meta-distribution for the x86_64 architecture | +| with a focus on simplicity, sustainability and user freedom. | +| | +| | +| ____ | +| | | | +| .--------------------------------------------------------.| | | +| | | | | +| | "whatsoever a man soweth, that shall he also reap." | | | +| | ._|____|_. | +| '-------------------------------------------------------\\|o_o | | +| |:_/ | | +| // \ \ | +| (| | ) | ++------------------------------------------------------------------------------+ + +* Overview ............................................................... [001] +* Software Distribution Model ............................................ [002] +* The-Official Repositories .............................................. [003] +* Package System ......................................................... [004] +* Package Manager ........................................................ [005] +* Further Reading ........................................................ [006] + + +[001] Overview +________________________________________________________________________________ + +Kiss Linux™ is a meta-distribution for the x86_64 architecture with a focus on +simplicity, sustainability and user freedom. The project was created by +[Name Redacted] who also acts as its sole developer and BDFL [0]. + +The distribution is designed to be maintainable by a single person and to this +end has no infrastructure, backend or monetary running costs. Further, all +installations of KISS contain everything needed to continue its development. + +The user is provided with three things. + +1. The Official Repositories - An extensible base including a fully X11-less + Wayland environment, modern web browser, media player and everything needed + for this system to rebuild (and update) itself (in under 120 packages). + +2. The Package Management System - A pleasant to work with and concise + package format powered by a small, portable and self-contained package + manager (written in POSIX shell). + +3. The Freedom To Go It Alone - Users can choose to maintain their system + themselves thus freeing them from all external influence. The system then + belongs to the user and they become totally self-reliant. + + +[002] Software Distribution Model +________________________________________________________________________________ + +The distribution is "rolling release" [1] (install once, update perpetually) +with the compilation process taking place on the user's machine. Updates to the +distribution merely contain instructions for how each package is built. + +This model gives the user control over the compilation process while also +removing the need for the distribution to have the necessary infrastructure +to churn out and distribute binaries on a daily basis. + + +[003] The Official Repositories +________________________________________________________________________________ + +The problem with monolithic repositories is that they have no clear end. They +have infinite growth possibility, very broad scope and rely on volunteer effort +to keep everything fresh. They become harder to maintain over time and unless +their growth is checked, will eventually become unsustainable. + +Kiss Linux's repositories are instead designed to be small and understandable. +Instead of attempting to package the world they act as an extensible base which +users can build upon to suit their needs. + +To best illustrate, here is the entire thing (121 components) (24/09/2021). + +baseinit baselayout binutils bison bkeymaps busybox curl flex gcc git grub kiss +linux-headers m4 make musl openssl pigz xz zlib adwaita-icon-theme alsa-lib +alsa-utils atk bzip2 cairo cbindgen ccache clang cmake dhcpcd dosfstools +e2fsprogs efibootmgr efivar eiwd expat ffmpeg firefox firefox-privacy +fontconfig freetype-harfbuzz gdk-pixbuf glib gnugrep gnupg1 gtk+3 +hicolor-icon-theme intel-vaapi-driver json-c kirc lame libass libelf libffi +libjpeg-turbo libogg libpng libtheora libudev-zero libva libva-utils libvorbis +libvpx libwebp llvm man-pages mandoc mdevd mesa meson mold mpv mutt nasm ncurses +nodejs opendoas openresolv openssh opus pango pcre perl pkgconf python rust +samurai scdoc sqlite ssu strace ttf-croscore tzdata util-linux vim +wpa_supplicant x264 x265 xvidcore zstd foot foot-pgo grim libdrm libinput +libpciaccess libseat libxkbcommon pixman slurp sway sway-no-seat sway-tiny +wayland wayland-protocols wbg wl-clipboard wlroots wlsunset xkeyboard-config + +The distribution explicitly excludes logind, udev, dbus, systemd, polkit, +pulseaudio, electron and all desktop environments. This software is either +with lock-in, too complex or otherwise out of scope. + +Further reading: @/wiki + + +[004] Package System +________________________________________________________________________________ + +The system is based around directories and files. A repository (directory) +contains packages (directories) which contain information (files). Repositories +can be stored anywhere and their use is determined by a search path. + +As software is compiled locally, there is no line drawn between the "frontend" +and "backend", they are one and the same. Learning the package management +system also teaches you how to develop the distribution. + +* repository/ + * package-a/ + * build + * checksums + * depends + * sources + * version + * package-b/ + * build + * checksums + * patches/ + * 0001-fix-segfault.patch + * 0002-no-x11.patch + * sources + * version + +Each file serves a specific purpose and files can be omitted when the package +has no use for them. Files can be symbolically linked between packages to +deduplicate otherwise identical information. + +Further reading: @/wiki/package-system + + +[005] Package Manager +________________________________________________________________________________ + +The package manager (also named 'kiss') is a tiny, self-contained and POSIX +compliant shell script written with portability in mind. It should run in all +environments with a POSIX shell and core utilities. + +There is no configuration file and no weird arguments to memorize. Interaction +is done via "actions" with each action taking a list of packages to operate on. +Each action also has a single letter alias (build == b). + +* kiss [a|b|c|d|i|l|r|s|u|U|v] [pkg]... +* alternatives List and swap alternatives +* build Build packages +* checksum Generate checksums +* download Download sources +* install Install packages +* list List installed packages +* remove Remove packages +* search Search for packages +* update Update the system and repositories +* Upgrade Upgrade the system +* version Package manager version + +Further reading: @/wiki/package-manager + + +[006] Further Reading +________________________________________________________________________________ + +- @/answers - Answers to the most common questions. +- @/wiki - General distribution documentation. +- @/wiki/package-system - The package management system in detail. +- @/wiki/package-manager - The package manager's documentation. +- @/wiki/website - About the website itself. +- @/contact - Get in touch with Kiss Linux. + +[0] https://en.wikipedia.org/wiki/Benevolent_dictator_for_life +[1] https://en.wikipedia.org/wiki/Rolling_release + + +________________________________________________________________________________ + +[Name Redacted] (C) 2019-2021 + +The registered trademark Linux(R) is used pursuant to a sublicense from the +Linux Foundation, the exclusive licensee of Linus Torvalds, owner of the mark +on a worldwide basis. + ++
+ Physics is a lab science with a math focus. We use physical relationships to predict and shape our surroundings. +
++ + Physics is science. + + Physicists build mathematical models that approximate how matter and energy change over time. +
++ + Physics advances technology. + + Physics explains how electromagnetic waves encode information from a cell phone, how electricity in a computer chip is controlled by transistors, how a speaker produces sound with magnets, and how GPS calculates position. +
++ + Physics guides engineering. + + A knowledge of physics allows engineers to predict how their projects will behave. Physics helps them design, tinker, and experiment. +
++ + Physics speaks with math. + + Math is the language physics uses to understand and communicate the nature of our universe. +
++ This class focuses on learning computer science through projects. We build browser based projects using JavaScript. +
++ If you were absent, check in after class to see what you missed. If you need to make up an assignment, or have any questions come by my room after school. +
++ r[Name Redacted]@newwestcharter.org +
+
+
+ Photos:
+
+ classroom science experiments
+
+
+ Electronics:
+
+ soldering circuits and programming Arduinos
+
+
+ Codepen:
+
+ small HTML / CSS / JavaScript projects
+
+
+
+ n-gon:
+
+ physics based JavaScript game
+
+
+ I graduated from University of Georgia with a B.S. in physics and astronomy. +
++ I nerd out on: books, hiking, soccer, science, coding, Arduino, biking to work +
+ ++ 🎼 + + micro + + + -lc + + is an open source + + micro-frontend orchestrator + + . +
++ 🧱 + + micro + + + -lc + + offers a solution for building + + flexible + + , + + multi-tenant + + frontend applications. +
++ 🖼 + + micro + + + -lc + + is well suited to build + + any type of web application + + , from classical top-bar/sidebar +multi-pages websites, to CMSs, blogs, or even applications with no layout at all. +
++ ⚡ + + micro + + + -lc + + aims to be as + + lightweight + + as possible and to improve + + web security + + . +
++ 🔗 + + micro + + + -lc + + brings together + + different micro-frontend patterns + + inside the same application. +
++ 🏃 + + micro + + + -lc + + consists of a core interface that loads, embeds, and orchestrates individual frontend applications +at + + runtime + + , while providing + + configuration options + + and useful + + out-of-the-box features + + . +
++ In a world of frontend monoliths, the + + micro-frontend + + pattern brings to the frontend world +the benefits + + microservice architecture + + brought to backend development. +We are talking about scalability, technological agnosticism, faster development and delivery time, maintainability, and +governance complexity reduction, just to name a few. +
++ One of the greatest challenges when taking this architectural approach is making sure that all the independent +micro-frontend application behave in a + + cohesive way + + , both in terms of user interface (e.g., styling, theming, branding) +and user experience (e.g., state sharing, routing, error handling). +
++ + micro + + + -lc + + has been designed to help overcome this challenge, offering the stability and unity of a centralized +orchestrator, while maintaining the flexibility needed to mold the application to each unique use case. +
++ + micro + + + -lc + + supports three different micro-frontend patterns at the same time: + + iframes + + , + + parcels + + , and + + shadowed components + + . +
++ An + + iframe + + is an external websites embedded into our application. A + + parcel + + instead is a fully-fledged (possibly +single-page) application which lives within the context of the main application, but is JS-sandboxed and routed. Finally, + + shadowed components + + refer to business logic encapsulation via web components which allows to protect from style leaks +and to scope events using HTML5 elements Shadow DOM. +
++ Orchestration happens at + + run-time + + so that a JSON (or YAML) configuration is all + + micro + + + -lc + + needs to add +a new micro-frontend application. Configurations can be + + hot-swapped + + or edited at run time, meaning a page refresh is +enough to preview your application after config changes. +
++ + micro + + + -lc + + provides a + + smooth navigation experience + + between different applications, SPAs, and iframes +while wrapping them in a static layout. +
++ It ships as a + + CDN bundle + + that can be embedded into HTML pages or other scripts, +and as a + + Docker container + + that can be configured with volumes. +
++ + micro + + + -lc + + is heavily inspired by and based on micro-frontend orchestration tools such as + + single-spa + + and + + qiankun + + . +
++ By orchestrating micro-frontend applications, + + micro + + + -lc + + achieves a fair amount of benefits: +
++ Compared to other tools, + + micro + + + -lc + + provides: +
++ IE 11 + | ++ Edge 79+ + | ++ Firefox 67+ + | ++ Chrome 64+ + | ++ Safari 11.1+ + | ++ Opera 51+ + | +
---|---|---|---|---|---|
+ ✖ + | ++ ✔ + | ++ ✔ + | ++ ✔ + | ++ ✔ + | ++ ✔ + | +
+ 中国开源码力榜是由 SegmentFault 思否、开源社、X-lab 开放实验室共同发起的中国开源开发者榜单。 +
++ 该榜单的评选基于开源贡献度评价算法 OpenRank,通过开源社区、广大开发者、志愿者的开放协作,共同核实标注信息、排除机器人账号,甄选了每年排名前 99 位的中国开发者。 +
++ 通过中国开源码力榜,我们希望开源世界的“超级玛丽”、开源项目背后的开发者们可以被更多人知道、认识和 respect。让更多人关注开源、关注开源开发者成长。 +
++ 最近更新于 2024 年 10 月 +
++ 使用这个博客模板的朋友们时不时会提出一些问题,我将它们以及对应的解决方案逐渐整理归纳,汇总到这一篇帖子里。 +
+ ++ 本文介绍如何通过自定义 IDEA 的 JUnit4 Test Class 模板,实现生成测试类时自动注入 logger 和被测 Service。 +
+ ++ 背景 +
+ ++ 本文记录了一种使用没有原生支持多路推流的阿里云推流 Android SDK,实现同时推送两路不同画面的流的方法。 +
+ ++ This site (repository) provides + + setup commands (with docker) to run the implementation of papers or packages + + and + + the paper clippings + + . +If you want to know this contents, Please check + + my github.io + + or Example (docker command) section. +
++ Setup commands section notes how to build environments to run the implementation of papers or packages with Docker. Setup commands are written in 'How to build with docker and run the model in a docker container' section. +
++ For example, + + text2room + + contains the following items: +
++ Each item has commands for setup, an example of + + text2room + + '1. Create a docker container' is as follows: +
+# Set this repository absolute path (ex: /home/user/[Name Redacted].github.io)
+git clone https://github.com/[Name Redacted]/[Name Redacted].github.io.git
+cd [Name Redacted].github.io
+OGI_DIR_PATH=$PWD
+
+# Get a base image
+BASE_IMAGE=nvidia/cuda:11.7.1-cudnn8-devel-ubuntu20.04
+docker pull $BASE_IMAGE
+
+# Create and move to a container dir
+mkdir containers
+cd containers
+# Clone the repository
+git clone https://github.com/lukasHoel/text2room.git
+# Move to text2room
+cd text2room
+# Switch to 2023/07/16 ver. git switch -d c38d97e4d418cb5a93cfdc7b89ea0e6e7bbcf20b
+# Copy a folder for building env.
+ + Paper clippings section notes summary of paper methods. Paper clippings are written in 'どんなもの?' +
++ An example of + + text2room + + 'どんなもの?' is as follows: +
++++ In very recent concurrent work, Fridman et al. [18] create 3D scenes from text, but focus on this type of 3D-consistent “zoom-out” video generation. +
+
+++ Instead, we generate complete, textured 3D room geometry from arbitrary trajectories. +
+
+++ We visualize this workflow in Figure 2. +
+
+ +
++++ Figure 2. Method overview. +
+
+ +
++++ Figure 3. Iterative scene generation. +
+
+ Note: I used 'どんなもの?' + + 先端技術とメディア表現1 #FTMA15 + + . +Note: I used 'どんな論文か?', '新規性', '結果' with reference to + + cvpaperchallenge format + + . +
++ This website is the entry point to the ressources of the Open Dynamic Robot Initiative. + This project originated in an effort to build a low cost and low complexity actuator module using + brushless motors + that can be used to build different types of torque controlled robots with mostly 3D printed + and off-the-shelves components. This module, and extensions, can be used to build legged robots or + manipulators. + A paper describing the actuator module and the quadruped design can be found + + here + + . + A paper describing the TriFinger Manipulator Platform and real-time reinforcement learning experiments can be found + + here + + . +
+
+ More videos are available on our
+
+ YouTube channel
+
+ .
+
+ You can ask questions on our
+
+ Discourse forum
+
+ .
+
+ All the sources are hosted on the + + Open Dynamic + Robot Initiative Github site + +
++
++ This work is done in collaboration between the + + Motion + Generation and Control Group + + , + + the Dynamic Locomotion Group + + and the + + Robotics Central Scientific Facility + + at the + + Max-Planck Institute for Intelligent System + + + , + the + + + Machines in Motion Laboratory + + at + + New York University's Tandon School of Engineering + + and the + + Gepetto Team + + at the + + LAAS/CNRS + + . +
++ +
++ + (based on Buildroot) + +
++ + + +
++ OpenIPC is an open source operating system from the + + open community + + targeting for IP cameras with ARM and MIPS processors from several manufacturers in +order to replace that closed, opaque, insecure, often abandoned and unsupported +firmware pre-installed by a vendor. +
++ OpenIPC + + firmware + + comes as binary pre-compiled files for easy +installation by end-user. Also, we provide full access to the source files for +further development and improvement by any capable programmer willing to +contribute to the project. OpenIPC source code is released under one of the most +simple open source license agreements, + + MIT License + + , giving users express +permission to reuse code for any purpose, even as part of a proprietary software. +We only ask you politely to contribute your improvements back to us. We would +be grateful for any feedback and suggestions. +
++ Historically, OpenIPC + + firmware + + only supported SoC manufactured by +HiSilicon, but as the development continues, the list of supported processors +expands. Today, it also includes chips from + + [Name Redacted] + + , + + [Name Redacted] + + , + + [Name Redacted] + + , + + [Name Redacted] + + , + + [Name Redacted] + + , + + [Name Redacted] + + , + + [Name Redacted] + , + + [Name Redacted] + + , + + [Name Redacted] + + , + + [Name Redacted] + + , and is +expected to grow further. +
++ More information about the + + project + + is available in our + + website + + and on the + + wiki + + . +
++ + + +
+ ++ We know that our colleagues across Islamicate humanities are working on a vast range of topics, incorporating innovative methods, tools, and theoretical approaches, and thinking about the implications of textual and other technologies on their subjects, research methods, and pedagogical practices. We all interact with texts in some form or… +
+ ++ In today’s academic world, virtually every scholar in the humanities, Islamicate and otherwise, engages with digital tools and methods of some sort. Whether it is through search engines, electronic catalogs, digitized manuscripts, electronic word processors, email, or social media, the use of digital resources and digital tools has become integral… +
+ ++ After a break over the summer, we will be picking our OpenITI manuscript reading group back up for the fall academic semester, with a somewhat different iteration from previous semesters. In the past we have taken a somewhat ad hoc approach to our reading material, focusing on one manuscript for… +
+ ++ During a recent one of our Thursday manuscript reading group sessions we explored a curious work produced in 913/1507 somewhere in the Ottoman lands and now held by the + + Bayerische Staatsbibliothek München, shelfmark Cod. turc. + + . The catalog describes it as a ‘talisman,’ though as we will see this is… +
+ ++ One of the most potent affordances of manuscript textual production, as opposed to typographic or digital print, is the simple fact that handwriting permits a lot more variation and even downright weirdness in what ends up on the page… +
+ ++ Something one often hears in the context of introductions to or apologetics for digital humanities is the idea that all scholars today are in some degree or another “digital humanists.” And while it sounds at this point a bit cliché, it is in fact true: just about everyone who works… +
+ ++ My OpenITI colleague Taimoor Shahid and I were recently able to—virtually—sit down and have a productive conversation with Eid Ahmed Mohamed and Mai Zaki, the editors of the quite newly launched (first issue comes out in a couple of months) + + Journal of Digital Islamicate Research + + , discussing their vision for the… +
+ ++ One of OpenITI’s major deliverables in our most recent round of work is the + + Automatic Collation for Diversifying Corpora + + (ACDC) project and ensuing tool, which we are now making available for wider use and experimentation: the relevant + + code and instructions for installation and use are available on Github + + , and additional… +
+ ++ As 2023 draws to a close, I wanted to use this last blog post of the year to reflect on OpenITI’s pedagogical and outreach work, or at least the parts with which I have been closely associated. Over the course of the last year, I put together and oversaw two… +
+ ++ I have been meaning to do a review article covering useful resources, recent articles, and other matters that have come up in the course of our + + fall manuscript studies reading group + + , but kept putting it off, reasoning I ought to wait until the end of the semester (that, and I… +
+ ++ 实验 + | ++ 发布时间 + | ++ 截止时间 + | +
---|---|---|
+ 实验零 + | ++ 2024 年 3 月 7 日 12:20 + | ++ 2024 年 3 月 11 日 23:59 + | +
+ 实验一 + | ++ 2024 年 3 月 24 日 15:30 + | ++ 2024 年 4 月 1 日 23:59 + | +
+ 实验二 + | ++ 2024 年 4 月 9 日 16:30 + | ++ 2024 年 4 月 30 日 23:59 + | +
+ 注:所有同学拥有一次将实验截止日期延期一周的机会,请在相应实验原截止日期之前联系助教申请使用。 +
++ 教材:《操作系统概念》[Name Redacted]著 [Name Redacted]译 机械工业出版社 201807 +
++ 参考书: + + Operating Systems Design & Implementation + + A.S. [Name Redacted], etc. ISBN-10: 0136386776 Prentice Hall +
++ To the + + OWASP Board of Directors + + and the Executive Director of the OWASP Foundation, +
++ + OWASP + + was first set up over two decades ago. The Internet, the way we build software, and the security industry, has changed so much that those days are hardly recognizable today. +
++ As a group of OWASP flagship project leaders and lifelong contributors, we believe that OWASP hasn’t kept pace and evolved to support the needs of important parts of our community today, especially our flagship projects. What worked in the past simply isn’t working now and OWASP needs to change. +
++ We have written and published this open letter, knowing that other parts of the community also support our concerns, and are asking the OWASP Board of Directors to take action. Year after year, concerns have been raised and there have been promises of change, but year after year it hasn’t happened. +
++ Today, many projects operate independently, in some cases managing their own sponsorships, finance, websites, domains, communication platforms, and developer tools. Projects still operate on a best-efforts model that relies on a few individuals working in their spare time. +
++ Without active world class projects, OWASP doesn’t have a unique selling point and projects need constant guidance, mentoring, and investment for them to grow and keep the brand where it should be: First and foremost for all things application security. +
++ There are five key areas that we feel if not addressed immediately, will result in important projects, like ours, leaving OWASP in search of, or creating a community that better meets their needs. We don’t want that to happen. +
++ This letter is written with positive intent and we believe is in the best interests of the OWASP community and those that rely on it. We appreciate that this is a change from how OWASP operates today, but have conviction that OWASP is at a tipping point and needs to evolve now. +
++ We all want to be part of the OWASP community and for it to continue to be successful in the decades to come. +
++ We ask that you respond within 30 days, with a plan of action to address the five points above. +
++ Yours truly, +
+
+ Simon Bennetts,
+
+ OWASP ZAP
+
+ founder and co-project leader,
+
+ OWASP VWAD
+
+ co-project leader
+
+ Ricardo Pereira,
+
+ OWASP ZAP
+
+ co-project leader
+
+ Glenn ten Cate,
+
+ Security Knowledge Framework
+
+ founder and co-project leader & OWASP Board Member
+
+ Akshath Kothari,
+
+ OWASP ZAP
+
+ core team member
+
+ Mark Curphey, OWASP founder and 2023 board member
+
+ Daniel Cuthbert,
+
+ OWASP ASVS
+
+
+ Sebastien Deleersnyder,
+
+ OWASP SAMM
+
+ co-project leader and
+
+ OWASP Threat Modeling Playbook (OTMP)
+
+ founder and project leader
+
+ Bart De Win,
+
+ OWASP SAMM
+
+ co-project leader
+
+ Maxim Baele,
+
+ OWASP SAMM
+
+ core team member
+
+ Rick Mitchell,
+
+ OWASP ZAP
+
+ co-project leader,
+
+ OWASP Web Security Testing Guide
+
+ co-project leader,
+
+ OWASP VWAD
+
+ co-project leader
+
+ Steve Springett,
+
+ OWASP CycloneDX
+
+ and
+
+ OWASP Dependency-Track
+
+ founder and co-project leader
+
+ Patrick Dwyer,
+
+ OWASP CycloneDX
+
+ co-project leader
+
+ Björn Kimminich,
+
+ OWASP Juice Shop
+
+ founder and project leader
+
+ Niklas Düster,
+
+ OWASP Dependency-Track
+
+ co-project leader
+
+ Jeroen Willemsen,
+
+ OWASP WrongSecrets
+
+ project leader
+
+ Jeremy Long,
+
+ OWASP dependency-check
+
+ founder and project lead and
+
+ OWASP Java Encoder
+
+ contributor
+
+ Cole Cornford,
+
+ OWASP Code Review Guide
+
+ project lead and
+
+ OWASP XSS Prevention CheatSheet
+
+ author
+
+ Ben Gittins, OWASP Member and Contributor
+
+ Erwin Geirnaert, Creator of the first OWASP WebGoat Solutions Guide, first OWASP Top 10 for Java and part of the OWASP Community since 2000
+
+ Robin Wood, OWASP contributor and supporter
+
+ Rob Grant, OWASP contributor
+
+ Arkaprabha Chakraborty, OWASP contributor and
+
+ OWASP ZAP
+
+ extended team member
+
+ Curtis Koenig, Founding member OWASP Louisville, Former Chapter Leader OWASP Louisville, OWASP Member
+
+ Cláudio André,
+
+ OWASP MASTG
+
+ Top Contributer
+
+ István Albert-Tóth,
+
+ OWASP CSRFGuard
+
+ project co-lead
+
+ Katie Paxton-Fear, educational web security YouTuber
+
+ Jakub Maćkowski, OWASP contributor and
+
+ OWASP Cheat Sheet Series
+
+ co-project leader
+
+ Somdev Sangwan, Open Source Security Tools Developer
+
+ Edoardo Ottavianelli, Open Source Security Tools Developer
+
+ Aram Hovsepyan,
+
+ OWASP SAMM
+
+ core team member
+
+ Brian Glas,
+
+ OWASP Top 10
+
+ Co-Lead,
+
+ OWASP SAMM
+
+ Core team member, OWASP SAMM Benchmark Co-Lead
+
+ Jeff Williams, OWASP Chair from 2001-2011, Creator of OWASP Top Ten, WebGoat, ESAPI, ASVS, XSS Prevention Cheatsheet, OWASP Legal, Chapters Program, OWASP Foundation, the OWASP Wiki, and more
+
+ Dimitar Raichev,
+
+ OWASP SAMM
+
+ contributor & tool developer
+
+ Dinis Cruz, Past OWASP Board member, organiser of multiple OWASP Conferences and Summits, lead multiple OWASP projects and chapters
+
+ Sachin Kumar Dhaka, OWASP Jaipur Member and Budding Security Researcher
+
+ Jessy Ayala, OWASP Member and Contributor
+
+ Paul McCann,
+
+ OWASP Security Shepherd
+
+ maintainer and contributor
+
+ Karan Preet Singh Sasan,
+
+ Owasp VulnerableApp
+
+ project leader and
+
+ OWASP ZAP
+
+ extended team member
+
+ Daniel Wood, OWASP Lifetime Member
+
+ Bharath, OWASP (Bangalore Chapter) Member and Contributor
+
+ John Viega, original OWASP advisory board member, OWASP Lifetime Member
+
+ Carol Valencia, Security cloud-native and open-source enthusiast
+
+ Jimmy Mesta,
+
+ OWASP Kubernetes Top Ten
+
+ Project Leader and Cheatsheet Contributor
+
+ Lewis Ardern,
+
+ OWASP Bay Area Chapter Leader (2019-2022)
+
+ , and created the
+
+ What is OWASP?
+
+ Video
+
+ Alvin Smith,
+
+ OWASP Juice Shop
+
+ Contributor
+
+ Sven Schleier,
+
+ OWASP Mobile Application Security
+
+ , Co-Project Leader of OWASP MASVS and MASTG
+
+ Carlos Holguera,
+
+ OWASP Mobile Application Security
+
+ , Co-Project Leader of OWASP MASVS and MASTG
+
+ Jeroen Beckers,
+
+ OWASP Mobile Application Security
+
+ , Co-Author of OWASP MASVS and MASTG
+
+ Shubham Palriwala,
+
+ OWASP Juice Shop
+
+ Core Team member
+
+ Pinaki Mondal, Open Source Security Tools Developer
+
+ Zsolt Imre, CTO at private company
+
+ Eoin Keary, Former OWASP Global Board Vice Chair (2010-2015), Former Testing and Code Review Guide lead
+
+ Deepayan Chanda, Principal Cybersecurity Architect
+
+ Martín Marsicano, OWASP Lifetime Member, Former Chapter Leader OWASP Uruguay and several projects contributor
+
+ Paul Schwarzenberger,
+
+ OWASP Domain Protect
+
+ creator and project leader
+
+ Abraham Aranguren,
+
+ OWASP OWTF Project
+
+ creator and project leader
+
+ Viyat Bhalodia,
+
+ OWASP OWTF Project
+
+ project leader
+
+ Dave Ferguson, Project contributor and former chapter leader
+
+ Josh Larsen, OWASP Lifetime Member
+
+ Sergey Pronin, Principal Security Architect, OWASP Lifetime Member
+
+ James, BugBounter, Pentester and OWASP passionate
+
+ Kevin W. Wall,
+
+ OWASP ESAPI
+
+ project co-lead, OWASP Lifetime Member, and
+
+ OWASP ZAP
+
+ and
+
+ OWASP Cheat Sheets Series
+
+ contributor
+
+ Cesar Kohl,
+
+ OWASP ASVS
+
+ and
+
+ OWASP Cheat Sheets Series
+
+ contributor
+
+ Simon Whittaker, OWASP Lifetime Member
+
+ Frank Catucci, CTO and Head of Security Research at Invicti, OWASP Member and former OWASP Chapter Leader
+
+ Ingo Struck, Former OWASP Leader, creator of the name
+
+ WebGoat
+
+ , OWASP Lifetime Member
+
+ Francesco Maria Ferazza, Director of IT, security lecturer and researcher
+
+ Antonio Montillo, OWASP enthusiast
+
+ Daniel Neagaru,
+
+ OWASP Raider
+
+ project leader
+
+ Rejah Rehim,
+
+ OWASP Kerala
+
+ Chapter leader
+
+ Grant Ongers, OWASP Lifetime Member,
+
+ OWASP Cornucopia
+
+ and
+
+ OWASP Application Security Curriculum
+
+ project co-lead
+
+ Patrick Reijnders, CISO, OWASP enthusiast; started using the Top Ten as a developer in 2004, now using it as a guideline for pentesting.
+
+ Jordan Pike, OWASP Member
+
+ Riotaro Okada, OWASP Lifetime member, OWASP Projects contributer, an OWASP Japan chapter lead
+
+ Magno Logan, OWASP Member since 2011, former
+
+ OWASP Paraiba Chapter Leader
+
+ 2011-2016,
+
+ OWASP Paraiba Day 2012
+
+ Organizer, OWASP Portuguese Language Project contributor and
+
+ OWASP Top 10 Java EE
+
+ translator
+
+ Steven van der Baan, OWASP Member and OWASP Cambridge co-lead
+
+ David Hunt, OWASP Member and OWASP Columbus co-lead
+
+ Mauricio Harley, OWASP Member, former OWASP Fortaleza chapter founder and leader, OWASP MSTG/MASVS contributor
+
+ Wael Ghandour, OWASP Member
+
+ Yevgeniy Goncharov, Open Source Security Tools Developer
+
+
+ Published on 2023/02/13 +
++ This “Open Letter to the OWASP Board” is no longer accepting any changes. +
++ +
++ PineCoders is a small, + + TradingView + + -supported group of programmers who code in + + Pine Script™ + + , the programming language used to write trading indicators and strategies for the TradingView financial charting platform. Our members include most of the + + Pine Script™ Wizards + + and many of the platform’s top programmers. Our community-oriented members work together to: +
+
+
+ Pine Script™ Reference Manual
+
+
+
+ Pine Script™ User Manual
+
+
+ + + +
++ This project contains the main features of the plaxswap application. +
++ If you want to contribute, please refer to the + + contributing guidelines + + of this project. +
++++ Install dependencies using + + yarn + +
+
+ apps/web
+
+
+
+
+ apps/aptos
+
+
+
+
+ apps/blog
+
+
+
+ + Package + | ++ Description + | +
---|---|
+ + sdk + + | ++ An SDK for building applications on top of Plaxswap + | +
+ + aptos-swap-sdk + + | ++ Aptos version of Swap SDK + | +
+ + swap-sdk-core + + | ++ Swap SDK Shared code + | +
+
+ + + Fork me on GitHub + + ++ Welcome to the PRIMatE Resource Exchange (PRIME-RE), a community-driven resource exchange platform for non-human primate neuroimaging. Read more about this initiative in the + + accompanying + + NeuroImage + + publication + + and please consider citing the paper if this resource has been useful. +
++ The preprocessing and analysis of nonhuman primate (NHP) magnetic resonance imaging (MRI) data presents some unique challenges. + + PRIME-DE consortium + + . We strongly encourage you to + + contribute + + your workflows and pipelines. +
++ In 2021, the consortium behind + + PRIME-DE + + (data) and + + PRIME-RE + + (resources) rebranded their initiative as PRIME-DRE, the + + Primate Data & Resource Exchange + + . In 2024, leadership of PRIME-DRE was restructured into a + + steering committee and senior advisory committee + + . +
++ Our goal is to accelerate reproducible discovery, minimise redundant efforts and maximise efficiency by allowing the community to curate relevant resources, disseminate and encourage open science, and strengthen communication in the research community. We aim at making NHP resources open and + + FAIR + + , and support the adoption of the + + Brain Imaging Data Structure (BIDS) + + and + + code development best practices + + , such as version control, testing, and continuous integration. +
++ Send new content by using + + this issue template + + . You can also join our communication channel on the Brainhack Community via + + PRIME-RE Mattermost-channel + + . If you want to discuss the Primate Data Exchange in general, join on + + PRIME-DE Mattermost-channel + + . Suggest a new feature or pitch an idea for the PRIME-RE platform + + here + + , ask a general question or start a discussion + + here + + , or check the open Issues and Discussions + + here + + . +
+
+ Also check out the brand new
+
+ PRIME-DRE Brainweb
+
+ .
+
+
+
+
+
+ A + + wiki + + have been set up to share knowledge about NHP MRI acquisition and image processing. Anyone can share knowledge and experience (problems with solutions, fixes, tricks…) after requesting access. +
++ The PRIME-RE collection of resources is organized in several categories. If you feel like something is missing or erroneously categorized, don’t hesitate to contact us. +
++ This website is intended to be a meeting place for the NHP neuroimaging community. You can find some of the latest tools, methods, and data repositories here, but we hope you will also find international colleagues here, discover mutual interests and start new collaborations. +
++ It is designed to be easy, yet powerful, compiling to LLVM and self-hosting. Our goal is for it to be faster than C and easier than Python. +
++ A low-level programming language with syntax inspired by BASIC and Ada. Right now, it can target x86 and WebAssembly. +
++ GPU-Accelerated, Distributed, Actor Model Language +
++ A minimalistic systems language for modern software +
++ A low-level programming language with a simple and productive design inspired by C/C++, Rust, Go, Jai. +
++ A compiled systems language focusing on providing extensibility through the use of a compile-time API. +
++ Argon is an interpreted multi-paradigm programming language. Its syntax is influenced by many modern languages and aims to be elegant, clean and simple to use. +
++ Calypso is a mostly imperative language with some functional influences that is focused on flexibility and simplicity. +
++ A strongly-typed minimalistic systems programming language with semantic side-effects and minimal runtime overhead +
++ An evolution of C, adding modules, error handling and semantic macros. +
++ Strongly typed, dynamic yet compilable, test-oriented procedural programming language that achieves zero cyclomatic complexity. +
++ A JVM language focus on concise syntaxes and enhancing language features from Java. +
++ S-expression programming language, with VM targeting both PC and Arduino. +
++ A functional language that aims to be as simple as possible but as efficient and user friendly as possible. +
++ A highly readable quasi-concatenative dynamic language. +
++ A fast, fit, friendly, and safe systems programming language to power the 3D web. +
++ a modern, minimal programming language +
++ A multi-paradigm, general purpose language for the JVM, with an extensible syntax. +
++ An interpreter for eager untyped combinator rewriting implemented in C++. +
++ A lisp which compiles to Lua with zero overhead, revived by technomancy. +
++ Full-stack language with colorless async/await and object capabilities. +
++ Simple yet powerful concatenative stack-based scripting lang with code-as-data paradigm. Aims to run on bare metal like FORTH! +
++ An alternative to event-driven programming that resolves the callback hell and the state management problem thanks to very structured concurrency and await-event instructions. +
++ A high-performance parallel functional array language targeting GPUs. +
++ A high-level, procedural, compiled and garbage collected programming language without type annotations. +
++ A strongly-timed musical programming language +
++ Hascal is a general purpose and open source programming language designed to build optimal, maintainable, reliable and efficient software. +
++ A quantum programming language aimed to build quantum algorithms through a higher abstraction layer. +
++ An imperative, cross-platform, dynamically typed scripting language that utilizes a mutable value semantics approach. +
++ Dynamically typed but orderly, reducing chaos in large projects. A grounded Python-alike. +
++ A rule-based dictionary-based Toki Pona to English translator that translates into multiple English outputs showing many possible grammatical and semantic interpretation of the text. No machine learning involved. +
++ A statically typed and compiled scripting language with the goal of increasing programmer confidence. +
++ A gradually typed, interpreted, object-oriented language drawing inspiration from many others. +
++ Extensible s-expression scripting language written in portable TypeScript. +
++ A Clojure dialect hosted on LLVM with native C++ interop. +
++ A systems programming language with a JIT and AOT compiler that uses GCCJIT as backend. +
++ A clean, embeddable scripting language designed with an asynchronous and thread-safe execution model. +
++ A statically typed concatenative language with effect types. +
++ A fast functional language based on two level type theory +
++ A fast compiled, statically typed, pythonesque programming language. +
++ Flow-senstitive type inference, specialization, compile-time reference counting, and Python-y syntax. +
++ Programming language that combines high abstraction power with great control over asymptotic complexity and performance of your programs +
++ A logic/functional programming language with advanced static analysis and error detection features. +
++ Statically-typed, purely-functional, concatenative +
++ A dynamic programming language inspired by Python and E. +
++ A purely statement-oriented language (like Basic) designed for teaching programming 1-on-1. +
++ An experimental functional programming language with an emphasis on type inference and aesthetic syntax. +
++ A systems language aiming to fit in a similar niche to C, but with fewer bullets in your feet. +
++ A simple syntactically-scoped, strongly-typed, call-by-value, functional language. +
++ Next Generation Shell, an alternative to many scripting languages, with syntax for idempotent resource manipulation. +
++ A semi-concatenative that extends array language features such as tacit programming and scalar extension. +
++ Compiled, imperative and general-purpose programming language that aims to provide a simple platform to create efficient software. +
++ Dynamic object language modelled after Smalltalk, with a gradual typing system affording expressiveness rivalling ML or Haskell. +
++ A language close to C with modern touches. +
++ A functional language designed to work on parallel CPU and GPGPU using a functional paradigm and context system to contain side effects. +
++ A language that balances functional and imperative programming, and has state-of-the-art concurrency and parallelism features. +
++ A friendly little systems language with first-class types and unboxed data. +
++ An attempt to make concatenative programming less mind-bendy via locals, closures, and syntactic sugar. +
++ A scripting language for learning and fun. Designed for teaching and exploring functional programming. +
++ Concatenative programming for types as well as values, striving for purity, correctness, and efficient execution. +
++ A compiler for incomplete C code. +
++ A language based on linguistic universals for totally taking over the world. +
++ A project to experiment with and build the ultimate systems programming language. +
++ An experimental programming language for API design. +
++ A dynamically typed interpreted scripting language. +
++ A dynamically typed programming language designed primarily for prototyping and command-line usage. +
++ An open source programming language for web development with expressive type system similar to Rust. +
++ A C compiler written in Rust. +
++ A dependently typed language where all data is unboxed by default. Functional programming with fewer indirections! +
++ 🐱 Snowball is a low-weight, statically typed, object oriented programming language with garbage collector and module system. +
++ Call-by-need statically-duck-typed pure-functional actor language named for French mathematician Sophie Germain. +
++ Cross-architecture, freestanding and light-weight OOP Language made for OS and general software development with Direct Memory Manipulation +
++ An experimental programming language that's made to be powerful, productive, and predictable. +
++ An easy to use systems programming language with python-like syntax +
++ A statically typed, functional programming language that compiles to WebAssembly. +
++ Purely functional scripting language with structural types, type inference, reactive streams and visualization. +
++ Truck is a dynamic programming language with a focus on simplicity. +
++ Valkyrie is a multi-stage gradual typed language with first class continuation and effect system. +
++ Statically typed compiled language inspired by D. Both JIT and AOT compilation. Can be used for scripting in D programs. +
++ An embeddable dynamic scripting language for Rust. Every value can be called and the syntax is a blend of Perl, Lua, JavaScript and LISP. +
++ An expression oriented, gradually typed, sweet, and mission-critical programming language. +
++ A statically-typed C++/Rust-like compiled language. Main goals are safety and speed. +
++ There are many ways to connect to IRC. You can: +
++ You may also wish to peruse this + + excerpt from a documentary on IRC. + +
++ No channel is complete without a collection of noisy bots. They are also a good way to show off your programming language. +
+
+ To try out a bot, simply say
+ `
+
+ botname: some <lang> code
+
+ `.
+
+ We have a + + wiki + + ! Only members of the GitHub organization can + + edit the wiki + + . +
++ If you are a regular on #proglangdesign, ask hackerfoo for an invitation + to the + + GitHub organization + + . + GitHub organization membership is necessary to edit the wiki, or + + modify this website + + without needing to make a pull request. +
++ Powerful | Light | Easy +
+
+ The development of Range Engine 2.0 is in full swing and is heading towards
+
+ to revolutionize the way we use the engine!
+
+ News Date: 19/12/2023 +
++ The last release before the big update is already available on Patreon. +
++ News Date: 26/11/2023 +
+
+ Learn more about the goals to Range Engine 2.0 and what
+
+ things it will bring.
+
+ News Date: 26/11/2023 +
++ Experience an +
++ Take a look in what Range Engine is capable to do +
+
+ Based on Blender, With Range Engine you can
+
+ Model and Sculpt you own Assets,
+
+ Make Materials and Textures,
+ create high detailed Animations
+
+ And build breathtaking levels with advanced tools and modificators.
+
+
+ Make amazing environments with
+
+ beautiful PBR materials
+
+ , you can
+
+ use your imagination to make advanced materials with
+
+ Shader Nodes Editor
+
+ .
+
+ Range Engine makes coding looks easy, you can code with
+
+ Python 3.10
+
+
+ or make visual scripting with
+
+ Visual Language
+
+ , you can also use both ways
+
+ together!
+
+ (Cython and Range Nodes Coming Soon)
+
+
+ Of course you want to show to everyone the amazing work you did,
+
+ In Range Engine you can export and publish your game with safety,
+
+ optimization and
+
+ With no Fees and Licensing Problems!
+
+
+ Frequently Asked Questions +
++ Range Engine Is Free And Open Source, you don't pay for downloading, using and publish your game for sale, you also don't need to pay taxes regardless of how much you earn with your project. + However, if you want access to the latest early access versions, you can support us on + + Patreon + + . With this support we can expand our team to make the engine have constant updates. +
++ Range Engine has the proposal of being a game engine for indie developers, designed with important features + to make the game development fluent and efficient. The terms of Range Engine have no bureaucracy compared to other engines + that abuse indie developers with absurd fees and high machine requirements. +
++ Yes, Range Engine has been designed for indie developers in mind, the learning curve is short and dynamic! If you already use Blender, it's halfway to learn Range Engine. +
++ No, you don't even need a dedicated video card to work on Range Engine! Just have a computer with Windows 8.1/10/11 or Linux and a GPU with support for OpenGL 3.3 and you'll be able to use it. +
++ Yes, You can make any graphic style in Range Engine, from cartoon to realistic. The engine can also handle meshes with a high number of triangles and high resolution textures. +
++ The game functions of Range Engine are written in Python 3.11.7. +
++ Currently only Windows and Linux, but we have plans to expand to macOS. +
++ Currently the engine lack of original educational material, as the team is small and the engine launched recently. + Actually you can use old BGE/UPBGE tutorials to learn Range Engine, if you want to know from where to start you can ask us through the official + + Range Engine Discord + + , + you just need to tell us your doubts and we'll be there to help you. As our community is growing every day we are officially developing a series of tutorials on the + + Range Engine YouTube Channel + + explaining every point of the engine and teaching how to make an game from scratch. +
++ The constant development of Range Engine is possible because the community support, you can support us on + + Patreon + + or make donations with + + PayPal (contact@rangeengine.tech) + + . + The Patrons also have a bunch of advantages by supporting the project, like early access releases, exclusive Range Engine products, exclusive chats and role on the + + Range Engine Discord + + . +
++ If you want to sponsor Range Engine, please write to + + contact@rangeengine.tech + +
++ Мы помогаем начинающим учёным-инженерам освоить универсальные инструменты для исследователей +
+ + Инструменты + + + Компетенции + ++ Подборка рекомендуемых стартовых материалов +
+ + ++ Используй проверенные инструменты для собственных исследований +
+ + ++ Найди на нашей платформе единомышленников и организуй совместный проект +
+ + ++ Делись лучшими практиками исследовательской работы и помогай начинающим +
+ ++ Running tests on an Android emulator or device is slow! + + TDD + + . There must be a better way. +Robolectric is a framework that brings fast and reliable unit tests to Android. Tests run inside the JVM in seconds. With Robolectric you can write tests like this: +
+@RunWith(RobolectricTestRunner.class)
+public class MyActivityTest {
+ @Test
+ public void clickingButton_shouldChangeMessage() {
+ try (ActivityController<MyActivity> controller = Robolectric.buildActivity(MyActivity.class)) {
+ controller.setup(); // Moves the Activity to the RESUMED state
+ MyActivity activity = controller.get();
+
+ activity.findViewById(R.id.button).performClick();
+ assertEquals(((TextView) activity.findViewById(R.id.text)).getText(), "Robolectric Rocks!");
+ }
+ }
+}
+
+ @RunWith(RobolectricTestRunner::class)
+class MyActivityTest {
+ @Test
+ fun clickingButton_shouldChangeMessage() {
+ Robolectric.buildActivity(MyActivity::class).use { controller ->
+ controller.setup() // Moves the Activity to the RESUMED state
+ val activity = controller.get()
+
+ activity.findViewById(R.id.button).performClick()
+ assertEquals((activity.findViewById(R.id.text) as TextView).text, "Robolectric Rocks!")
+ }
+ }
+}
+
+ + + Get started + +
++ + Test APIs & Isolation + +
++ Unlike traditional emulator-based Android tests, Robolectric tests run inside a sandbox which allows the Android environment to be precisely configured to the desired conditions for each test, isolates each test from its neighbors, and extends the Android framework with test APIs which provide minute control over the Android framework's behavior and visibility of state for assertions. +
++ While much of the Android framework will work as expected inside a Robolectric test, some Android components' regular behavior doesn't translate well to unit tests: hardware sensors need to be simulated, system services need to be loaded with test fixture data. In those cases, Robolectric provides a + + test double + + that's suitable for most unit testing scenarios. +
++ + No Mocking Frameworks Required + +
++ An alternate approach to Robolectric is to use mock frameworks such as + + Mockito + + or to mock out the Android SDK. While this is a valid approach, it often yields tests that are essentially reverse implementations of the application code. +
++ Robolectric allows a test style that is closer to black box testing, making the tests more effective for refactoring and allowing the tests to focus on the behavior of the application instead of the implementation of Android. You can still use a mocking framework along with Robolectric if you like. +
++ + Run Tests Outside the Emulator + +
++ Robolectric lets you run your tests on your workstation, or on your continuous integration environment, in a regular JVM, without an emulator. Because of this, the dexing, packaging, and installing steps aren't necessary, reducing test cycles from minutes to seconds so you can iterate quickly and refactor your code with confidence. +
++ + SDK, Resources, & Native Method Simulation + +
+
+ Robolectric handles inflation of
+
+ View
+
+ s, resource loading, and lots of other stuff that's implemented in native C code on Android devices.
+
+ A collection of Rx operators & tools not found in the core RxSwift distribution +
++ RxFlow is a navigation framework for iOS applications based on a Reactive Flow Coordinator pattern. +
++ A framework for a reactive and unidirectional Swift application architecture +
++ Animated RxCocoa bindings +
++ UITableView and UICollectionView Data Sources for RxSwift +
++ RxSwift extentions for Swift optionals and "Occupiable" types. +
++ Encapsulates an action to be performed, usually by a button press. Contains helpful extensions on a variety of UI classes. +
++ Theme management based on Rx, easy to use, easy to extend. +
++ 🎌 Reactive navigation library for iOS based on the coordinator pattern +
++ Feedback loops architecture for RxSwift +
++ RxSwift extentions for iOS/OSX that allow to easily observe gestures on any view. +
++ Localize your apps, using RxSwift +
++ Simple RxSwift wrapper around URLSession. +
++ RxSwift wrapper around CoreFoundation file events (FSEvent). +
++ A Reactive BatteryManager in Swift for iOS. +
++ Reactive two-way binding +
++ RxBinding provides ~> and <~> operators for data binding using RxSwift, to replace the bind(to:) and disposed(by:) method in RxSwift. +
++ RxViewModel is the marriage between MVVM and Rx extensions, inspired by ReactiveCocoa's RVMViewModel project. +
++ RxViewBinder is a one-way architecture using Reactive. +
++ A tiny library built on top of RxSwift and inspired by Redux that facilitates building Unidirectional Data Flow architecture. +
++ RxEasing provides a few utility functions for applying easing functions to RxSwift Observable streams. +
++ RxSwift wrapper around ExternalAccessory framework. +
++ RxReduce is a lightweight framework that ease the implementation of a state container pattern in a Reactive Programming compliant way. +
++ Simple, Extensible, Flexible Validation Checker +
++ Simple Pager for RxSwift. +
++ RxSwift bindings for Permissions API in iOS. +
++ Reactive generic segue, implemented with RxSwift. +
++ RxSwift Variable designed for collections. It exposes a changes observable that notifies when items are inserted or removed from the collection. +
++ An RxSwift wrapper for running command line tasks via Foundation's Process. +
++ Auto update to data for UITableView/UICollectionView. +
++ RxSwift wrapper around the elegant HTTP networking in Swift Alamofire. It exposes network requests as observables that can be used with RxSwift. +
++ RxSwift extensions for Nuke +
++ Reactive extension for the Kingfisher image downloading and caching library. +
++ RxWebKit is a RxSwift wrapper for WebKit. +
++ A reactive wrapper built around rechsteiner/Parchment +
++ Nimble matchers for Observable types, built on top of RxBlocking. +
++ RxSwift extension for RealmSwift's types. +
++ Bi-directional type bridging between RxSwift and Apple's Combine framework +
++ Handy RxSwift extensions on NSObject, including rx_disposeBag. +
++ ObjectMapper bindings for Moya for easier JSON serialization, including RxSwift bindings. +
++ A reactive wrapper around NetServiceBrowser to discover network services. +
++ iOS & OSX Bluetooth library for RxSwift. +
++ We have made it easy to implement UIAlertController using RxSwift. +
++ A reactive wrapper built around UIImagePickerController. +
++ RxMKMapView is a RxSwift wrapper for MKMapView (MapKit) delegate. +
++ A RxSwift wrapper for Instagram's IGListKit +
++ Reactive extension for the EnumKit framework to enable easy working with observables streams of events as enum cases with associated values. +
++ Reactive extensions for SQLite +
++ Bind easily table and collection views to RxRealm results. +
++ RxContacts is a RxSwift wrapper around the Contacts Framework. +
++ RxDataSources for AsyncDisplayKit/Texture, wrapping ASTableNode & ASCollectionNode. +
++ A lightweight extension to subscribe Starscream websocket events with RxSwift. +
++ A reactive wrapper built around Yalantis/Koloda +
++ RxCocoa Extension Library for Texture. +
++ RxSwift extensions for Facebook Login and Graph Requests +
++ A testable RxSwift wrapper around MultipeerConnectivity. +
++ A collection of wrapper classes that allow you to use RxSwift Observers in place of Parse's callbacks. +
++ RxGoogleMaps is a RxSwift wrapper for GoogleMaps delegate. +
++ Moya is a network abstraction layer built on top of Alamofire. It exposes network requests as observables that can be used with RxSwift. +
++ SugarRecord is a CoreData/Realm wrapper. It exposes storage operations and fetches as observables to be used with RxSwift. +
++ A Swift library allows you to create a flexibly customizable pull-to-refresh view with RxSwift. +
++ Artsy's auction bidding kiosk is built with RxSwift and demonstrates some neat uses of the Swift type system. +
++ iOS Application for GitHub activities and trends, using ReactorKit Architecture. +
++ RxReachability adds easy to use RxSwift bindings for ReachabilitySwift. +
++ An Unsplash app for iOS, using MVVM+Coordinator pattern with RxSwift +
++ iOS Application example for make spaklers photo +
++ iOS Todo Application with RxSwift + MVVM. +
++ iOS Application example for develop keyboard-extensions using ReactorKit Architecture. +
++ Using RxSwift, MVVM-C and https://jsonplaceholder.typicode.com/ for dummy network data +
++ Google Place API demo project - built with RxSwift and MVVM-C. +
++ iOS app for GitHub with exploring trending, using MVVM-C based on CleanArchitectureRxSwift +
++ Simulation of a log in process using RxSwift and MVVM. +
++ an example project to demonstrate dependency injection and Swinject in MVVM (Model-View-ViewModel) architecture with RxSwift and firebase. +
++ Simple project of a bookshelf to learn Reactive programming in Swift with RxSwift +
++ A simple iOS weather app using the MVVM pattern and RxSwift framework. +
++ A template conference app, featuring real-time schedule and data changes & running on Realm 🚀 +
++ Never lose the count again. App with Apple Watch integration that lets you count anything. +
++ The introduction to RxSwift you've been missing, based on famous tutorial on RxJs. +
++ Stateless Tic Tac Toe game with RxSwift. +
++ An unofficial RxSwift Chinese documentation website which is published with Gitbook. +
++ Founded in 2013, SeaGL (the + + Seattle GNU/Linux Conference + + ) is a free—as in freedom and tea—grassroots technical summit dedicated to spreading awareness and knowledge about free / libre / open source software, hardware, and culture. +
++ SeaGL strives to be welcoming, enjoyable, and informative for professional technologists, newcomers, enthusiasts, and all other users of free software, regardless of their background knowledge; providing a space to bridge these experiences and strengthen the free software movement through mentorship, collaboration, and community. +
++ + November 8th & 9th, 2024 + + at + + University of Washington + + and online. +
++ SeaGL is + + free to attend + + , and you + + do not need to register + + —just show up! +
++ You may attend SeaGL without identifying yourself, and you are encouraged to do so to protect your privacy. +
+ ++ All attendees must abide by the + + Code of Conduct + + , and if participating in-person, the + + Health and Safety Policy + + . +
++ Sign up for our low-traffic + + announcement mailing list + + or subscribe to our + + RSS news feed + + . +
+ ++ Our twelfth annual conference is just a few weeks away! This year, we are continuing with the hybrid in-person/virtual format, offering remote participation options throughout the event. +
++ Last year, we reached out to our community through the post, + + IDEA Sharing at SeaGL + + , seeking insights on how to make our event more inclusive, diverse, equitable, and accessible (IDEA). We extend our heartfelt thanks to all who responded, participated, and contributed to making the conference more welcoming to everyone. +
++ One significant change we have made this year is the promotion of pronoun visibility within our community. We have incorporated a pronoun field into our speaker proposals, which has been well-received. +
++ Pronoun + | ++ they/them + | ++ she/her + | ++ he/him + | ++ prefer not to say + | +
---|---|---|---|---|
+ Percent + | ++ 12.5 % + | ++ 15% + | ++ 37.5% + | ++ 35% + | +
+ We recognize that fostering an inclusive environment is an ongoing process. + + anonymous feedback form + + . If you would like to discuss your feedback in more detail, there is an option to provide your contact information, and we would be happy to follow up with you. +
++ Our goal is to make this event not only accommodating for those already established in the tech community, but to also welcome and provide space for those individuals who feel they are on the outside looking in. If you know someone who could benefit from attending or participating, we encourage you to share this opportunity with them. +
++ Some ways to get involved include: +
++ For those attending in person, please be advised that our + + Code of Conduct + + and + + Health & Safety Policy + + will be in effect to ensure a safe environment for all. +
++ Last but certainly not least, cheers to Google for joining our IDEA sponsors this year, we’re so grateful for your support! +
+
+ Regards,
+
+ The SeaGL 2024 IDEA committee
+
+ We are very pleased to announce our 2024 Seattle GNU/Linux conference keynote speakers: +
++ Australian developer, speaker, and serial community conference organizer, who presently lives in the United States. +
++ He serves as a Director of the Python Software Foundation, and is co-organizer of the acclaimed North Bay Python conference, a boutique one-track conference run in unusual venues — include an old vaudeville theater, and more recently a barn on a farm — in Petaluma, California. +
++ Christopher is also a contributor on the open source Pants build system, helping make Python’s testing, correctness, and style tools accessible and fast for developers, no matter how big their codebase. +
++ Find more about Christopher on: +
++ Duane is the Director of Collaborative Engineering at Capital One. + + FOSS Contributor Fund framework + + , and loves helping organizations get involved in funding and sustaining their open source dependencies. +
++ Find more about Duane on: +
++ First time keynote speaker, Aaron is a community music teacher, co-founder of + + Snowdrift.coop + + (a long-struggling and principled platform working to solve economic coordination dilemmas around FLO public goods), and an activist and volunteer in many other areas. Originally from Ann Arbor, MI; he now lives in Oregon City with his wife, dog, and two kids. +
++ Find more about Aaron on: +
++ Rachel is a long-time nerd and denizen of the internet, learning to form community without social media! A proud career-switcher, she has worked for tech companies small and large since 2014 and has been happily plugging away at Fastly for the last several years as an SRE on the Certificate Authority project. +
++ Find more about Rachel on: +
++ The awaited time has arrived, the SeaGL 2024 Call-for-Presentations is now open! +
++ Firstly, we’ve migrated to a new CfP system this year, from OSEM to Pretalx. +
+
+ Simply go to the
+
+ new submission portal
+
+ and create a new account. Scroll down to the bottom of the page, and click
+
+ Submit a proposal
+
+ .
+Then just follow the steps indicated. You will be able save a draft and come back to it when you are ready to submit.
+
+ We like to see specific introductions to open-source software, hardware, and tools, as well as technical deep-dives. Outside of technical talks, we welcome talks on FLOSS alternatives to big tech companies’ products, hacking for good, personal security and privacy, and open-source in non-tech domains such as education and art. +
++ We’re accepting both 20-minute and 50-minute talks from in-person and virtual presenters. We welcome uncommonly heard perspectives and like to watch presenters get out of their comfort zone to apply lessons across technical disciplines. +
++ + **We are not looking for sponsored talks** + + ; but you can take a look at our + + Sponsorship Prospectus + + for details on how to reach our attendees in other ways. As a small community event, our attendees tend to be university students, open source hobbyists and engineers, security professionals, technical writers, and more, skewing toward community rather than a corporate feel. +
++ We’re looking for talks related to open-source which fall broadly into the ten categories below. We’ve added examples of past talks for each to give you an idea of what we might be looking for. +
++ If you have a great idea for a talk on open-source which doesn’t fit into these categories, then submit it under ‘Everything Else’. +
++ The SeaGL + + Code of Conduct + + and + + Health & Safety Policy + + applies to staff, presenters, volunteers, attendees, and sponsors alike. The content of your presentation, and your behaviour at the conference, must abide by both the Code of Conduct and Health & Safety Policy. +
++ To present at SeaGL, you’ll need to be able to do one of the following: +
++ SeaGL pioneered the idea of CfP Office Hours, so stay tuned for details. If you need help in the meantime, please email us at + + cfp-help@seagl.org + + , or join + + the General Discussion room + + in SeaGL’s Matrix space. +
+
+ You can enter proposals until
+
+ 2024-06-30 23:59 (UTC)
+
+ Extended until
+
+ 2024-08-05 23:59 (UTC)
+
+
+ 2024-07-14 23:59 (UTC)
+
+ .
+
+ SeaGL is an annual community-focused Free/Libre/Open-Source event in Seattle. Since 2020, we also broadcast all over the world virtually! +
++ Hello FLO (free/libre/open) friends! With a goal of hosting both in-person and remote activities this year, we are looking to expand our all-volunteer conference committees with new helpers and coordinators for SeaGL 2024. +
++ Starting around mid-January or early-February a kick-off meeting is scheduled, previous volunteers and interested parties are invited to attend. During this meeting we set a general timeline, see what area(s) folks are interested in spending their time, and review notes from the previous year’s retrospective. +
++ After the kick-off meeting, committees figure out their meeting cadence and create an initial timeline for themselves. We also gather every other week as all-staff to go over outstanding tasks and keep everyone abreast of the progress committees are making. +
++ There are a lot of tasks that come together to make a successful conference. + + Get Involved + + page, they are also listed here: +
++ Committees are usually pretty flexible, and many folks find themselves on more than one, depending on where their interests lie. Ideally, each committee has two coordinators to share some responsibilities, provide redundancy, and enhance knowledge transfer during transitions. +
++ A coordinator essentially takes on the stewardship for one of SeaGL’s committees. This includes the following core responsibilities: +
++ A coordinator isn’t necessarily experienced in their committee’s specific area of responsibility, and they are not expected to do all of their committee’s work. Their primary responsibility is to make sure everything in their committee’s purview is being kept on-track and accomplished in a timely manner. +
++ First, check the + + Get Involved + + page. +
++ If you have questions, we’d love to answer them! Reach out to us on + + Matrix + + or send an e-mail to + + participate@seagl.org + + . We also welcome you to fill out this + + volunteer application form + + . However you get ahold of us, we’ll try to respond within 48 hours. +
++ Thank you for reading this, and we hope that you consider becoming an important part of one of the best FLO community conferences! +
++ Please join us in + + Matrix + + . +
++ + Mastodon + + | + + Pixelfed + + | + + Twitter + + | + + Facebook + + | + + YouTube + +
+
+ An overview of SeaGL’s social media activity is available in
+
+
+ #social-media:seagl.org
+
+
+ .
+
+
+ participate@seagl.org
+
+ |
+
+ press@seagl.org
+
+
+ or join the
+
+ announcement mailing list
+
+ .
+
+ We will have a small hall available for in-person exhibitors as well as virtual expo hall space available at SeaGL 2024. +Free/libre/open-source software/hardware projects and non-profit organizations may request gratis space. +There are several paid sponsorship levels and add-ons for other entities. +If your group would like to exhibit at SeaGL, please review our + + Partnership/Sponsor Prospectus + + or send an email to + + sponsor@seagl.org + + for more information. +
++ We can’t do what we need to do without the support of the community. +If you would like to offer financial support but don’t need an exhibit table, please send an email to + + sponsor@seagl.org + + . +
++ Our fiscal sponsor, + + + Open Source Initiative + + + , set up a donation page enabling you to support SeaGL. +These contributions may be tax deductible as OSI is a 501(c)(3) non-profit organization. +Thank you for your support! +
+ ++ + + + +
+
+ I'm in
+
+
+ [Address Redacted]
+
+
+ ,
+ a developer team of students who want to
+
+ change the world
+
+ .
+
+ I'm the
+
+ CEO
+
+ and one of the
+
+ founders
+
+ of [Address Redacted].
+
+ I can do programming with some develop languages such as
+ C++, Python, Swift, HTML, CSS, etc.
+
+ There is a saying from Steve Jobs, "
+
+ Stay hungry, stay foolish.
+
+ " This quote has always influenced me.
+
+
+
+ [Name Redacted]
+
+
+
+
+
+ Age:
+
+ 13
+
+
+
+
+ Address:
+
+ Hangzhou, Zhejiang Province, People's Republic of China
+
+
+
+
+ E-mail:
+
+
+ [Email Redacted]
+
+
+
+
+
+ Bilibili:
+
+
+ @[Name Redacted]
+
+
+
+
+
+ CSDN:
+
+
+ @[Name Redacted]
+
+
+
+
+
+ Zhihu:
+
+
+ @[Name Redacted]
+
+
+
+
+ CEO + + • + + + May 11st, 2023 - Present + +
++ I'm one of [Address Redacted]'s founders and I'm the CEO of [Address Redacted]. I led the team to learn about the history of Apple and the story of Steve Jobs. +
++ Program Developer + + • + + + March 23rd, 2024 - August 4th, 2024 + +
+
+ This is my friend
+
+ @[Name Redacted]
+
+ 's studio
+ that engaged in website operation and software development industry. I was invited to join.
+
+ In the end, because of his mental illness and bad mood, I was fired.
+
+ + September, 2023 - Present + +
++
++ + September, 2017 - July, 2023 + +
++
++ I have quite a lot of skills, not only these but also more. +
+ + ++ Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. +
+ + + + Branding, Webdesign + ++ Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. +
+ + + + Branding, Web Development + ++ Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. +
+ + + + Branding + ++ Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. +
+ + + + Photography + ++ Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. +
+ + + + Branding, Webdesign + ++ Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. +
+ + + + Photography + ++ Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. +
+ + + + Branding, Illustration + ++ Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. +
+ + + + Webdesign, Photography + ++ + Wait for some times. + +
+
+ If you are also a
+
+ developer
+
+ ,
+ a
+
+ designer
+
+ or we have
+
+ the same dream
+
+ .
+ You can input your contact details in this form.
+ Then we can talk about the
+
+ technologies
+
+ .
+ It can improve our abilities of the develop or design.
+
+ I'm looking forward to see your message!
+
+ Effective software engineering requires healthy software and teams. A healthy software is maintainable, well-performing, with low technical debt, and based on sound design decisions. +
+
+
+ Large, complex, and long-lived systems are hard to design and maintain! We need evidence-based tools to make architecture decisions and manage technical debt.
+
+
+
+ There’s too much code in the world! We should rethink the software stack with DSLs for better productivity, reliability, and stakeholder communication.
+
+
+
+ Building a software system is one thing, but maintaining it is much more expensive: this is the phase we need to prioritize!
+
+
+
+ To ensure system longevity, reduce environmental footprint, and maintain operational profitability, we need to connect design-time and run time.
+
+
+
+ Software data is a boundless reservoir empowering decision-making with greater insight and navigating trade-offs relevant to society (e.g., fairness) and the software industry (e.g., developer productivity).
+
+
+
+ If software development is to evolve, we need human-centered tooling to leverage cross-system knowledge sharing.
+
+
+ + AI for Software Engineering + +
++ + Cloud-based Systems + +
++ + Developer Tools + +
++ + Domain-Specific Languages + +
++ + Distributed Systems + +
++ + Empirical Software Engineering + +
++ + Human Factors + +
++ + Maintenance and Evolution + +
++ + Mining Software Repositories + +
++ + Open Source + +
++ + Software Architecture + +
++ + Sustainable Software + +
++ + Technical Debt + +
++ [简体中文] + + [English] + +
++ 这是 UIGF-Org 网站的代码储存库。你可以访问 + + [URL Redacted] + + 以查看实时版本 +
+
+ git clone
+
+ )
+
+ npm install
+
+ 命令
+
+ npm run docs:dev
+
+ 命令
+
+ http://localhost:8080
+
+ + 请确保您的项目对于对应标准具有完整的导入与导出支持,能够正确导出可通过验证的该标准格式文件,能够正确导入可通过验证的、仅具有必要字段的该标准格式文件。 +
++ 克隆这个库 +
+
+ 在
+
+ docs/en/
+
+ 和
+
+ docs/zh/
+
+ 目录下,找到
+
+ partnership-list.md
+
+
+ 在正确的标准区域中,复制以下代码并填入你项目的信息 +
+ <Pcd
+ bg=""
+ icon=""
+ repo=""
+ site=""
+ title=""
+ desc=""
+ import export>
+ <template #import>
+ <Pcb label="UIGF vx.x" :games="['ys', 'sr', 'zzz_']" bg=""></Pcb>
+ <Pcb bg="">Text</Pcb>
+ </template>
+ <template #export>
+ <Pcb label="UIGF vx.x" :games="['ys', 'sr', 'zzz_']" bg=""></Pcb>
+ <Pcb bg="">Text</Pcb>
+ </template>
+ </Pcd>
+
+
+ bg
+
+
+ : 项目截图或宣传图的 URL
+
+ icon
+
+
+ : 项目图标的 URL
+
+ repo
+
+
+ : 项目代码库的 URL
+
+ site
+
+
+ : 项目主页的 URL
+ + 示例代码: +
+<!-- 项目支持UIGFv2.4~4.0的导入,但仅支持UIGF3.0 4.0的导出 -->
+<Pcd
+ bg="/partnerships/TeyvatGuide/AppPreview.png"
+ icon="/partnerships/TeyvatGuide/logo.png"
+ repo=""
+ site=""
+ title="提瓦特指南"
+ desc="Game Tool for Genshin Impact Player"
+ import export>
+ <template #import>
+ <Pcb label="UIGF v4.0" :games="['ys', 'sr_', 'zzz_']" bg="orange"></Pcb>
+ <Pcb label="UIGF v3.0" :games="['ys']" bg="white"></Pcb>
+ <Pcb label="UIGF v2.4" :games="['ys']" bg="white"></Pcb>
+ <Pcb label="UIGF v2.3" :games="['ys']" bg="white"></Pcb>
+ </template>
+ <template #export>
+ <Pcb label="UIGF v4.0" :games="['ys', 'sr_', 'zzz_']" bg="orange"></Pcb>
+ <Pcb label="UIGF v3.0" :games="['ys']" bg="white"></Pcb>
+ </template>
+</Pcd>
+
+
+ 请仅将您的项目置于“使用 UIGF (v4.0 或以上) 标准的项目”区域中,并添加对应旧有认证版本的
+
+ docs/.vuepress/public/partnerships
+
+ 目录下以你的项目名称创建一个文件夹,并上传相关图片资源。 如果你创建的资源路径为
+
+ docs/.vuepress/public/partnerships/sample-project/logo.png
+
+ ,则其 URL 路径可以写为
+
+ https://uigf.org/partnerships/sample-project/logo.png
+
+ 或
+
+ /partnerships/sample-project/logo.png
+
+ + Greetings, and welcome to my GitHub page, I'm [Name Redacted]! + + featured projects + + below! +
++ If you would like to support my work, feel free to... +
++ Below you'll find a collection of projects that I've worked on over the years! +
++ This test is still a mess, hence why it's called legacy. It will be replaced. +
+
+ SexValues is a quiz, running on a modded base of
+
+ 8values
+
+ ,
+that attempts to map your sexuality. You will be presented by a statement, and then you will answer with your opinion on the statement,
+from
+
+ Strongly Agree
+
+ to
+
+ Strongly Disagree
+
+ , with each answer slightly affecting your scores. At the end of the quiz, your
+answers will becompared to the maximum possible for each value, thus giving you a percentage. Answer honestly!
+
+
+ There are
+
+
+
+ 27
+
+
+
+ questions in the test.
+
+ There are five axes - and each has two opposing values assigned to them. They are: +
++ + MASCULINE + +
++ Those with higher Masculine scores have attraction towards masculinity or males. + Stereotypical masculine traits are: strength, courage, independence, leadership, assertiveness +
++ ATTRACTION +
+ ++ + FEMININE + +
++ Those with higher Feminine scores have attraction towards femininity or women. + Stereotypical feminine traits are: emotional, kind, helpful, devoted +
++ + HYPERSEXUAL + +
++ Those with higher Hypersexual scores tend to have extremely frequent or suddenly increased libido. +
++ SEX DRIVE +
+ ++ + HYPOSEXUAL + +
++ Those with higher Hyposexual scores are characterized + by a lack or absence of sexual fantasies and desire for sexual activity. +
++ + DOMINANT + +
++ Those with higher Dominant scores tend to like having power and influence over others. +
++ DOMINANCE +
+ ++ + SUBMISSIVE + +
++ Those with higher Submissive scores tend to like being dominated and ordered around. +
++ + DEVIANT + +
++ Those with higher Deviant scores tend to have many (extremer) fetishes and kinks. +
++ DEVIANCE +
+ ++ + PURE + +
++ Those with higher Pure scores tend to not have many fetishes and kinks; generally they look for vanilla experience. +
++ + AFFECTIVE + +
++ Those with higher Affective scores tend to only be sexual around people they have romantic feelings or other affections to. +
++ AFFECTION +
+ ++ + HEDONIST + +
++ Those with higher Hedonist scores tend to be more open about their sexuality and don't see it as only exclusive to their partner(s). +
++ You can contact me via + + censusbot3@gmail.com + + , + + Discord + + or + + Twitter + + . +
++ This site uses Google Analytics. As well at the end of the test, you will be given the option to fill out general demographic information about yourself. +
++ SexValues is licensed under the MIT License, which permits "without restriction" the rights to "use, copy, modify, + merge, publish, distribute, sublicense, and/or sell + copies of the Software". Same as 8values license. +
+ + + diff --git a/g71.png b/g71.png new file mode 100644 index 0000000000000000000000000000000000000000..0dfd0316931e971cf5b12e8548cf897368d6b535 --- /dev/null +++ b/g71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b78195cf8c917b5c0a09c7946d7366f8fd1d006767666e45dcb4a36d80ee5a6 +size 285056 diff --git a/g72.html b/g72.html new file mode 100644 index 0000000000000000000000000000000000000000..0483500bd70e4ff5f4d202cc3d39a2aafdb79507 --- /dev/null +++ b/g72.html @@ -0,0 +1,597 @@ + + + + + + + + ++ + 每日分享免费节点、免费机场、ssr节点、v2ray节点、v2ray订阅、clash节点、clash订阅、shadowrocket订阅、Quantumult X订阅、Clash .NET订阅、小火箭节点、小猫咪节点、免费翻墙、免费科学上网、免费梯子、免费trojan节点、蓝灯、谷歌商店、翻墙梯子、安卓VPN、iphone翻墙节点、iphone vpn、一键翻墙浏览器、节点分享、免费SSR、蓝灯、谷歌商店、V2ary免费节点、代理、proxy代理科学上网、TG代理、电报代理、Telegram代理、ip加速、翻墙软件、socks5、破解VPN、机场推荐、节点订阅、破解VPN + +
++ **香港:Netflix + | ++ Disneyplus (不保证100%) + | ++ Dazn + | ++ TVB + | ++ Amazon Prime + | ++ HBO GO + | ++ Now E + | ++ Viu.TV + | ++ BiliBili 港限** + | +
+ **新加坡:Netflix + | ++ Disneyplus (不保证100%)** + | +
+ **台湾:动画疯 + | ++ Netflix + | ++ Disneyplus(不保证100%) + | ++ Dazn + | ++ HBO GO + | ++ Bilibili Taiwan + | ++ catchplay + | ++ kktv + | ++ myvideo + | ++ LiTV + | ++ 4GTV.TV + | ++ LineTV.TW + | ++ Hami Video + | ++ CatchPlay+ + | ++ Eleven Sports TW** + | +
+ **日本:Netflix + | ++ DMM + | ++ Disneyplus(不保证100%) + | ++ Abema + | ++ Hulu Japan + | ++ NicoNico + | ++ Telasa + | ++ Paravi + | ++ U-NEXT + | ++ TVer** + | +
+ 套餐 + | ++ 每月流量 + | ++ 月付 + | ++ 季付(-10%) + | ++ 半年付(-15%) + | ++ 年付(-20%+送60天) + | +
---|---|---|---|---|---|
+ 轻量套餐 + | ++ 100G + | ++ 9.9元 + | ++ 27元 + | ++ 51元 + | ++ 96元 + | +
+ 标准套餐 + | ++ 200G + | ++ 18.8元 + | ++ 49元 + | ++ 96元 + | ++ 179元 + | +
+ 旗舰套餐 + | ++ 300G + | ++ 28元 + | ++ 77元 + | ++ 146元 + | ++ 278元 + | +
+
+ 免费注册试用:
+
+ https://mikasa.cloud
+
+
+
+
+ 免费注册试用:
+
+ https://mikasa.cloud
+
+
+
+
+ 免费注册试用:
+
+ https://mikasa.cloud
+
+
+
+
+
+ 国内注册地址:
+
+ https://bit.ly/4963hEA
+
+
+
+
+ 注:如果全部节点不可用,请先检查客户端是否最新版本。
+
+ 如果不是最新版本,请前往 Mikasa 官网下载最新版本。
+
+ + TG电报群组: + + https://t.me/mikasacloudgrp + + +
+https://raw.gitmirror.com/sun9426/sun9426.github.io/main/subscribe/v2ray.txt
+
+ https://raw.gitmirror.com/sun9426/sun9426.github.io/main/subscribe/Clash.yaml
+
+ ss://Y2hhY2hhMjAtaWV0Zi1wb2x5MTMwNTo2ZmU2YWJiMS03MWYzLTQ4ZGQtYmMwNi0wMTI1MmQ2ZTkzZGQ=@8h2k01.a3b5wy.xyz:36016#%E5%89%A9%E4%BD%99%E6%B5%81%E9%87%8F%EF%BC%9A10%20GB
+ss://Y2hhY2hhMjAtaWV0Zi1wb2x5MTMwNTo2ZmU2YWJiMS03MWYzLTQ4ZGQtYmMwNi0wMTI1MmQ2ZTkzZGQ=@8h2k01.a3b5wy.xyz:36016#%E5%A5%97%E9%A4%90%E5%88%B0%E6%9C%9F%EF%BC%9A%E9%95%BF%E6%9C%9F%E6%9C%89%E6%95%88
+ss://Y2hhY2hhMjAtaWV0Zi1wb2x5MTMwNTo2ZmU2YWJiMS03MWYzLTQ4ZGQtYmMwNi0wMTI1MmQ2ZTkzZGQ=@8h2k01.a3b5wy.xyz:36016#%E6%97%A0%E6%B3%95%E4%BD%BF%E7%94%A8%E8%AF%B7%E6%9D%A5%E5%AE%98%E7%BD%91%E6%9B%B4%E6%96%B0%E8%AE%A2%E9%98%85
+ss://Y2hhY2hhMjAtaWV0Zi1wb2x5MTMwNTphNTBmYTEyYi1iMGY3LTQwOTMtYWY3Mi00ZjQwMWFlNDk1Nzg=@8h2k01.a3b5wy.xyz:36016#%E5%AE%98%E7%BD%91%E5%9C%B0%E5%9D%80%EF%BC%9Abit.ly%2Fsun9426
+ss://Y2hhY2hhMjAtaWV0Zi1wb2x5MTMwNTo2ZmU2YWJiMS03MWYzLTQ4ZGQtYmMwNi0wMTI1MmQ2ZTkzZGQ=@8h2k01.a3b5wy.xyz:36016#%F0%9F%87%AD%F0%9F%87%B0%E9%A6%99%E6%B8%AF01%20%7C%20%E4%B8%93%E7%BA%BF
+ss://Y2hhY2hhMjAtaWV0Zi1wb2x5MTMwNTo2ZmU2YWJiMS03MWYzLTQ4ZGQtYmMwNi0wMTI1MmQ2ZTkzZGQ=@8h2k02.a3b5wy.xyz:36017#%F0%9F%87%AD%F0%9F%87%B0%E9%A6%99%E6%B8%AF02%20%7C%20%E4%B8%93%E7%BA%BF
+ss://Y2hhY2hhMjAtaWV0Zi1wb2x5MTMwNTo2ZmU2YWJiMS03MWYzLTQ4ZGQtYmMwNi0wMTI1MmQ2ZTkzZGQ=@8h2k03.a3b5wy.xyz:36018#%F0%9F%87%AD%F0%9F%87%B0%E9%A6%99%E6%B8%AF03%20%7C%20%E4%B8%93%E7%BA%BF
+ss://Y2hhY2hhMjAtaWV0Zi1wb2x5MTMwNTo2ZmU2YWJiMS03MWYzLTQ4ZGQtYmMwNi0wMTI1MmQ2ZTkzZGQ=@8t6w01.a3b5wy.xyz:36026#%F0%9F%87%B9%F0%9F%87%BC%E5%8F%B0%E6%B9%BE01%20%7C%20%E4%B8%93%E7%BA%BF
+ss://Y2hhY2hhMjAtaWV0Zi1wb2x5MTMwNTo2ZmU2YWJiMS03MWYzLTQ4ZGQtYmMwNi0wMTI1MmQ2ZTkzZGQ=@8t6w02.a3b5wy.xyz:36027#%F0%9F%87%B9%F0%9F%87%BC%E5%8F%B0%E6%B9%BE02%20%7C%20%E4%B8%93%E7%BA%BF
+ss://Y2hhY2hhMjAtaWV0Zi1wb2x5MTMwNTo2ZmU2YWJiMS03MWYzLTQ4ZGQtYmMwNi0wMTI1MmQ2ZTkzZGQ=@8t6w03.a3b5wy.xyz:36028#%F0%9F%87%B9%F0%9F%87%BC%E5%8F%B0%E6%B9%BE03%20%7C%20%E4%B8%93%E7%BA%BF
+ss://Y2hhY2hhMjAtaWV0Zi1wb2x5MTMwNTo2ZmU2YWJiMS03MWYzLTQ4ZGQtYmMwNi0wMTI1MmQ2ZTkzZGQ=@1j8p01.a3b5wy.xyz:36010#%F0%9F%87%AF%F0%9F%87%B5%E6%97%A5%E6%9C%AC01%20%7C%20%E4%B8%93%E7%BA%BF
+ss://Y2hhY2hhMjAtaWV0Zi1wb2x5MTMwNTo2ZmU2YWJiMS03MWYzLTQ4ZGQtYmMwNi0wMTI1MmQ2ZTkzZGQ=@1j8p01.a3b5wy.xyz:36011#%F0%9F%87%AF%F0%9F%87%B5%E6%97%A5%E6%9C%AC02%20%7C%20%E4%B8%93%E7%BA%BF
+ss://Y2hhY2hhMjAtaWV0Zi1wb2x5MTMwNTo2ZmU2YWJiMS03MWYzLTQ4ZGQtYmMwNi0wMTI1MmQ2ZTkzZGQ=@1j8p03.a3b5wy.xyz:36012#%F0%9F%87%AF%F0%9F%87%B5%E6%97%A5%E6%9C%AC03%20%7C%20%E4%B8%93%E7%BA%BF
+ss://Y2hhY2hhMjAtaWV0Zi1wb2x5MTMwNTo2ZmU2YWJiMS03MWYzLTQ4ZGQtYmMwNi0wMTI1MmQ2ZTkzZGQ=@9s5g01.a3b5wy.xyz:36020#%F0%9F%87%B8%F0%9F%87%AC%E6%96%B0%E5%8A%A0%E5%9D%A101%20%7C%20%E4%B8%93%E7%BA%BF
+ss://Y2hhY2hhMjAtaWV0Zi1wb2x5MTMwNTo2ZmU2YWJiMS03MWYzLTQ4ZGQtYmMwNi0wMTI1MmQ2ZTkzZGQ=@9s5g02.a3b5wy.xyz:36021#%F0%9F%87%B8%F0%9F%87%AC%E6%96%B0%E5%8A%A0%E5%9D%A102%20%7C%20%E4%B8%93%E7%BA%BF
+ss://Y2hhY2hhMjAtaWV0Zi1wb2x5MTMwNTo2ZmU2YWJiMS03MWYzLTQ4ZGQtYmMwNi0wMTI1MmQ2ZTkzZGQ=@9s5g03.a3b5wy.xyz:36022#%F0%9F%87%B8%F0%9F%87%AC%E6%96%B0%E5%8A%A0%E5%9D%A103%20%7C%20%E4%B8%93%E7%BA%BF
+ss://Y2hhY2hhMjAtaWV0Zi1wb2x5MTMwNTo2ZmU2YWJiMS03MWYzLTQ4ZGQtYmMwNi0wMTI1MmQ2ZTkzZGQ=@3u1s01.a3b5wy.xyz:36030#%F0%9F%87%BA%F0%9F%87%B8%E7%BE%8E%E5%9B%BD01%20%7C%20%E4%B8%93%E7%BA%BF
+ss://Y2hhY2hhMjAtaWV0Zi1wb2x5MTMwNTo2ZmU2YWJiMS03MWYzLTQ4ZGQtYmMwNi0wMTI1MmQ2ZTkzZGQ=@3u1s02.a3b5wy.xyz:36031#%F0%9F%87%BA%F0%9F%87%B8%E7%BE%8E%E5%9B%BD02%20%7C%20%E4%B8%93%E7%BA%BF
+ss://Y2hhY2hhMjAtaWV0Zi1wb2x5MTMwNTo2ZmU2YWJiMS03MWYzLTQ4ZGQtYmMwNi0wMTI1MmQ2ZTkzZGQ=@3u1s03.a3b5wy.xyz:36032#%F0%9F%87%BA%F0%9F%87%B8%E7%BE%8E%E5%9B%BD03%20%7C%20%E4%B8%93%E7%BA%BF
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@2n8l01.a3b5wy.xyz:36901?security=tls&sni=nl01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%BA%F0%9F%87%B8%E7%BE%8E%E5%9B%BD%20%7C%20chatgpt%E8%A7%A3%E9%94%81%E4%B8%93%E7%94%A8
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@8h2k01.a3b5wy.xyz:36601?security=tls&sni=hk01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%AD%F0%9F%87%B0%E9%A6%99%E6%B8%AF01
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@8h2k02.a3b5wy.xyz:36606?security=tls&sni=hk02.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%AD%F0%9F%87%B0%E9%A6%99%E6%B8%AF02
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@8h2k03.a3b5wy.xyz:36611?security=tls&sni=hk03.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%AD%F0%9F%87%B0%E9%A6%99%E6%B8%AF03
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@1j8p01.a3b5wy.xyz:36116?security=tls&sni=jp01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%AF%F0%9F%87%B5%E6%97%A5%E6%9C%AC01
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@1j8p02.a3b5wy.xyz:36106?security=tls&sni=jp02.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%AF%F0%9F%87%B5%E6%97%A5%E6%9C%AC02
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@1j8p03.a3b5wy.xyz:36111?security=tls&sni=jp03.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%AF%F0%9F%87%B5%E6%97%A5%E6%9C%AC03
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh6/wn4e15pel5pysMDQiLA0KICAiYWRkIjogIjFqOHAwNC5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzYxMTYiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogImpwMDQuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh6/wn4e15pel5pysMDUiLA0KICAiYWRkIjogIjFqOHAwNS5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzYxMDYiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogImpwMDUuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh6/wn4e15pel5pysMDYiLA0KICAiYWRkIjogIjFqOHAwNi5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzYxMTEiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogImpwMDYuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@8t6w01.a3b5wy.xyz:36301?security=tls&sni=tw01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%B9%F0%9F%87%BC%E5%8F%B0%E6%B9%BE01
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@8t6w02.a3b5wy.xyz:36306?security=tls&sni=tw02.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%B9%F0%9F%87%BC%E5%8F%B0%E6%B9%BE02
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@8t6w03.a3b5wy.xyz:36311?security=tls&sni=tw03.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%B9%F0%9F%87%BC%E5%8F%B0%E6%B9%BE03
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@9s5g01.a3b5wy.xyz:36201?security=tls&sni=sg01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%B8%F0%9F%87%AC%E6%96%B0%E5%8A%A0%E5%9D%A101
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@9s5g02.a3b5wy.xyz:36206?security=tls&sni=sg02.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%B8%F0%9F%87%AC%E6%96%B0%E5%8A%A0%E5%9D%A102
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@9s5g03.a3b5wy.xyz:36211?security=tls&sni=sg03.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%B8%F0%9F%87%AC%E6%96%B0%E5%8A%A0%E5%9D%A103
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh7jwn4es5paw5Yqg5Z2hMDQiLA0KICAiYWRkIjogIjlzNWcwNC5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzYyMDEiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogInNnMDQuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh7jwn4es5paw5Yqg5Z2hMDUiLA0KICAiYWRkIjogIjlzNWcwNS5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzYyMDYiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogInNnMDUuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh7jwn4es5paw5Yqg5Z2hMDYiLA0KICAiYWRkIjogIjlzNWcwNi5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzYyMTEiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogInNnMDYuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@3u1s01.a3b5wy.xyz:36501?security=tls&sni=us01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%BA%F0%9F%87%B8%E7%BE%8E%E5%9B%BD01
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@3u1s02.a3b5wy.xyz:36506?security=tls&sni=us02.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%BA%F0%9F%87%B8%E7%BE%8E%E5%9B%BD02
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@3u1s03.a3b5wy.xyz:36511?security=tls&sni=us03.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%BA%F0%9F%87%B8%E7%BE%8E%E5%9B%BD03
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh7rwn4e4576O5Zu9MDQiLA0KICAiYWRkIjogIjN1MXMwNC5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzY1MDEiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogInVzMDQuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh7rwn4e4576O5Zu9MDUiLA0KICAiYWRkIjogIjN1MXMwNS5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzY1MDYiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogInVzMDUuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh7rwn4e4576O5Zu9MDYiLA0KICAiYWRkIjogIjN1MXMwNi5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzY1MTEiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogInVzMDYuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@8r5u01.a3b5wy.xyz:36851?security=tls&sni=ru01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%B7%F0%9F%87%BA%E4%BF%84%E7%BD%97%E6%96%AF01
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh7fwn4e65L+E572X5pavMDQiLA0KICAiYWRkIjogIjhyNXUwNC5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzY4NTEiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogInJ1MDQuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@8m6y01.a3b5wy.xyz:36887?security=tls&sni=my01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%B2%F0%9F%87%BE%E9%A9%AC%E6%9D%A5%E8%A5%BF%E4%BA%9A01
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh7Lwn4e+6ams5p2l6KW/5LqaMDQiLA0KICAiYWRkIjogIjhtNnkwMS5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzY4ODciLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogIm15MDQuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@1t8h01.a3b5wy.xyz:36904?security=tls&sni=th01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%B9%F0%9F%87%AD%E6%B3%B0%E5%9B%BD01
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh7nwn4et5rOw5Zu9MDQiLA0KICAiYWRkIjogIjF0OGgwNC5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzY5MDQiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogInRoMDQuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@7p3h01.a3b5wy.xyz:36801?security=tls&sni=ph01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%B5%F0%9F%87%AD%E8%8F%B2%E5%BE%8B%E5%AE%BE01
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh7Xwn4et6I+y5b6L5a6+MDQiLA0KICAiYWRkIjogIjdwM2gwNC5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzY4MDEiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogInBoMDQuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@8k2r01.a3b5wy.xyz:36401?security=tls&sni=kr01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%B0%F0%9F%87%B7%E9%9F%A9%E5%9B%BD01
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh7Dwn4e36Z+p5Zu9MDQiLA0KICAiYWRkIjogIjhrMnIwNC5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzY0MDEiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogImtyMDQuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@7i4n01.a3b5wy.xyz:36831?security=tls&sni=in01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%AE%F0%9F%87%B3%E5%8D%B0%E5%BA%A601
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh67wn4ez5Y2w5bqmMDQiLA0KICAiYWRkIjogIjdpNG4wNC5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzY4MzEiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogImluMDQuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@6i2r01.a3b5wy.xyz:36877?security=tls&sni=br01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%A7%F0%9F%87%B7%E5%B7%B4%E8%A5%BF01
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh6fwn4e35be06KW/MDQiLA0KICAiYWRkIjogIjZpMnIwNC5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzY4NzciLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogImJyMDQuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@3v4n01.a3b5wy.xyz:36874?security=tls&sni=vn01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%BB%F0%9F%87%B3%E8%B6%8A%E5%8D%9701
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh7vwn4ez6LaK5Y2XMDQiLA0KICAiYWRkIjogIjN2NG4wNC5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzY4NzQiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogInZuMDQuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@2h4u01.a3b5wy.xyz:36864?security=tls&sni=hu01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%AD%F0%9F%87%BA%E5%8C%88%E7%89%99%E5%88%A901
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh63wn4e65YyI54mZ5YipMDQiLA0KICAiYWRkIjogIjJoNHUwNC5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzY4NjQiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogImh1MDQuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@9a8r01.a3b5wy.xyz:36861?security=tls&sni=ar01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%A6%F0%9F%87%B7%E9%98%BF%E6%A0%B9%E5%BB%B701
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh6bwn4e36Zi/5qC55bu3MDQiLA0KICAiYWRkIjogIjlhOHIwNC5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzY4NjEiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogImFyMDQuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@2t1u01.a3b5wy.xyz:36868?security=tls&sni=tr01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%B9%F0%9F%87%B7%E5%9C%9F%E8%80%B3%E5%85%B601
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh7nwn4e35Zyf6ICz5YW2MDQiLA0KICAiYWRkIjogIjJ0MXUwNC5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzY4NjgiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogInRyMDQuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@8u9a01.a3b5wy.xyz:36871?security=tls&sni=ua01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%BA%F0%9F%87%A6%E4%B9%8C%E5%85%8B%E5%85%B001
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh7rwn4em5LmM5YWL5YWwMDQiLA0KICAiYWRkIjogIjh1OWEwNC5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzY4NzEiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogInVhMDQuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@5a4u01.a3b5wy.xyz:36821?security=tls&sni=au01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%A6%F0%9F%87%BA%E6%BE%B3%E5%A4%A7%E5%88%A9%E4%BA%9A01
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh6bwn4e65r6z5aSn5Yip5LqaMDQiLA0KICAiYWRkIjogIjVhNHUwNC5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzY4MjEiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogImF1MDQuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@2u3k01.a3b5wy.xyz:36811?security=tls&sni=uk01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%AC%F0%9F%87%A7%E8%8B%B1%E5%9B%BD01
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh6zwn4en6Iux5Zu9MDQiLA0KICAiYWRkIjogIjJ1M2swNC5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzY4MTEiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogInVrMDQuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@3d6e01.a3b5wy.xyz:36841?security=tls&sni=de01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%A9%F0%9F%87%AA%E5%BE%B7%E5%9B%BD01
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh6nwn4eq5b635Zu9MDQiLA0KICAiYWRkIjogIjNkNmUwNC5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzY4NDEiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogImRlMDQuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@5c1a01.a3b5wy.xyz:36701?security=tls&sni=ca01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%A8%F0%9F%87%A6%E5%8A%A0%E6%8B%BF%E5%A4%A701
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh6jwn4em5Yqg5ou/5aSnMDQiLA0KICAiYWRkIjogIjVjMWEwNC5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzY3MDEiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogImNhMDQuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@6e2s01.a3b5wy.xyz:36884?security=tls&sni=es01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%AA%F0%9F%87%B8%E8%A5%BF%E7%8F%AD%E7%89%9901
+vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIvCfh6rwn4e46KW/54+t54mZMDQiLA0KICAiYWRkIjogIjZlMnMwNC5hM2I1d3kueHl6IiwNCiAgInBvcnQiOiAiMzY4ODQiLA0KICAiaWQiOiAiNmZlNmFiYjEtNzFmMy00OGRkLWJjMDYtMDEyNTJkNmU5M2RkIiwNCiAgImFpZCI6ICIwIiwNCiAgInNjeSI6ICJhdXRvIiwNCiAgIm5ldCI6ICJ0Y3AiLA0KICAidHlwZSI6ICJub25lIiwNCiAgImhvc3QiOiAiIiwNCiAgInBhdGgiOiAiIiwNCiAgInRscyI6ICJ0bHMiLA0KICAic25pIjogImVzMDQuYWJwaWxvdC54eXoiLA0KICAiYWxwbiI6ICIiDQp9
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@dir01.netorigins2u.site:36116?security=tls&sni=jp01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%AF%F0%9F%87%B5%E6%97%A5%E6%9C%AC%5B%E5%9B%BD%E5%A4%96%E7%9B%B4%E8%BF%9E%5D
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@dir01.netorigins2u.site:36201?security=tls&sni=sg01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%B8%F0%9F%87%AC%E6%96%B0%E5%8A%A0%E5%9D%A1%5B%E5%9B%BD%E5%A4%96%E7%9B%B4%E8%BF%9E%5D
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@dir01.netorigins2u.site:36501?security=tls&sni=us01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%BA%F0%9F%87%B8%E7%BE%8E%E5%9B%BD%5B%E5%9B%BD%E5%A4%96%E7%9B%B4%E8%BF%9E%5D
+trojan://6fe6abb1-71f3-48dd-bc06-01252d6e93dd@dir01.netorigins2u.site:36864?security=tls&sni=hu01.abpilot.xyz&type=tcp&headerType=none#%F0%9F%87%AD%F0%9F%87%BA%E5%8C%88%E7%89%99%E5%88%A9%5B%E5%9B%BD%E5%A4%96%E7%9B%B4%E8%BF%9E%5D
+
+
+
+
+
+
+ 本站分享的免费Trojan节点仅提供URI链接,不提供二维码配置方式,所以请使用Trojan客户端添加节点URI链接即可。
+
+
+
+
+
+ 如果您在使用苹果iOS系统,我推荐您使用 Shadowrocket。
+
+
+
+
+
+ 如果您在使用安卓Android系统,我推荐您使用 V2RayNG。
+
+
+
+
+
+ 如果您在使用Windows系统,我推荐您使用 V2RayN。
+
+
+
+
+
+ 如果您在使用苹果macOS系统,我推荐您使用 ClashX 或 Clash for Windows。
+
+
+
+
+
+ 如果您在使用Linux系统,我推荐您使用 Clash for Windows。
+
+
+
+
+
+
+ 请不要用分享的免费Trojan节点进行大流量下载,否则肯定会影响大家的使用体验。
+
+
+
+
+
+ 如果您对Trojan免费节点不够满意,那么我推荐您使用更极速稳定的付费Trojan节点购买。
+
+
+
+
+ + 特色: + + 1️⃣解锁国内抖音留言、主页显示海外国家(独家研发) +2️⃣全中转高速稳定机场 +3️⃣提供大流量套餐,畅玩TikTok、Netflix、Disney+、ChatGPT +4️⃣早晚YouTube 8K无压力,拖着看** +5️⃣节点覆盖全球众多地区,包含日本韩国🇸🇬新加坡🇭🇰香港🇹🇼台湾🇻🇳越南🇲🇾马来西亚美国德国🇳🇱荷兰英国🇨🇦加拿大 +6️⃣老牌机场,值得信赖! +
++ + 套餐:低至9元/月◽️注册地址: + +
+
+
+ 免费注册试用:
+
+ 抖音IP解锁专属节点
+
+
+
+
+ 免费注册试用:
+
+ 抖音IP解锁专属节点
+
+
+
+
+ 免费注册试用:
+
+ 抖音IP解锁专属节点
+
+
+
+
+ + 每日分享免费节点、免费机场、ssr节点、v2ray节点、v2ray订阅、clash节点、clash订阅、shadowrocket订阅、Quantumult X订阅、Clash .NET订阅、小火箭节点、小猫咪节点、免费翻墙、免费科学上网、免费梯子、免费trojan节点、蓝灯、谷歌商店、翻墙梯子、安卓VPN、iphone翻墙节点、iphone vpn、一键翻墙浏览器、节点分享、免费SSR、蓝灯、谷歌商店、V2ary免费节点、代理、proxy代理科学上网、TG代理、电报代理、Telegram代理、ip加速、翻墙软件、socks5、破解VPN、机场推荐、节点订阅、破解VPN + +
+ ++ 单例模式 保证一个类仅有一个实例,并提供一个访问它的全局访问点。比如window对象,全局缓存,全局状态管理,全局弹窗等等 +
+ ++ 深拷贝 相较于“浅克隆”,“深克隆”方式占用的空间更大、性能更差,因为它不得不递归遍历引用类型的数据。而当数据结构中出现循环引用,或者属性之间相互引用时,简单地针对数据类型进行判断可能无法得到正确的“深克隆”结果 +
+ ++ 前几天读《Vue.js 设计与实现》,不仅get到很多基础的知识点,还惊叹于他的实现原理 +
+ ++ 背景 同事给了一个自动生成视频的demo,我需要将其部署到服务器上面去。因为生成视频油GPU的计算,所以原有的部署方式不适用,需要部署到公有云tke。就涉及到到了docker +
+ +
+ Transvalues is, in essence, a half serious shitpost quiz that attempts to assign percentages for eight different values related to trans issues.
+
+ It is generally made for trans people but cis people very familiar with trans issues can probably take it too.
+
+ You will be presented by a statement, and then you will answer with your opinion on the statement, from
+
+ Strongly Agree
+
+ to
+
+ Strongly Disagree
+
+ , with each answer slightly affecting your scores.
+
+
+ There are
+
+
+
+ 37
+
+
+
+ questions in the test.
+
+ this is a fork of + + 8values + + , which you can check out + + here + +
++ "Twitter User", a member of the twitter subculture. Overtly progressive and terminally online. +
++ "4chan User", a member of the 4chan /tttt/ subculture. It's 4chan meets trans people, what else can I say? +
++ "Truscum", a term coined by a Tumblr user meaning true transsexual scum. It is often refered to as transmedicalism or "transmed". +
++ "Self-ID" is pretty self explanatory. Self-ID advocates say that you are the gender you say you are, no matter what. +
++ "DIY HRT" are transgender hormones that are ordered online without a prescription. Although usually not regulated with blood tests and endocronological supervision, the advocates of diy hrt say it is necessary for people who have trouble getting a prescription for whatever reason. +
++ "Restricted HRT Access", people in favor of this argue that the grey DIY market is dangerous. They say life-changing drugs like gender-affirming hormones should never be sold over the counter and should instead only be given after multiple appointments with psychologists deem it necessary. +
++ "Trans Assimilation" encourages people to try to "pass" as the opposite gender and fit into modern day gender roles as a way to counter transphobia. Assimilationists consider "stealth"(=passing while nobody knows you are trans) the holy grail of transitioning. +
++ "Trans Liberation" is derived from the "Gay liberation" movement from 1960-1980s, but more specified towards trans people. It argues that for trans people to free themselves from oppression, they must engage in radical direct action. +
++ + はじめに: Typst Japan Communityより + +
++ 日本語版 Typst のドキュメントへようこそ! + + Typst + + はアカデミック・ライティング用途を念頭に開発された、TeX などの今までのシステムを覆しうる革新的で多機能な組版エンジンです。もちろん、学術論文に限らず、雑誌や書籍の組版にも適しています。 +
++ この Web サイトは、 + + Typst GmbH + + の許諾を得て、非公式日本語コミュニティ「 + + Typst Japan Community + + 」のボランティアたちが + + 公式ドキュメント + + を翻訳したものです。まだ翻訳途上ですので、翻訳されていない部分や誤訳などがたくさんあり、また情報が古くなる可能性もあるため、ご了承ください。最新の情報は + + 公式ドキュメント + + をご覧ください。ただし、本 Web サイトには、公式ドキュメントにはない日本語の組版に特化した情報やコンテンツも掲載される予定です。 +
++ 皆様が Typst をご利用になる上で、本サイトの情報が一助になれば幸いです。 +
++ Typst は、学術用途のために新たに生まれたマークアップベースの組版システムです。LaTeX のような高度なツールや、Word あるいは Google ドキュメントのような手軽なツールの両方に取って代わるものとして設計されています。私たちが Typst を通して目指しているのは、高機能 + + かつ + + 使っていて楽しくなるような組版ツールを作ることです。 +
++ このドキュメントは、2つの部分に分かれています:実際の使用例を通じて Typst の使い方を学べる、初心者にやさしいチュートリアル。そして、Typst のあらゆる仕様・機能を扱った包括的なリファレンスです。 +
++ また、私たちが開いた Typst の関連コミュニティにもぜひご参加ください。Typst はまだ出来て間もないプロジェクトであるため、皆さんからのフィードバックが非常に貴重なのです。 +
+ ++
++ Основные критерии для сравнительного анализа: +
++ -цена, +
++ -условия пользования, +
++ -функционал, +
++ -сфера применения, +
++ -отзывы клиентов, +
++ -удобство использования. +
++ + + CRM_Битирикс24 + + +
++ • Цена:— пробная -100$ +
++ • Условия пользования:– регистрация и приобретение пакета +
++ • **Функционал: **–помогает продавать больше: автоматизирует продажи, берет под контроль все каналы коммуникаций с клиентами, отправляет рассылки и усиливает повторные продажи. +
++ • Сфера применения: —система управления проектами +
++ • Отзывы клиентов: —положительные +
++ • **Удобства использования: **–Безпасность, удобство использования,тех.поддержка. +• Цена:— пробная -100$ +
++ • Условия пользования:– регистрация и приобретение пакета +
++ • **Функционал: **–помогает продавать больше: автоматизирует продажи, берет под контроль все каналы коммуникаций с клиентами, отправляет рассылки и усиливает повторные продажи. +
++ • Сфера применения: —система управления проектами +
++ • Отзывы клиентов: —положительные +
++ • **Удобства использования: **–Безпасность, удобство использования,тех.поддержка. +• Цена:— пробная -100$ +
++ • Условия пользования:– регистрация и приобретение пакета +
++ • **Функционал: **–помогает продавать больше: автоматизирует продажи, берет под контроль все каналы коммуникаций с клиентами, отправляет рассылки и усиливает повторные продажи. +
++ • Сфера применения: —система управления проектами +
++ • Отзывы клиентов: —положительные +
++ • **Удобства использования: **–Безпасность, удобство использования,тех.поддержка. +
++ • Цена:– 4$ -300$ +
++ • Условия пользования:– регистрация и приобретение пакета +
++ • Функционал:– Единая клиентская база Список всех клиентов компании хранится в одном месте, со всеми необходимыми данными и гибкими настройками +
++ • Сфера применения:– помогает следить за работой сотрудников, хранить историю бизнес-процессов, проводить сложные сделки и поддерживать связь с клиентами +
++ • Отзывы клиентов:– положительные +
++ • Удобства использования:– Безпасность, Интеграция с WhatsApp удобство использования +
++ • Цена:– 0$ -100$ +
++ • Условия пользования:– регистрация и приобретение пакета +
++ • Функционал–: программа для учета в магазинах +
++ • Сфера применения:– Интеграция с сайтом и оборудованием. Настройка касс. +
++ • Отзывы клиентов:– положительные 5+ +
++ • **Удобства использования:– Безпасность, удобство использования, онлайн-консультация +
++ • Цена:– 0$ -100$ +
++ • Условия пользования:– регистрация и приобретение пакета +
++ • Функционал:– решение для eCommerce и ритейла. –Помогает автоматизировать обработку заказов в магазинах.—Объединяет офлайн и онлайн покупателей в единую омниканальную базу. +
++ • Сфера применения:— Позволяет магазинам продавать товары в мессенджерах. –Увеличивает повторные продажи с помощью CRM-маркетинга +
++ • Отзывы клиентов:– положительные +
++ • Удобства использования:– Безпасность, удобство использования, аналитика, привязка к мессенджерам +
++ • Цена:– 10$ -100$ +
++ • Условия пользования:– регистрация и приобретение пакета +
++ • **Функционал: **–онлайн-система управления розничным бизнесом +
++ • Сфера применения:– Программа для магазина с учётной системой, маркетингом и аналитикой. +
++ • Отзывы клиентов:– положительные +
++ • Удобства использования:– Безпасность, удобство использования, можно сделать сайт и приложение магазина, мобильное приложение +
++ • Цена:– 20$ -150$ +
++ • Условия пользования:– регистрация и приобретение пакета +
++ • Функционал:— автоматизация розничных магазинов и сетей +
++ • Сфера применения:– Программа для магазина с учётной системой, маркетингом и аналитикой. +
++ • Отзывы клиентов:– положительные +
++ • Удобства использования:— Безпасность, удобство использования. Настраивается индивидуально под любую сферу торговли.— В программе 1С:Розница 8 реализованы удобные справочники для работы с номенклатурой и ценами, оформления хозяйственных операций, централизованного ввода и обновления данных, а также для получения сведений с помощью встроенного сервиса из общероссийских базовых классификаторов, содержащих информацию о почтовых адресах, банках, странах и пр. +
++ • Цена:– 10$ -100$ +
++ • Условия пользования:– регистрация и приобретение пакета +
++ • Функционал:– Легко внедряемая и быстрая на старте система управления цепочками поставок создана для розницы и большого объема данных.— Совместима со всеми торговыми ERP-решениями, не требует изменения учетной, складской или иных систем. —Выстраивает прогноз, исходя из спроса, а не продаж. +
++ • Сфера применения:– Программа для магазина с учётной системой, маркетингом и аналитикой. +
++ • **Отзывы клиентов: **—положительные +
++ • Удобства использования:– Безпасность. Построение качественного прогноза потребительского спроса на базе очищенной статистики продаж, —с учетом информации об отсутствии товаров на полке, —аномальных всплесков продаж, промо-акций, сезонности и праздников +
++ • Цена:— 0$ -1000$ +
++ • Условия пользования:- -регистрация и приобретение пакета +
++ • Функционал:– свободная и стабильная CRM система, с открытым исходным кодом и без лицензированных платежей, которая позволит увеличить ваши продажи. +
++ • Сфера применения:— Для каждой организации поддерживается множество контактов. —Каждая карточка в клиентской базе имеет ответственного пользователя. +
++ • Отзывы клиентов:– положительные +
++ • **Удобства использования: **–используются гибкие фильтры для выборок и сегментации клиентов, поиск по комбинации любых полей. —Возможна отправка сообщений Email, —SMS клиентам, а также общение в социальных сетях. +
++ • *Цена: **–10$ -100$ +
++ • **Условия пользования: **—регистрация и приобретение пакета +
++ • Функционал:– Облачная система учета для розничной торговли +
++ • Сфера применения: —помогает следить за работой сотрудников, хранить историю бизнес-процессов, проводить сложные сделки и поддерживать связь с клиентами +
++ • **Отзывы клиентов: **—положительные +
++ • Удобства использования:— Безпасность, печатать ценников, аналитика по продажам, ведение складского учета. —Можно подключить онлайн-кассу, сканер штрих-кодов, весы +
++ • Цена:– 0$ -100$ +
++ • Условия пользования: —регистрация и приобретение пакета +
++ • Функционал: —Облачный сервис управления торговлей для малого и среднего бизнеса. Платформы: Веб-приложение, Windows, Mac, Linux, Android, iOS +
++ • Сфера применения:*—- С его помощью можно: управлять продажами и закупками, вести складской учет, —автоматизировать розницу, контролировать финансы, работать с базой клиентов. +
++ • Отзывы клиентов: —положительные +
++ • Удобства использования: —Безпасность, сокращение времени в работе.Удобный интерфейc +
++ Edit this page on GitHub +
+ +
+
+ Summary:
+
+
+ Electron has stated that it will be dropping support for JavaScript's modern, native, import/export. The popular
+
+ import module from './module.js'
+
+ pattern will be removed from Electron.
+
+ (
+
+ Read more
+
+ )
+
+ Languages +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ++ Platforms +
+ + + + + + ++ Click Here +
+ ++ YouTube updates the number of subscribers a channel has (its subscriber count) after a long time. +
++ On YouCount, the subscriber count, of any YouTube channel, is live and is updated every second! +
++ SHOW STATS button can be clicked to see extra insights of the YouTube channel. +
++ YouCount has been specifically designed using the Material Design language to make it look awesome! It is also optimized for mobile devices and has been made to work even with older browsers. +
++ To know more or to get in contact: +
++
++ Support the website by sharing it with your friends! +
+ ++ Copy the code below and paste it where you want to embed this: +
+
+
+
+
+ Adjust its size by changing the "height" and "width" attribute of the iframe. + The size will automatically adjust to the size of the iframe. +
++ Total Views: + | ++ + Loading... + + | +
+ Total Videos: + | ++ + Loading... + + | +
+ Since: + | ++ + Loading... + + | +
+ Last + + videos +
+ ++ [Name Redacted]'s Profile Page at GitHub +
+ ++ Visit My Homepage + + @ + + + + [Name Redacted].Net + + + ( + + 🐽🎱 Powered By + + Hugo + + in + + Chinese + + . + + ) +
++ More + + Contact + + info 📬 + + @ + + + About [Name Redacted].Net + +
+{
+ "name": "[Name Redacted]",
+ "company": "[Name Redacted] dot Net",
+ "blog": "",
+ "location": "Nanjing,China",
+ "bio": "Blogger @ [Name Redacted].Net",
+ "created_at": "2014-06-04T12:52:00Z"
+}
+
+ + + [Name Redacted].COM + + ( + + + Without + + Maintenance 🚧 , Ready for + + Sell + + . + + ) +
++++ 爱是恒久忍耐,又有恩慈; +
++ 爱是不嫉妒;爱是不自夸,不张狂,不做害羞的事,不求自己的益处,不轻易发怒,不计算人的恶,不喜欢不义,只喜欢真理; +
++ 凡事包容,凡事相信,凡事盼望,凡事忍耐。 +
++ 爱是永不止息。先知讲道之能终必归于无有;说方言之能终必停止;知识也终必归于无有。 +
+
+ WGS Extract WWW home +
+ ++ is a desktop tool for verifying, analyzing and manipulating your + + Personal 30x + + WGS + + test + + result. It can also be used with any human genome based + + BAM or CRAM + + file including + + WES + + and Y-only test results. +
++ + WGS Extract + + + User Manual + + : + + v4 User Manual + + (Google Doc) +
++ + Latest Releases + + you can install on the + + supported platforms + + are: +
++ Track + | ++ Version + | ++ Date + | ++ md5 hash signature + | +
---|---|---|---|
+ + + BETA v4 + + + | ++ 44.5 + | ++ 13 Jun 2024 + | ++ fbe59361caaf8cdb6f23df16a249c552 + | +
+ + + ALPHA v4 + + + | ++ 44.6 + | ++ 20 Jun 2024 + | ++ c3c6a283dec9fa0dce66a6210adfb04d + | +
+ + + Dev(eloper) v4+ + + + | ++ 44.9 + | ++ 30 Sep 2024 + | ++ f69b432ef8ebe2364b7c66283bc314bb + | +
+ These are just the installer scripts. + + Installation Section + + in the + + user manual + + for details about installing on your platform. See the + + v4 Release Notes + + in the installation directory for more information about the updates in the current release. + + hashes to verify the Installer you download + + . +
++++
+- + With MacOS Sonoma 14.5 and later, Apple MacOS regressed and turned off allowing unsigned apps to be downloaded and run from outside their store. +
++ sudo spctl --master-disable +
+ . For older releases, the first time you run the app, follow the Ctrl-Click process from before as described in the manual. +- + With MacOS Sequoia 15.0 they have permanently removed the “anywhere” option completely. + + “Install_macos.command” was blocked to protect your Mac. + + with a button next to it that says “Open Anyway”. +
+- + Ubuntu 24, MacOS 14 and MacOS 15 require release 44.6 or later. +
+
+ This tool is geared toward the needs of + + genetic genealogy + + and + + Ancient DNA + + (aDNA) studies but can be helpful for those looking into health-releated uses of + + WGS + + tests. The + + personal, sub-$500, Direct-to-Consumer (DTC), 30x Whole Genome Sequence ( + + WGS + + ) tests + + are delivered with basic data files and reports. This tool serves to bridge the gap between the + + WGS data files + + delivered and the present day + + genetic genealogy community tools + + . Many health analysis sites accept the microarray and VCF files generated by this tool. +
++++ Still waiting for your + + WGS + + test results? + + International Genome Sample Resource (1K Genome archive) + + for + + BAM or CRAM + + files that you can download and play with to learn the tool while waiting for your results. +
+
+ This tool is designed to be a simple, push-button manipulation of + + WGS files + + from any source. + + UseGalaxy + + ). +
++ + Dante Labs + + , + + Nebula Genomics + + , + + Sequencing + + , and + + YSEQ + + are test results most commonly used with this tool. + + Full Genomes Corp + + , + + GeneDX + + , + + Sano Genetics + + and + + Veritas (historical) + + are other test providers whose output is processed here. These are all results from + + Illumina + + and + + MGI + + next generation sequencers ( + + NGS + + ). Results from + + Oxford Nanopore + + and + + PacBio HiFi CCS + + third generation, long-read sequencers can also be used; as can + + FamilyTreeDNA + + ’s BigY output. (This is not an endorsement of any company or service; simply reporting what is commonly used with the tool.) +
++++ The tool acronym is + + WGSE + + and pronounced as “wig-see”. We encourage that use in conversation. +
+
+ We encourage the use of the Facebook group + + Personal WGS + + for discussions on how to make use of your + + personal, sub-$500, DTC 30x WGS test + + results. + + Bioinformatics for Newbies + + . We also maintain a number of + + corrollary documents + + . +
++ User issues, if not brought up in the + + Personal WGS + + Facebook group, should be raised in the local + + user issues section of this GitHub site + + . The issues section is preferred so code bugs, use limitations and suggested improvements can be tracked within the development project. +
++ There is a separate Facebook group for + + WGSE Developers and Alpha testers + + where bleeding edge issues are discussed and tested before wider availability. Developer’s should visit the main GitHub + + WGS Extract Developers Code Repository + + as well. Development issues, Alpha code bugs and limitations should be raised in the + + development issues section + + so they are tracked till resolved in a release. + + Program + + folder for the + + Python + + source files. +
++ There is a separate Reference Genome Library manager that can be run to check and update the library. The + + WGSE + + program will check and determine when it needs a genome and prompt you to install any missing file then. +
++ v4 entered Alpha on 1 April 2022 and was formally Beta released on 6th November 2022. v5 entered pre-Developer mode release on 10 March 2023 and had a first real release in July then Nov 2023. Old releases are documented in the + + historical release section + + . (v5’s release in Dev has been delayed.) +
++ The tool home page is + + WGSE.bio + + . With the developers and delivery platform using + + WGSE.io + + (note the slight difference; they will cross reference each other). Currently, both point to this page located at + + https://WGSExtract.github.io/ + + . +
++ 64 bit OS and processor platforms tested as part of the release process are: +
++ The tool has the potential to be a simple install in a + + BioConda environment + + as it is mostly just a + + Python package + + . +
++ Some have downloaded the + + WGS Extract + + tool solely to gain access to the MS Windows native executables of the Bioinformatic Tools we include. You can use these Bioinformatic tools independent of the + + WGS Extract + + program. + + WGSE + + release, just delete everything except the cygwin64 folder and adjust your path for wherever you move the folder. For those using the new Msys2 release, it is the msys2/usr/bin and msys2/ucrt64/bin folders; respectively. +
++ Since v4, this is a full, BASE environment of Cygwin64 that is captured as of the stated release date. + + WGSE + + . +
++ Windows 11 + + WSLG + + with Ubuntu Linux Desktop (not server) can be used to install and run + + WGS Extract + + . You have to tune + + WSLG + + parameters to get effective use of your disk space, CPU cores and memory under WSLG. +
++ 为知识分享准备的素材,记录了 Markdown 的优点、应用场景和编辑工具,介绍了标准语法与扩展语法,以及一些应用 Markdown 的奇技淫巧。 +
+ ++ github pages操作说明 +
+ ++ Content here +
+ ++ 这是一个一级标题 +
+ +