Skip to content

Instantly share code, notes, and snippets.

Avatar
👾
Ruby2D!

Immanuel Daviel A. Garcia AlexDev404

👾
Ruby2D!
View GitHub Profile
@AlexDev404
AlexDev404 / elf.c
Created December 16, 2022 21:14
ToAru OS Kernel - ELF Loader
View elf.c
/* vim: tabstop=4 shiftwidth=4 noexpandtab
*
* ELF Static Executable Loader
*
* Part of the ToAru OS Kernel
* (C) 2011 Kevin Lange
* Released under the terms of the NCSA License, see the included
* README file for further information.
*/
@AlexDev404
AlexDev404 / dabblet.css
Created December 13, 2022 19:54 — forked from ChinamaykzaLaika/dabblet.css
Project 3 - Interactive Wii Menu
View dabblet.css
/** Project 3 - Interactive Wii Menu */
/*
View All Product Keys
SQL Server 2017
----------------
Enterprise Core - 6GPYM-VHN83-PHDM2-Q9T2R-KBV83
Developer - 22222-00000-00000-00000-00000
Enterprise - TDKQD-PKV44-PJT4N-TCJG2-3YJ6B
Standard - PHDV4-3VJWD-N7JVP-FGPKY-XBV89
Web - WV79P-7K6YG-T7QFN-M3WHF-37BXC
https://www.teamos-hkrg.com/index.php?threads/microsoft-sql-server-english-2017-rtm-teamos.42103/
View matchmaking.js
// https://github.com/Lawin0129/LawinServer/blob/main/structure/matchmaking.js
const Express = require("express");
const express = Express.Router();
const fs = require("fs");
const path = require("path");
const iniparser = require("ini");
const config = iniparser.parse(fs.readFileSync(path.join(__dirname, "..", "Config", "config.ini")).toString());
const functions = require("./functions.js");
express.get("/fortnite/api/matchmaking/session/findPlayer/*", async (req, res) => {
View Google Takeout API Swagger.json
{
"swagger": "2.0",
"info": {
"title": "Takeout API",
"description": "",
"contact": {
"name": "Google",
"url": "https://google.com"
},
"version": "v2"
View Google Takeout API OpenAPI v3.json
{
"openapi": "3.0.1",
"info": {
"title": "Takeout API",
"description": "",
"contact": {
"name": "Google",
"url": "https://google.com"
},
"version": "v2"
@AlexDev404
AlexDev404 / Google_oAuth.js
Created May 1, 2022 21:29 — forked from entaq/Google_oAuth.js
Google oAuth 2.0 sample
View Google_oAuth.js
/**
reference -
https://developers.google.com/accounts/docs/OAuth2WebServer
https://code.google.com/apis/console/
https://developers.google.com/+/api/latest/
**/
////handle all requests here
function doGet(e) {
@AlexDev404
AlexDev404 / xmpp-servers-tor-hidden-service.md
Created February 15, 2022 20:11 — forked from dllud/xmpp-servers-tor-hidden-service.md
Public XMPP servers with Tor Hidden Service
View xmpp-servers-tor-hidden-service.md

Public XMPP servers with Tor Hidden Service

This is a tentative list of public XMPP (Jabber) servers that provide a Tor Hidden Service (.onion address) for connections from within Tor network. By public I mean, servers that are free for everyone to use and place no barriers on registration.

Clearnet domain Tor Hidden Service In-Band registration XEP compliance IM Observatory grade
5222.de jtovcabr2vhflcqg.onion disabled Excellent A
bommboo.de ujvdniabz53upqfx.onion disabled Excellent A
[ch
@AlexDev404
AlexDev404 / AccountService.java
Created April 20, 2021 17:11 — forked from Amrsatrio/AccountService.java
some epic/fortnite endpoints
View AccountService.java
package com.tb24.fn.network;
import com.google.gson.JsonObject;
import com.tb24.fn.model.DeviceAuth;
import com.tb24.fn.model.ExchangeResponse;
import com.tb24.fn.model.ExternalAuth;
import com.tb24.fn.model.GameProfile;
import com.tb24.fn.model.LoginResponse;
import com.tb24.fn.model.QueryExternalIdMappingsByIdPayload;
import com.tb24.fn.model.VerifyResponse;