# GeoJSON GeoJSON is a format for encoding a variety of geographic data structures. GeoJSON supports the following geometry types: Point, LineString, Polygon, MultiPoint, MultiLineString, and MultiPolygon. Geometric objects with additional properties are Feature objects. Sets of features are...

路飞学城 - 学习文档 # HTML5 简介 HTML5 是 HTML 最新的修订版版,2014 年 10 月由 W3C 完成标准制定。它的设计的目的是为了在移动设备上支持多媒体。并且 HTML5 简单易学。 # 什么是 HTML5 HTML5 是下一代标准。HTML4.01 的上个版本诞生于 1999 年,HTML5 目前为止仍然处于完善之中。然而,大部分现代浏览器已经具备了某些 HTML5 支持 # HTML5 有趣的新特性 用于媒体播放的 video 和 audio 元素 新的特殊内容元素:比如 article , footer , header , nav ,...

# 不惧迅雨,不畏疾风 - 宫野贤治 不惧迅雨,不畏疾风。 不避严冬酷暑,日日身强气盛。 不思贪恋,不动火性, 时时乐天闲情。 习餐粗米,日食半升, 佐以豆酱,少许菜梗。 面对世事,直抒人生; 置已度外,其乐融融。 细心观察,铭记心中。 栖身松林旷野, 隐居茅舍屋中。 东边孩童疾苦,即往送药治病; 西边大妈受累, 便去帮忙助耕; 南边有人将逝, 慰其安神养性; 北边打架斗殴, 息事宁人调停。 逢旱灾伤心落泪, 遇冻害忧心忡忡。 不受褒誉,不受苦痛。 人人称我偶人,愿做凡夫俗子, 但是我竭尽, 平凡之人生。 # Auguries of Innocence 天真的预兆 - William...

转载: Clear explanation of Rust’s module system Rust’s module system is surprisingly confusing and causes a lot of frustration for beginners. In this post, I’ll explain the module system using practical examples so you get a clear understanding of how it works and can immediately start applying this...

# Rust for JavaScript Developers - Pattern Matching and Enums This is the fourth part in a series about introducing the Rust language to JavaScript developers. Here are all the chapters: Tooling Ecosystem Overview Variables and Data Types Functions and Control Flow Pattern Matching and Enums #...

# Java Robot 可以使用 java 的 robot 操纵鼠标,键盘做一些重复机械的工作 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106package com.jbn.learn;import...

How to use Vue.js with Electron and Vuex | DigitalOcean While this tutorial has content that we believe is of great benefit to our community, we have not yet tested or edited it to ensure you have an error-free learning experience. It’s on our list, and we’re working on it! You can help us out by...

Build cross platform desktop apps with JavaScript, HTML, and CSS - Electron # 基本概念 Electron 中分主进程和渲染进程,主进程相当于浏览器整个窗口,渲染进程相当于每个 Tab 页。 主进程 Main Process 可以使用和系统对接的 Electron API - 创建菜单,上传文件等 创建渲染进程 - Renderer Process 全面支持 Node.js 只有一个作为程序的入口点 渲染进程 Renderer Process 可以有多个,每个对应一个窗口 每个都是一个单独的进程 全面支持...

转载: Rust for JavaScript Developers - Functions and Control Flow This is the third part in a series about introducing the Rust language to JavaScript developers. Here are all the chapters: Tooling Ecosystem Overview Variables and Data Types Functions and Control Flow Pattern Matching and Enums #...

# c++ fibnacci 123456789101112131415161718192021222324252627282930313233#include <iostream>#include <ctime>using namespace std;int fib(int n){ if (n <= 0) return 0; if (n <= 2) return 1; return fib(n - 1) + fib(n - 2);}int main(){...