openpgp4fpr:CE82191F4761739B
I hereby claim:
- I am simon511000 on github.
- I am simon511000 (https://keybase.io/simon511000) on keybase.
- I have a public key whose fingerprint is 01D4 C545 814A D531 E5AF 2882 CE82 191F 4761 739B
To claim this, I am signing this object:
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 { | |
Box, | |
Button, | |
FormControl, | |
FormLabel, | |
Input, | |
Link, | |
Stack, | |
Typography, | |
} from "@mui/material"; |
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
<?php defined('FLATBOARD') or die('Flatboard Community.'); | |
/** | |
* Core: include Infinite Ajax Scroll, font awesome 4.7, category icon picker and mini colors JS | |
* | |
* @author Frédéric K. | |
* @copyright (c) 2015-2019 | |
* @license http://opensource.org/licenses/MIT | |
* @package FlatBoard | |
* @version 2.0 | |
* @update 2018-12-23 |
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
var playback = false, | |
songTitle, | |
songAuthors, | |
playbackBoolean, | |
smallImageKey, | |
smallImageText | |
/** | |
* Handles Media Key controls |
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
{ | |
"item.vrc.note_block_minecart": "Wagonnet à bloc musical", | |
"block.vrc.minecart_elevator": "Wagonnet ascenseur", | |
"slection.vrc.pitch": "Pitch", | |
"block.vrc.bumper": "Tempont d'arrêt", | |
"block.vrc.super_powered_rail": "§6Rails de propultion+" | |
} |
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
<?php | |
/************************************* | |
* BY : simon511000 (simon511000.fr) * | |
*************************************/ | |
$config = json_decode(file_get_contents("config.json"),true); | |
if(isset($_GET["plugin/appList"])&&isset($_POST["lang"])){ | |
$start = microtime(true); | |
function LNG($value,$pluginFile){ | |
$lang = "en"; | |
if(is_dir("plugins/unzip/".basename($pluginFile,".zip")."/i18n")){ |
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
<?php | |
error_reporting(E_ALL); | |
$advancements = "datapack/data/mechanization/advancements"; | |
function translate($dir,$prefix2=""){ | |
$prefix = "mech.advancements."; | |
$dir2 = opendir($dir); | |
while($file = readdir($dir2)){ | |
if($file != '.' && $file != '..' && strstr($file,".json")) | |
{ | |
$en = json_decode(file_get_contents("ressourcepack/assets/mechanization/lang/en_us.json"),true); |