Git Product home page Git Product logo

awaresome's Introduction

工具

1. 工作流

2. CAS

3. 三方登录

4. 权限管理

https://gitee.com/y_project/RuoYi.git

5. Spring 文档

https://docs.spring.io/spring-data https://docs.spring.io/spring/docs

6. 求平方根

double Sqrt(double A) {
        double x0 = A + 0.25, x1, xx = x0;
        for (; ; ) {
            x1 = (x0 * x0 + A) / (2 * x0);
            if (Math.abs(x1 - x0) <= 0.0000001) break;
            if (xx == x1) break; // to break two value cycle.
            xx = x0;
            x0 = x1;
        }

        return x1;
    }

7. 30天学习javascript

8. 即时聊天

9. go

10. spring boot

11、WegGl spec

12. js 操作矩阵

13. idea tools

14. 规则引擎

15. 有趣的项目

16. java 协程

17. 低代码框架

ToolJet 是一个开源的低代码框架,可以快速构建和部署内部工具,而无需工程团队付出太多努力。通过 ToolJet 可以连接数据源,如 PostgreSQL、MongoDB、Elasticsearch 等等。它支持导入 OpenAPI 规范和 OAuth2 授权,以及外部服务,例如:Stripe、Slack、Google Sheets、Airtable。

18. github 加速工具

19. 简单快速上手web框架

20. 爬虫

21. 小程序

22. java 安装

安装java8

sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer

查看java是否安装成功
java -version

该版本java设为默认
sudo apt-get install oracle-java8-set-default

 

安装java11

sudo add-apt-repository ppa:linuxuprising/java
sudo apt-get update
sudo apt-get install oracle-java11-installer

查看java是否安装成功
java -version

该版本java设为默认
sudo apt-get install oracle-java11-set-default

23、docker-hive

https://github.com/q977734161/docker-hive

24、加速工具

25、c/c++工具

26、markdown editor

27、linux文件监控

28、Tinyhttpd(10.9k+ star)

29、myscan

myscan 是一个多线程扫描 ip 端口的程序,代码简单不复杂,适合初学者作为练手的学习项目。

30、DungeonRush

元气贪吃蛇游戏,这个项目基于传统贪吃蛇进行了一些玩法上的创新,很适合 C 语言初学者

31、acwj

教你写 C 语言编译器的实战教程。

32、smartdns

一个运行在本地的 DNS 服务器。能够提高网络访问速度等诸多妙用

33、db_tutorial

用 C 从零创建一个简单的数据库。

34、os课程

35、Wasmtime是Bytecode Alliance为WebAssembly、WASI和组件模型提供的独立运行时。

36、Rust web框架

37、tikv 分布式kv存储

awaresome's People

Contributors

q977734161 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.