Skip to content
View akama-aka's full-sized avatar
:shipit:
"Goodbye Secure Programming and hello to all the Zero Days" ~ UwU Underground
:shipit:
"Goodbye Secure Programming and hello to all the Zero Days" ~ UwU Underground

Organizations

@BSEvita

Block or report akama-aka

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
akama-aka/README.md

idk who cares?

Pinned Loading

  1. cdn-cgi Public

    Official Aki CDN Public avail. Source Code.

    JavaScript 1 1

  2. NodeJS Redi Cache Connector
    1
    const Redis = require("ioredis");
    2
    const crypto = require("node:crypto");
    3
    
                  
    4
    try {
    5
      redisClient = new Redis({
  3. Database Connector for pg for NodeJS...
    1
    const { Pool } = require("pg");
    2
    const pool = new Pool({
    3
      host: process.env.DB_HOST,
    4
      user: process.env.DB_USERNAME,
    5
      password: process.env.DB_PASSWORD,
  4. Code Snippet for Fastify MVC
    1
    function buildRoutes(controllerPath) {
    2
      try {
    3
        return require(controllerPath).map((routeOptions) => routeOptions);
    4
      } catch (e) {
    5
        console.log(e);
  5. ASPL v1.1
    1
    # Aki Solutions Public License (ASPL) v1.1
    2
    
                  
    3
    © 2024 Aki Solutions, [https://licenses.aki-solutions.net/](https://licenses.aki-solutions.net)  
    4
    Contact: [contact@aki-solutions.net](mailto:contact@aki-solutions.net)  
    5
    Copyright-, DMCA-, License Violation: [dmca@aki-solutions.net](mailto:dmca@aki-solutions.net)
  6. Reads Docker Container Secret Files ...
    1
    const getSecrets = () => {
    2
      const secretsFolder = "/run/secrets";
    3
      const validSecrets = [ // Insert here all the Secrets you have in the Container. 
    4
        "DATABASE_URL",
    5
        "SERVER_HOST",