JS |
// higher scoping, not killed by exit from for/if and some other flow control stuff
var x = 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package xyz.wagyourtail.jvmdg.j9.intl; | |
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.StringReader; | |
import java.math.BigInteger; | |
import java.util.*; | |
public class Json5Slurper { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import json | |
import os | |
import random | |
import sys | |
import vdf | |
import subprocess | |
from pathlib import Path |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
rem run python script and capture output/error code | |
python windows-java.py %* > "%TEMP%\windows-java-output.txt" | |
if %ERRORLEVEL% == 1 ( | |
goto Error | |
) | |
<"%TEMP%\windows-java-output.txt" ( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Bypass Detect-Devtool | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description bypass https://github.com/theajack/disable-devtool | |
// @author Wagyourtail | |
// @match {site} | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=github.io | |
// @grant none | |
// ==/UserScript== |
We can't make this file beautiful and searchable because it's too large.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
booths,categories,companyLink,companyName,country,description,email,isFeatured,state | |
62201,,https://ces23.mapyourshow.com/7_0/exhibitor/exhibitor-details.cfm?ExhID=0014V00003Q1WcyQAF,1/AK inc.,Japan,,,False,Other | |
54239,Digital-Health Smart-Home-and-Appliances Wellness-Technologies,https://ces23.mapyourshow.com/7_0/exhibitor/exhibitor-details.cfm?ExhID=0013A00001TOUHQQA5,"10minds Co., Ltd.",South Korea,,,False,Other | |
10931,IoT/Sensors Smart-Cities-and-Resilience,https://ces23.mapyourshow.com/7_0/exhibitor/exhibitor-details.cfm?ExhID=0013A00001a1LD1QAM,1NCE Inc.,United States,,,False,FL | |
60253,Artificial-Intelligence Entertainment-and-Content Startups Streaming Video-Technologies,https://ces23.mapyourshow.com/7_0/exhibitor/exhibitor-details.cfm?ExhID=0014V00003Q4AOBQA3,"1PCITY Studio, Inc",United States,"1PCITY STUDIOS, INC is a film production and technology company focusing primarily on original content development, production and distribution using proprietary Artificial Intelligence Storytelling Technology fo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# MIT License | |
# | |
# Copyright (c) 2022 Wagyourtail | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @author Wagyourtail | |
* @version 1.1 | |
* @date 2022-01-13 | |
* @license MIT | |
* | |
* Toggles the fan boost bit | |
*/ | |
#include <fcntl.h> | |
#include <stdio.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import copy | |
class reforge: | |
def __init__(self, name, cd=None, str=None): | |
if str is None: | |
str = [0, 0, 0, 0, 0, 0] | |
if cd is None: | |
cd = [0, 0, 0, 0, 0, 0] | |
self.name = name |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package xyz.wagyourtail; | |
import org.graalvm.polyglot.Context; | |
import java.util.LinkedList; | |
import java.util.List; | |
import java.util.function.Function; | |
public class GraalTest { | |
static List<Thread> threads = new LinkedList<>(); |
NewerOlder