Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Mysql | 13,133 | 4,892 | 7,815 | 12 days ago | 49 | March 25, 2022 | 108 | mpl-2.0 | Go | |
Go MySQL Driver is a MySQL driver for Go's (golang) database/sql package | ||||||||||
Rap2 Delos | 7,400 | 5 months ago | 73 | mit | TypeScript | |||||
阿里妈妈前端团队出品的开源接口管理工具RAP第二代 | ||||||||||
Zabbix Docker | 1,812 | 5 days ago | 5 | gpl-2.0 | Shell | |||||
Official Zabbix Dockerfiles | ||||||||||
Mycat2 | 1,420 | 4 days ago | 134 | gpl-3.0 | Java | |||||
MySQL Proxy using Java NIO based on Sharding SQL,Calcite ,simple and fast | ||||||||||
Borgmatic | 1,348 | 16 hours ago | 2 | gpl-3.0 | Python | |||||
Simple, configuration-driven backup software for servers and workstations | ||||||||||
Chinook Database | 1,214 | 3 months ago | 13 | other | C# | |||||
Sample database for SQL Server, Oracle, MySQL, PostgreSQL, SQLite, DB2 | ||||||||||
Seal Report | 1,212 | 5 days ago | 12 | apache-2.0 | C# | |||||
Open Database Reporting Tool (.Net) | ||||||||||
Lithium | 1,061 | 6 months ago | 21 | mit | C++ | |||||
Easy to use C++17 HTTP Server with no compromise on performances. https://matt-42.github.io/lithium | ||||||||||
Go Mysql Server | 1,023 | 11 | 14 hours ago | 868 | June 12, 2022 | 38 | apache-2.0 | Go | ||
A MySQL-compatible relational database with a storage agnostic query engine. Implemented in pure Go. | ||||||||||
Go Mysql Server | 1,015 | 3 | 4 | 2 years ago | 9 | January 27, 2021 | 24 | apache-2.0 | Go | |
An extensible MySQL server implementation in Go. |
This is a set of bash shell functions to simplify and automate specific routine tasks, as well as some more specialized ones.
Run this bash function as root:
function lsgethelper() {
local LZDIR=/root/.lazyscripts/tools;
if command -v git 2>&1 1>/dev/null; then
if [[ -d ${LZDIR} ]]; then
cd "${LZDIR}" \
&& git reset --hard HEAD \
&& git clean -f \
&& git pull git://github.com/hhoover/lazyscripts.git master; \
else
cd \
&& git clone git://github.com/hhoover/lazyscripts.git "${LZDIR}";
fi
cd;
source ${LZDIR}/ls-init.sh;
else
rm -rf "${LZDIR}"/lazyscripts-master
cd "${LZDIR}" \
&& curl -L https://github.com/hhover/lazyscripts/archive/master.tar.gz | tar xvz
cd;
source "${LZDIR}"/lazyscripts-master/ls-init.sh;
fi
}
lsgethelper && lslogin
Throw this in your .bashrc for extra credit.
Function | Description |
---|---|
lsinfo | Display useful system information |
lsbwprompt | Switch to a plain prompt. |
lscolorprompt | Switch to a fancy colorized prompt. |
lsbigfiles | List the top 50 files based on disk usage. |
lsmytuner | MySQL Tuner. |
lshighio | Reports stats on processes in an uninterruptable sleep state. |
lsmylogin | Auto login to MySQL |
lsmyengines | List MySQL tables and their storage engine. |
lsmyusers | List MySQL users and grants. |
lsmycreate | Creates a MySQL DB and MySQL user |
lsmycopy | Copies an existing database to a new database. |
lsap | Show a virtual host listing. |
lsapcheck | Verify apache max client settings and memory usage. |
lsapdocs | Prints out Apache's DocumentRoots |
lsapproc | Shows the memory used by each Apache process |
lsrblcheck | Server Email Blacklist Check |
lscloudkick | Installs the Cloudkick agent |
lsvhost | Add an Apache virtual host |
lsvsftpd | Installs/configures vsftpd |
lspostfix | Set up Postfix for relaying email |
lsparsar | Pretty sar output |
lslsync | Install lsyncd and configure this server as a master |
lswordpress | Install Wordpress on this server |
lsdrupal | Install Drupal 7 on this server |
lswebmin | Install Webmin on this server |
lsvarnish | Installs Varnish 3.0 |
lsconcurchk | Show concurrent connections |
lscrtchk | Check SSL Cert/Key to make sure they match |
lsrpaf | Install mod_rpaf to set correct client IP behind a proxy. |
lspma | Installs phpMyAdmin |
lsnginx | Replace Apache with nginx/php-fpm |
lshaproxy | Install HAProxy on this server |
lshppool | Adds a new pool to an existing HAProxy config |
lswhatis | Output the script that would be run with a specific command. |
lsnodejs | Installs Node.js and Node Package Manager |
lsapitools | Installs API tools for Rackspace Cloud |
lsrecap | Installs Recap - rackerlabs/recap |
lsnova | Nova Configuration generator |
Enjoy!