Skip to content
View zergaloid's full-sized avatar

Organizations

@quariumos

Block or report zergaloid

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

Pinned Loading

  1. yandex-email-lambda.js yandex-email-lambda.js
    1
    const nodemailer = require("nodemailer");
    2
    
                  
    3
    module.exports.handler = async function (event, context) {
    4
        let emailData = JSON.parse(event.body)
    5
    
                  
  2. silicon silicon Public

    Forked from quariumos/silicon

    Quarium Kernel, Silicon by ThatTonybo, Epic, Snowburn and zergalwastaken(previously, qt-sergal)

    C

  3. yandex-start-vms.js yandex-start-vms.js
    1
    #!/usr/bin/node
    2
    
                  
    3
    const { Session } = require('yandex-cloud');
    4
    const { InstanceService, Instance } = require('yandex-cloud/api/compute/v1');
    5
    
                  
  4. yandex-serverless-graphql yandex-serverless-graphql Public

    A small Helix GraphQL serverless function, configured to run on Yandex Cloud - GraphiQL included

    JavaScript

  5. deno-yandex-dns.ts deno-yandex-dns.ts
    1
    const addRecord = (token: string, zoneId: string, record: string, type: string, values: string[]) => {
    2
        return new Promise((resolve, reject) => {
    3
            fetch(`https://dns.api.cloud.yandex.net/dns/v1/zones/${zoneId}:updateRecordSets`, {
    4
                method: "POST",
    5
                body: JSON.stringify({
  6. kvark-lang/jasm kvark-lang/jasm Public

    javascript-y assembler, supports and is tested with nasm syntax

    TypeScript 3