Easter79 Easter79
3年前
vue 使用gojs绘制简单的流程图
在vue项目中需要展示工作流进度,可以使用的流程图插件很多flowchart.js http://adrai.github.io/flowchart.js/(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fadrai.github.io%2Fflowchart.js%2F%2
Stella981 Stella981
3年前
Docker版本
第一次接触到安装docker的时候,网上的安装有lxcdocker,dockerengine,docker.io,dockerce这些包,肯定会有些迷糊。读完这篇文章你就清楚了。1.有关docker,docker.io,dockerengine,lxcdocker的区别?   其中,RHEL/CentOS软件源中的
Stella981 Stella981
3年前
Redash 安装部署
介绍是一款开源的BI工具,提供了基于web的数据库查询和数据可视化功能。官网:https://redash.io/(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fredash.io%2F)GitHub:https://github.com/getredash/red
Stella981 Stella981
3年前
JSON.parse() and JSON.stringify()
前言最近发现一个比较好的关于前端的英文博文网站,主要是关于Javascript、Vuejs、React、Angular、CSS的前端网站博文网站,网站地址是:https://alligator.io/(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Falligator.io%2
Stella981 Stella981
3年前
QT软件的安装与使用(Win7与Ubuntu20.04)
本文介绍QT软件的下载与安装。一、下载QT软件可以从QT官网下载安装,下载网址为:http://download.qt.io/archive/qt/(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fdownload.qt.io%2Farchive%2Fqt%2F)。当前最新
Stella981 Stella981
3年前
Redis数据库基础操作
MySQL和Redis的区别"""redis:内存数据库(读写快,IO操作少)、非关系型(操作数据方便)mysql:硬盘数据库(数据持久化,IO操作多)、关系型(操作数据间关系)大量访问的临时数据,才有redis数据库更优"""redis和memca
Stella981 Stella981
3年前
Centos7使用yum安装Marathon
官方提供了两种安装方式(http://mesosphere.github.io/marathon/docs/(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fmesosphere.github.io%2Fmarathon%2Fdocs%2F)),一种是下载压缩包解压,一种是使用yum(h
Stella981 Stella981
3年前
Android studio 好用插件
很全:https://ydmmocoo.github.io/2016/06/28/AndroidStudio%E6%8F%92%E4%BB%B6%E6%95%B4%E7%90%86/(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fydmmocoo.github.io%2F201
Stella981 Stella981
3年前
KVO的简单认识
KVO概念KVOkeyvalueobserver 键值观察监听对象属性变化的一种手段,可以用在开源框架,让代码解耦。例如:上拉、下拉刷新控件常见面试题KVO是同步的还是异步的?代码演练添加观察
Stella981 Stella981
3年前
Multithreading
1.使用线程的理由2.基本知识3.线程的使用4.线程同步4.线程池5.Task类6.委托异步执行7.线程同步1.使用线程的理由可以