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
/* | |
* Chained Together - Autosplitter | |
* version: 2.3 | |
* game version: 1.8.6 | |
* authors: wRadion & xiaoxiao921 | |
*/ | |
state("ChainedTogether-Win64-Shipping") | |
{ | |
double coordX : 0x06FC4F48, 0x1B8, 0x38, 0x0, 0x30, 0x2D8, 0x1A0, 0x128; |
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
/* | |
* Bzzzt Autosplitter | |
* Made by wRadion | |
*/ | |
state("Bzzzt") { | |
string80 Log: "UnityPlayer.dll", 0x01ADE6A8, 0x8, 0xC; | |
} | |
startup { |
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
a | |
abandonne | |
abeille | |
abime | |
abord | |
abricot | |
abriter | |
absent | |
accident | |
accompagner |
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
Devinez le nombre | |
Afficher un message dans la console | |
Conditions | |
Boucles | |
Récupérer l'entrée utilisateur | |
Variables | |
Parser une chaîne de caractère en nombre entier | |
Pendu | |
Afficher un message dans la console |
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
using System; | |
namespace CoursJour4 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
// Déclare et initialise la grille | |
char[,] grid = new char[3, 3]; |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace CoursJour2 | |
{ | |
class Program | |
{ |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace CoursJour2 | |
{ | |
class Program | |
{ |
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
using System; | |
using System.Collections.Generic; | |
using System.Data.SQLite; | |
using System.Text; | |
using System.Windows; | |
namespace SQLiteTest | |
{ | |
public class Text | |
{ |
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
#! /bin/sh | |
# Download this file easily: | |
# wget -O install.sh https://tinyurl.com/wralvm12 | |
# chmod +x install.sh | |
C_RESET="\e[0;0m" | |
B_BLACK="\e[1;30m" | |
B_YELLOW="\e[1;33m" | |
B_CYAN="\e[1;36m" |
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/env ruby | |
require 'benchmark' | |
class Array | |
def blank? | |
empty? | |
end | |
alias :blankk? :empty? |