Skip to content

Instantly share code, notes, and snippets.

View ParadauxIO's full-sized avatar
👩‍💻
Hacking the mainframe

Rían Errity ParadauxIO

👩‍💻
Hacking the mainframe
View GitHub Profile
-------------------------------------
Translated Report (Full Report Below)
-------------------------------------
Incident Identifier: 984204BD-7197-4091-BD11-38EA47B35513
CrashReporter Key: 7C32A62D-4C07-8F45-37ED-F57EF1807FE9
Hardware Model: MacBookPro18,3
Process: Expo Go [24582]
Path: /Users/USER/Library/Developer/CoreSimulator/Devices/9D3A1BCB-5DA4-4F55-B1EE-4CA3BC442978/data/Containers/Bundle/Application/0407AF87-4E99-42CF-A557-062DB4A620C6/Exponent-2.30.10.tar.app/Expo Go
Identifier: host.exp.Exponent
export const synthesize = async () => {
// Crashes expo-go
await Audio.Sound.createAsync(
{ uri: "https://synthesis.abair.ie/piper/synthesise?voice=snc22_no0.piper&input=t%C3%A1&outputType=AUDIO&audioEncoding=MP3&cutSilence=true&speed=1&ps=0.0&pa=1" },
{ shouldPlay: true });
// Exact same audio file, just served statically rather than generated
await Audio.Sound.createAsync(
{ uri: "https://synthesis.abair.ie/audio/test.mp3" },
{ shouldPlay: true });
@ParadauxIO
ParadauxIO / README.md
Created September 13, 2021 19:47
Windows Terminal Configuration

Put this file in

C:\Users\USERNAME\AppData\Local\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState```
@ParadauxIO
ParadauxIO / Signup.vue
Created May 26, 2021 00:15
Signup Component
<template>
<form>
<label for="email">Email:</label>
<input id="email" type="email" v-model="email" required>
<label for="password">Password:</label>
<input id="password" type="password" v-model="password" required>
<label for="role">Role: </label> <br>
<select id="role" v-model="role">
@ParadauxIO
ParadauxIO / docker-compose.yml
Created March 9, 2021 04:56
nextcloud-docker
version: '3'
services:
db:
image: mariadb
container_name: nextcloud-mariadb
networks:
- nextcloud_network
volumes:
- db:/var/lib/mysql
@ParadauxIO
ParadauxIO / wug_software.dart
Created February 28, 2021 04:08
Wug Software Website
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(home: View());

Keybase proof

I hereby claim:

  • I am ParadauxIO on github.
  • I am paradaux (https://keybase.io/paradaux) on keybase.
  • I have a public key whose fingerprint is 42F5 9D82 7097 0D9E 734D 420B 0C61 F09F 2AEB A94E

To claim this, I am signing this object:

@ParadauxIO
ParadauxIO / upload.php
Created January 17, 2021 02:30
ShareX Custom Uploader | Requires write access to the directory it's sending your content to
<?php
error_reporting(E_ERROR);
$tokens = array("somepassword", "someotherpassword"); //Tokens go here
$sharexdir = "img/";
$lengthofstring = 5;
function RandomString($length) {
$keys = array_merge(range(0,9), range('a', 'z'));
for($i=0; $i < $length; $i++) {
@ParadauxIO
ParadauxIO / MarkovMegaHal.java
Created January 9, 2021 17:02
This is a fork of the JMegaHal project by Paul James Mutton taken as Licensed GPLv1, with modifications by myself Rían Errity Licensed under GPLv3
/*
* Copyright (c) 2020, Rían Errity. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
@ParadauxIO
ParadauxIO / FactorialTutorial.java
Last active November 30, 2020 15:02
Calculates whether the provided number is a factorian.
import java.util.*;
public class FactorialTutorial {
// Used if the user wishes to exit the program.
private static final Set<String> EXIT_COMMANDS;
// Assign the values of EXIT_COMMANDS (initialisation block)
static {
final SortedSet<String> exitCommands = new TreeSet<>(String.CASE_INSENSITIVE_ORDER);