├── .gitignore ├── LICENSE ├── contributing.md ├── database └── readme.md ├── go ├── beego │ ├── API-Integration │ │ └── .gitkeep │ ├── Authentication │ │ └── .gitkeep │ ├── Data-Processing │ │ └── .gitkeep │ ├── Database-Interaction │ │ └── .gitkeep │ ├── Others │ │ └── .gitkeep │ ├── Payment │ │ └── .gitkeep │ ├── Security │ │ └── .gitkeep │ └── Utility │ │ └── .gitkeep ├── gin │ ├── API-Integration │ │ └── .gitkeep │ ├── Authentication │ │ └── .gitkeep │ ├── Data-Processing │ │ └── .gitkeep │ ├── Database-Interaction │ │ └── .gitkeep │ ├── Others │ │ └── .gitkeep │ ├── Payment │ │ └── .gitkeep │ ├── Security │ │ └── .gitkeep │ └── Utility │ │ └── .gitkeep ├── iris │ ├── API-Integration │ │ └── .gitkeep │ ├── Authentication │ │ └── .gitkeep │ ├── Data-Processing │ │ └── .gitkeep │ ├── Database-Interaction │ │ └── .gitkeep │ ├── Others │ │ └── .gitkeep │ ├── Payment │ │ └── .gitkeep │ ├── Security │ │ └── .gitkeep │ └── Utility │ │ └── .gitkeep └── readme.md ├── java ├── apache-struts │ ├── API-Integration │ │ └── .gitkeep │ ├── Authentication │ │ └── .gitkeep │ ├── Data-Processing │ │ └── .gitkeep │ ├── Database-Interaction │ │ └── .gitkeep │ ├── Others │ │ └── .gitkeep │ ├── Payment │ │ └── .gitkeep │ ├── Security │ │ └── .gitkeep │ └── Utility │ │ └── .gitkeep ├── grails │ ├── API-Integration │ │ └── .gitkeep │ ├── Authentication │ │ └── .gitkeep │ ├── Data-Processing │ │ └── .gitkeep │ ├── Database-Interaction │ │ └── .gitkeep │ ├── Others │ │ └── .gitkeep │ ├── Payment │ │ └── .gitkeep │ ├── Security │ │ └── .gitkeep │ └── Utility │ │ └── .gitkeep ├── hibernate │ ├── API-Integration │ │ └── .gitkeep │ ├── Authentication │ │ └── .gitkeep │ ├── Data-Processing │ │ └── .gitkeep │ ├── Database-Interaction │ │ └── .gitkeep │ ├── Others │ │ └── .gitkeep │ ├── Payment │ │ └── .gitkeep │ ├── Security │ │ └── .gitkeep │ └── Utility │ │ └── .gitkeep ├── readme.md └── springboot │ ├── API-Integration │ └── .gitkeep │ ├── Authentication │ └── .gitkeep │ ├── Data-Processing │ └── .gitkeep │ ├── Database-Interaction │ └── .gitkeep │ ├── Others │ └── .gitkeep │ ├── Payment │ └── .gitkeep │ ├── Security │ ├── .gitkeep │ └── jwt │ │ └── jwt │ │ ├── pom.xml │ │ ├── readme.md │ │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── jwt │ │ │ ├── JwtApplication.java │ │ │ └── JwtService.java │ │ └── resources │ │ └── application.properties │ └── Utility │ └── .gitkeep ├── javascript ├── expressjs │ ├── API-Integration │ │ ├── .gitkeep │ │ └── GEMINI-API-Integration │ │ │ ├── .gitkeep │ │ │ ├── index.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── readme.md │ ├── Authentication │ │ └── .gitkeep │ ├── Data-Processing │ │ ├── .gitkeep │ │ └── Joi-Validation │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── package-lock.json │ │ │ └── package.json │ ├── Database-Interaction │ │ └── .gitkeep │ ├── Others │ │ └── .gitkeep │ ├── Payment │ │ └── .gitkeep │ ├── Security │ │ └── .gitkeep │ └── Utility │ │ └── .gitkeep ├── fastify │ ├── API-Integration │ │ └── .gitkeep │ ├── Authentication │ │ └── .gitkeep │ ├── Data-Processing │ │ └── .gitkeep │ ├── Database-Interaction │ │ └── .gitkeep │ ├── Others │ │ └── .gitkeep │ ├── Payment │ │ └── .gitkeep │ ├── Security │ │ └── .gitkeep │ └── Utility │ │ └── .gitkeep ├── nestjs │ ├── API-Integration │ │ └── .gitkeep │ ├── Authentication │ │ └── .gitkeep │ ├── Data-Processing │ │ └── .gitkeep │ ├── Database-Interaction │ │ └── .gitkeep │ ├── Others │ │ └── .gitkeep │ ├── Payment │ │ └── .gitkeep │ ├── Security │ │ └── .gitkeep │ └── Utility │ │ └── .gitkeep ├── nodejs │ └── .gitkeep └── readme.md ├── php ├── code-igniter │ ├── API-Integration │ │ └── .gitkeep │ ├── Authentication │ │ └── .gitkeep │ ├── Data-Processing │ │ └── .gitkeep │ ├── Database-Interaction │ │ └── .gitkeep │ ├── Others │ │ └── .gitkeep │ ├── Payment │ │ └── .gitkeep │ ├── Security │ │ └── .gitkeep │ └── Utility │ │ └── .gitkeep ├── laravel │ ├── API-Integration │ │ └── .gitkeep │ ├── Authentication │ │ └── .gitkeep │ ├── Data-Processing │ │ └── .gitkeep │ ├── Database-Interaction │ │ └── .gitkeep │ ├── Others │ │ └── .gitkeep │ ├── Payment │ │ └── .gitkeep │ ├── Security │ │ └── .gitkeep │ └── Utility │ │ └── .gitkeep ├── readme.md └── symfony │ ├── API-Integration │ └── .gitkeep │ ├── Authentication │ └── .gitkeep │ ├── Data-Processing │ └── .gitkeep │ ├── Database-Interaction │ └── .gitkeep │ ├── Others │ └── .gitkeep │ ├── Payment │ └── .gitkeep │ ├── Security │ └── .gitkeep │ └── Utility │ └── .gitkeep ├── pyhton ├── django │ ├── API-Integration │ │ └── .gitkeep │ ├── Authentication │ │ └── .gitkeep │ ├── Data-Processing │ │ └── .gitkeep │ ├── Database-Interaction │ │ └── .gitkeep │ ├── Others │ │ └── .gitkeep │ ├── Payment │ │ └── .gitkeep │ ├── Security │ │ └── .gitkeep │ └── Utility │ │ └── .gitkeep ├── fast-api │ ├── API-Integration │ │ └── .gitkeep │ ├── Authentication │ │ └── .gitkeep │ ├── Data-Processing │ │ └── .gitkeep │ ├── Database-Interaction │ │ └── .gitkeep │ ├── Others │ │ └── .gitkeep │ ├── Payment │ │ └── .gitkeep │ ├── Security │ │ └── .gitkeep │ └── Utility │ │ └── .gitkeep ├── flask │ ├── API-Integration │ │ └── .gitkeep │ ├── Authentication │ │ └── .gitkeep │ ├── Data-Processing │ │ └── .gitkeep │ ├── Database-Interaction │ │ └── .gitkeep │ ├── Others │ │ └── .gitkeep │ ├── Payment │ │ └── .gitkeep │ ├── Security │ │ └── .gitkeep │ └── Utility │ │ └── .gitkeep └── readme.md ├── readme.md ├── roadmap.jpg ├── rust ├── actix │ ├── API-Integration │ │ └── .gitkeep │ ├── Authentication │ │ └── .gitkeep │ ├── Data-Processing │ │ └── .gitkeep │ ├── Database-Interaction │ │ └── .gitkeep │ ├── Others │ │ └── .gitkeep │ ├── Payment │ │ └── .gitkeep │ ├── Security │ │ └── .gitkeep │ └── Utility │ │ └── .gitkeep ├── axum │ ├── API-Integration │ │ └── .gitkeep │ ├── Authentication │ │ └── .gitkeep │ ├── Data-Processing │ │ └── .gitkeep │ ├── Database-Interaction │ │ └── .gitkeep │ ├── Others │ │ └── .gitkeep │ ├── Payment │ │ └── .gitkeep │ ├── Security │ │ └── .gitkeep │ └── Utility │ │ └── .gitkeep ├── readme.md └── rocket │ ├── API-Integration │ └── .gitkeep │ ├── Authentication │ └── .gitkeep │ ├── Data-Processing │ └── .gitkeep │ ├── Database-Interaction │ └── .gitkeep │ ├── Others │ └── .gitkeep │ ├── Payment │ └── .gitkeep │ ├── Security │ └── .gitkeep │ └── Utility │ └── .gitkeep └── typescript ├── expressjs ├── API-Integration │ └── .gitkeep ├── Authentication │ └── .gitkeep ├── Data-Processing │ ├── .gitkeep │ └── zod-validation │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── controllers │ │ │ └── authController.ts │ │ ├── index.ts │ │ ├── middleware │ │ │ └── validationMiddleware.ts │ │ ├── routes │ │ │ └── authRoute.ts │ │ └── validationSchemas │ │ │ └── authSchema.ts │ │ └── tsconfig.json ├── Database-Interaction │ └── .gitkeep ├── Others │ └── .gitkeep ├── Payment │ └── .gitkeep ├── Security │ └── .gitkeep └── Utility │ └── .gitkeep ├── fastify ├── API-Integration │ └── .gitkeep ├── Authentication │ └── .gitkeep ├── Data-Processing │ └── .gitkeep ├── Database-Interaction │ └── .gitkeep ├── Others │ └── .gitkeep ├── Payment │ └── .gitkeep ├── Security │ └── .gitkeep └── Utility │ └── .gitkeep ├── nestjs ├── API-Integration │ └── .gitkeep ├── Authentication │ └── .gitkeep ├── Data-Processing │ └── .gitkeep ├── Database-Interaction │ └── .gitkeep ├── Others │ └── .gitkeep ├── Payment │ └── .gitkeep ├── Security │ └── .gitkeep └── Utility │ └── .gitkeep └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/LICENSE -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/contributing.md -------------------------------------------------------------------------------- /database/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/beego/API-Integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/beego/Authentication/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/beego/Data-Processing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/beego/Database-Interaction/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/beego/Others/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/beego/Payment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/beego/Security/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/beego/Utility/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/gin/API-Integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/gin/Authentication/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/gin/Data-Processing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/gin/Database-Interaction/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/gin/Others/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/gin/Payment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/gin/Security/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/gin/Utility/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/iris/API-Integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/iris/Authentication/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/iris/Data-Processing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/iris/Database-Interaction/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/iris/Others/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/iris/Payment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/iris/Security/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/iris/Utility/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/go/readme.md -------------------------------------------------------------------------------- /java/apache-struts/API-Integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/apache-struts/Authentication/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/apache-struts/Data-Processing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/apache-struts/Database-Interaction/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/apache-struts/Others/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/apache-struts/Payment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/apache-struts/Security/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/apache-struts/Utility/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/grails/API-Integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/grails/Authentication/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/grails/Data-Processing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/grails/Database-Interaction/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/grails/Others/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/grails/Payment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/grails/Security/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/grails/Utility/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/hibernate/API-Integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/hibernate/Authentication/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/hibernate/Data-Processing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/hibernate/Database-Interaction/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/hibernate/Others/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/hibernate/Payment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/hibernate/Security/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/hibernate/Utility/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/java/readme.md -------------------------------------------------------------------------------- /java/springboot/API-Integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/springboot/Authentication/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/springboot/Data-Processing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/springboot/Database-Interaction/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/springboot/Others/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/springboot/Payment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/springboot/Security/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /java/springboot/Security/jwt/jwt/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/java/springboot/Security/jwt/jwt/pom.xml -------------------------------------------------------------------------------- /java/springboot/Security/jwt/jwt/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/java/springboot/Security/jwt/jwt/readme.md -------------------------------------------------------------------------------- /java/springboot/Security/jwt/jwt/src/main/java/org/jwt/JwtApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/java/springboot/Security/jwt/jwt/src/main/java/org/jwt/JwtApplication.java -------------------------------------------------------------------------------- /java/springboot/Security/jwt/jwt/src/main/java/org/jwt/JwtService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/java/springboot/Security/jwt/jwt/src/main/java/org/jwt/JwtService.java -------------------------------------------------------------------------------- /java/springboot/Security/jwt/jwt/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/java/springboot/Security/jwt/jwt/src/main/resources/application.properties -------------------------------------------------------------------------------- /java/springboot/Utility/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/expressjs/API-Integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/expressjs/API-Integration/GEMINI-API-Integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/expressjs/API-Integration/GEMINI-API-Integration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/javascript/expressjs/API-Integration/GEMINI-API-Integration/index.js -------------------------------------------------------------------------------- /javascript/expressjs/API-Integration/GEMINI-API-Integration/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/javascript/expressjs/API-Integration/GEMINI-API-Integration/package-lock.json -------------------------------------------------------------------------------- /javascript/expressjs/API-Integration/GEMINI-API-Integration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/javascript/expressjs/API-Integration/GEMINI-API-Integration/package.json -------------------------------------------------------------------------------- /javascript/expressjs/API-Integration/GEMINI-API-Integration/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/javascript/expressjs/API-Integration/GEMINI-API-Integration/readme.md -------------------------------------------------------------------------------- /javascript/expressjs/Authentication/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/expressjs/Data-Processing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/expressjs/Data-Processing/Joi-Validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/javascript/expressjs/Data-Processing/Joi-Validation/README.md -------------------------------------------------------------------------------- /javascript/expressjs/Data-Processing/Joi-Validation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/javascript/expressjs/Data-Processing/Joi-Validation/index.js -------------------------------------------------------------------------------- /javascript/expressjs/Data-Processing/Joi-Validation/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/javascript/expressjs/Data-Processing/Joi-Validation/package-lock.json -------------------------------------------------------------------------------- /javascript/expressjs/Data-Processing/Joi-Validation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/javascript/expressjs/Data-Processing/Joi-Validation/package.json -------------------------------------------------------------------------------- /javascript/expressjs/Database-Interaction/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/expressjs/Others/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/expressjs/Payment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/expressjs/Security/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/expressjs/Utility/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/fastify/API-Integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/fastify/Authentication/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/fastify/Data-Processing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/fastify/Database-Interaction/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/fastify/Others/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/fastify/Payment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/fastify/Security/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/fastify/Utility/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/nestjs/API-Integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/nestjs/Authentication/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/nestjs/Data-Processing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/nestjs/Database-Interaction/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/nestjs/Others/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/nestjs/Payment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/nestjs/Security/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/nestjs/Utility/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/nodejs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /javascript/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/javascript/readme.md -------------------------------------------------------------------------------- /php/code-igniter/API-Integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/code-igniter/Authentication/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/code-igniter/Data-Processing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/code-igniter/Database-Interaction/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/code-igniter/Others/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/code-igniter/Payment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/code-igniter/Security/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/code-igniter/Utility/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/laravel/API-Integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/laravel/Authentication/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/laravel/Data-Processing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/laravel/Database-Interaction/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/laravel/Others/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/laravel/Payment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/laravel/Security/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/laravel/Utility/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/php/readme.md -------------------------------------------------------------------------------- /php/symfony/API-Integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/symfony/Authentication/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/symfony/Data-Processing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/symfony/Database-Interaction/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/symfony/Others/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/symfony/Payment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/symfony/Security/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /php/symfony/Utility/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/django/API-Integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/django/Authentication/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/django/Data-Processing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/django/Database-Interaction/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/django/Others/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/django/Payment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/django/Security/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/django/Utility/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/fast-api/API-Integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/fast-api/Authentication/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/fast-api/Data-Processing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/fast-api/Database-Interaction/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/fast-api/Others/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/fast-api/Payment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/fast-api/Security/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/fast-api/Utility/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/flask/API-Integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/flask/Authentication/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/flask/Data-Processing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/flask/Database-Interaction/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/flask/Others/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/flask/Payment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/flask/Security/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/flask/Utility/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhton/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/pyhton/readme.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/readme.md -------------------------------------------------------------------------------- /roadmap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/roadmap.jpg -------------------------------------------------------------------------------- /rust/actix/API-Integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/actix/Authentication/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/actix/Data-Processing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/actix/Database-Interaction/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/actix/Others/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/actix/Payment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/actix/Security/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/actix/Utility/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/axum/API-Integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/axum/Authentication/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/axum/Data-Processing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/axum/Database-Interaction/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/axum/Others/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/axum/Payment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/axum/Security/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/axum/Utility/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/rust/readme.md -------------------------------------------------------------------------------- /rust/rocket/API-Integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/rocket/Authentication/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/rocket/Data-Processing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/rocket/Database-Interaction/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/rocket/Others/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/rocket/Payment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/rocket/Security/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rust/rocket/Utility/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/expressjs/API-Integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/expressjs/Authentication/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/expressjs/Data-Processing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/expressjs/Data-Processing/zod-validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/typescript/expressjs/Data-Processing/zod-validation/README.md -------------------------------------------------------------------------------- /typescript/expressjs/Data-Processing/zod-validation/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/typescript/expressjs/Data-Processing/zod-validation/package-lock.json -------------------------------------------------------------------------------- /typescript/expressjs/Data-Processing/zod-validation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/typescript/expressjs/Data-Processing/zod-validation/package.json -------------------------------------------------------------------------------- /typescript/expressjs/Data-Processing/zod-validation/src/controllers/authController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/typescript/expressjs/Data-Processing/zod-validation/src/controllers/authController.ts -------------------------------------------------------------------------------- /typescript/expressjs/Data-Processing/zod-validation/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/typescript/expressjs/Data-Processing/zod-validation/src/index.ts -------------------------------------------------------------------------------- /typescript/expressjs/Data-Processing/zod-validation/src/middleware/validationMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/typescript/expressjs/Data-Processing/zod-validation/src/middleware/validationMiddleware.ts -------------------------------------------------------------------------------- /typescript/expressjs/Data-Processing/zod-validation/src/routes/authRoute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/typescript/expressjs/Data-Processing/zod-validation/src/routes/authRoute.ts -------------------------------------------------------------------------------- /typescript/expressjs/Data-Processing/zod-validation/src/validationSchemas/authSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/typescript/expressjs/Data-Processing/zod-validation/src/validationSchemas/authSchema.ts -------------------------------------------------------------------------------- /typescript/expressjs/Data-Processing/zod-validation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/typescript/expressjs/Data-Processing/zod-validation/tsconfig.json -------------------------------------------------------------------------------- /typescript/expressjs/Database-Interaction/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/expressjs/Others/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/expressjs/Payment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/expressjs/Security/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/expressjs/Utility/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/fastify/API-Integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/fastify/Authentication/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/fastify/Data-Processing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/fastify/Database-Interaction/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/fastify/Others/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/fastify/Payment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/fastify/Security/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/fastify/Utility/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/nestjs/API-Integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/nestjs/Authentication/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/nestjs/Data-Processing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/nestjs/Database-Interaction/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/nestjs/Others/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/nestjs/Payment/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/nestjs/Security/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/nestjs/Utility/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debanjo31/backsnip/HEAD/typescript/readme.md --------------------------------------------------------------------------------