game
博客 https://www.lfzxb.tophttps://acgmart.com 框架 https://github.com/egametang/ET https://github.com/LeagueSandbox/GameServer
hexo
Weibo-Picture-Store 新浪微博图床 Chrome 扩展,支持同步到微相册hexo-theme-butterfly hexo主题 目前使用hexo-theme-snippet hexo主题 HexoEditor hexo markdown editorhexo-admin An Admin Interface for Hexo PicGo 图片上传
interview
interview C/C++面试知识总结 Algorithm 2018/2019/校招/春招/秋招/算法/机器学习(Machine Learning)/深度学习(Deep Learning)/自然语言处理(NLP)/C/C++/Python/面试笔记 note-of-interview 《互联网面试笔记》收集和分析互联网常见面试题,并将这些面试知识整理成文方便大家查阅。主要是面向java程序员,但基础知识部分不同语言程序员(c,c++,python等)都可以参考
go
golang官方包:https://github.com/golang/xxx go网站https://studygolang.com/ https://learnku.com/golang https://golangnote.com/ 各种开源库API https://gowalker.org/ Go by Example翻译 https://gobyexample.xgwang.me/ https://github.com/xg-wang/gobyexample Go指南交互 https://tour.go-zh.org/list Go入门指南 https://www.kancloud.cn/kancloud/the-way-to-go/ https://github.com/Quorafind/golang-developer-roadmap-cn go官方文档网站 go.dev pkg.go.dev https://blog.golang.org/index https://github.com/golang/go/wiki 综合项目https://github....
js plugin
[多标签]nth-tabs 基于bootstrap的多功能选项卡插件 bootstrap-tab 基于bootstrap的标签页组件 bTabs 以多标签页载入页面的功能插件 EasyBootstrapTab Bootstrap3 tabs plugin. 菜单标签带菜单。 adaptive-horizontal-menu Adaptive cross browser horizontal tab menu (HTML + CSS3 + jQuery) [自己修改的多标签]iframe-tabs nth-tabs-plus [后台]inspinia 2.8ace1.4 [iframe版后台]bootstrap-multitabs angle.knockout bootstrap4.1.3 中文文档 [分页控件]paginationjs A jQuery plugin twbs-pagination jQuery pagination plugin (bootstrap powered) jqPaginator 基于 jquery 的分页组件 [表格插件]bootstrap-...
library
wav2letter facebook语音识别库 ascii_art 图片转化为ascii art
myproject
wblog wframe use iris wadmin 后台管理系统
misc
listen1 多个网站的在线音乐 网易云音乐,QQ音乐,虾米音乐... 中国和全球用户排名,全球仓库 Star 最多排名
qml
[物理]qml-box2d 物理引擎 [图形]qmltoolboxQML item library for cross-platform graphics applications [日志系统]qml-logger [3D]learnopengl-qt3d [opengl]ShaderToy.qml GLSL.qml StandGLStand motion in GLSL+QML ShaderToy.qmlShaderToy demo by QML. [项目]CleanPlayer基于Qt编写的音乐播放器,界面由QML编写,网络和文件由C++实现,能够搜索和播放在线歌曲。 asteroid-launcherAsteroidOS launcher and Wayland compositor based on Qt5, QML and QtWayland via Lipstick. AudioPlayer_qmlSimple audio player (c++/Qt/QML/QtQuick #gui) BaiduTranslationBaidu Tr...
unity
[unity开发框架] CatLib GameFramework UnityGameFramework StarForce GameFramework的例子 QFramework ET Unity3D Client And C# Server Framework ET-Modules ET的Module kcp-bulild Unity3D中可靠UDP网络库kcp的各平台动态库构建项目 KSFramework unity-volume-rendering 3D纹理渲染体数据 医疗 glTF 3D图形界的JPEG Unity5Effects 很赞的特效 MeshDGP c#实现的网格操作(good)
vue
vue库awesome-vue awesome-github-vue awesome-vue-1 VUE流程设计https://github.com/BiaoChengLiu/easy-flowhttps://github.com/jiangxiayun/flow-editor-vuehttps://github.com/fengli01/vue-bpmn-elementhttps://gitee.com/xiaofanger/vue-bpmn-flowablehttps://gitee.com/jimlow/vue-bpmnhttps://github.com/ZFSNYJ/VFD https://github.com/GoldSubmarine/workflow-bpmn-modeler https://github.com/evanyangg/vue-bpmn-modeler http://demo1.jeeplus.org/ https://github.com/guozhaolong/wfd-vue/ vue学习资料vue源码分析 -- 基于 2.2.6版本总结 vu...
web
redis Redis 是一个高性能的key-value数据库。 redis的出现,很大程度补偿了memcached这类keyvalue存储的不足,在部 分场合可以对关系数据库起到很好的补充作用。 [模板网站] https://www.22vd.com/29906.html | https://www.2kss.com/ http://www.cssmoban.com/ https://www.mycodes.net/ http://www.bootstrapmb.com/tag/houtaihtml https://www.metcms.cn/ [elemet表单生成器] https://github.com/JakHuang/form-generatorhttps://github.com/GavinZhuLei/vue-form-making
前端常用库收集
vditor (https://github.com/b3log/vditor) Markdown 编辑器 nuxt.js (https://nuxtjs.org) 基于Vue的服务端渲染框架 [可视化数据] https://github.com/viserjs/viser https://antv.vision/zh https://www.echartsjs.com/zh/index.html [打印] https://github.com/crabbly/Print.js https://github.com/Power-kxLee/vue-print-nb 像裁剪组件 https://github.com/xyxiao001/vue-cropper
golang数据结构算法
1.排序1.1 冒泡排序1.1.1 冒泡排序优化版检测是否已提前有序 12345678910111213141516171819202122232425262728293031323334353637383940414243444546package mainimport ( "fmt" "math/rand" "time")// 获取 n 个 [0, max] 元素组成的数组func GetArr(n, max int) []int { rand.Seed(time.Now().UnixNano()) arr := make([]int, n) for i := 0; i < n; i++ { arr[i] = rand.Intn(max + 1) } return arr}func BubbleSort(arr []int) []int { n := len(arr) // 遍历所有元素 var isSorted bool for i := 0; i <...
go知识图谱
https://www.processon.com/view/link/5a9ba4c8e4b0a9d22eb3bdf0#map
数据库构建树状分类结构
数据库构建树状分类结构邻接表https://my.oschina.net/XYleung/blog/99604 缺点:这种方法很简单,容易理解,好上手。但是也有一些缺点。主要是因为运行速度很慢,由于得到每个节点都需要进行数据库查询,数据量大的时候要进行很多查询才能完成一个树。另外由于要进行递归运算,递归的每一级都需要占用一些内存所以在空间利用上效率也比较低。 预排序遍历树算法左右值无限分类 表结构1234567891011121314CREATE TABLE `user_cgroup` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '分组id', `pid` bigint(20) NOT NULL DEFAULT '0' COMMENT '父id', `name` varchar(50) NOT NULL DEFAULT '' COMMENT '组名称', `user_id` bigint(20) NOT NUL...
vue开发框架
https://github.com/opendigg/awesome-github-vue https://framework7.io/ Vue 移动端框架1. vonicvonic 一个基于 vue.js 和 ionic 样式的 UI 框架,用于快速构建移动端单页应用,很简约。中文文档 | github地址 | 在线预览 2. vuxvux 基于WeUI和Vue(2.x)开发的移动端UI组件库。基于webpack+vue-loader+vux可以快速开发移动端页面,配合vux-loader方便你在WeUI的基础上定制需要的样式。小编在开发微信公众号的时候使用过,欢迎来评论区吐槽。中文文档 | github地址 | 在线预览 3. Mint UIMint UI 由饿了么前端团队推出的 Mint UI 是一个基于 Vue.js 的移动端组件库。中文文档 | github地址 | 在线预览 4. Muse-UI基于 Vue 2.0 和 Material Design 的 UI 组件库中文文档 | github地址 5. Vant是有赞前端团队基于有赞统一的规范实现的 Vue 组件...
vue-element ui
element滚动条设置 el-scrollbar属性 123456native: Boolean, // 是否使用本地,设为true则不会启用element-ui自定义的滚动条wrapStyle: {}, // 包裹层自定义样式wrapClass: {}, // 包裹层自定义样式类viewClass: {}, // 可滚动部分自定义样式类viewStyle: {}, // 可滚动部分自定义样式noresize: Boolean, // 如果 container 尺寸不会发生变化,最好设置它可以优化性能 水平垂直滚动条 1234567891011121314151617181920212223242526272829303132333435363738<script src="//unpkg.com/vue/dist/vue.js"></script><script src="//unpkg.com/element-u...
vue .native修饰符用法
给vue组件绑定事件时候,必须加上native ,不然不会生效(监听根元素的原生事件,使用 .native 修饰符) 等同于在自组件中: 子组件内部处理click事件然后向外发送click事件:$emit("click".fn) 如果你想在某个组件的根元素上绑定事件,直接使用 @click=''function' 是不生效的,我们可以添加.native修饰符 @click.native=''function'',请看以下demo: 实现的功能是点击 的时候打印“test” 1.父组件: 12345678910111213141516171819202122232425<template> <div> <!-- 错误写法 --> <a-com @click='warpClick'></a-com> <!-- 正确写法 --> &l...
vue-修饰符
vue-修饰符事件修饰符 .stop 阻止冒泡(通俗讲就是阻止事件向上级DOM元素传递) .prevent 默认事件指对DOM的操作会引起自动执行的动作,比如点击超链接的时候会进行页面的跳转,点击表单提交按钮时会重新加载页面等,使用".prevent"修饰符可以阻止这些事件的发生。 .capture 捕获冒泡,即有冒泡发生时,有该修饰符的dom元素会先执行,如果有多个,从外到内依次执行,然后再按自然顺序执行触发的事件。 .self 将事件绑定到自身,只有自身才能触发,通常用于避免冒泡事件的影响(只有点击当前元素时候,才会触发事件处理函数) .once 设置事件只能触发一次,比如按钮的点击等。 .passive 该修饰符大概意思用于对DOM的默认事件进行性能优化,根据官网的例子比如超出最大范围的滚动条滚动的 12345678910111213141516171819<!-- 阻止单击事件继续传播 --><a v-on:click.stop="doThis"></a><!-- ...