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
Show hidden characters
{ | |
"source": "https://www.wordunscrambler.net/word-list/wordle-word-list", | |
"wordlist": [ | |
// Wordle Words List Starting With A | |
"aback", "abase", "abate", "abbey", "abbot", "abhor", "abide", "abled", "abode", "abort", | |
"about", "above", "abuse", "abyss", "acorn", "acrid", "actor", "acute", "adage", "adapt", | |
"adept", "admin", "admit", "adobe", "adopt", "adore", "adorn", "adult", "affix", "afire", | |
"afoot", "afoul", "after", "again", "agape", "agate", "agent", "agile", "aging", "aglow", | |
"agony", "agree", "ahead", "aider", "aisle", "alarm", "album", "alert", "algae", "alibi", | |
"alien", "align", "alike", "alive", "allay", "alley", "allot", "allow", "alloy", "aloft", |
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
[ | |
"928350122843193385", | |
"1185047194261274665", | |
"956202276408688650", | |
"956104664821157918", | |
"1185047092478095443", | |
"1185046791826178099", | |
"1185047045413797898", | |
"928483283698851901", | |
"1185047444619284641", |
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
const http = require('http'); | |
const port = 3000; | |
const requestHandler = (request, response) => { | |
console.log(request.url); | |
server | |
if (request.url == '/') { | |
response.writeHead(200, { 'Content-type': 'text/htlm' }); | |
response.write('Bienvenue sur votre server!') | |
response.end(); |
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
/**************************************** | |
* OS environment branching | |
****************************************/ | |
#ifndef __OS_ENVIRO_H__ | |
#define __OS_ENVIRO_H__ | |
#if defined(unix) || defined(__unix) || defined(__unix__) | |
#define UNIX | |
#elif defined(__APPLE__) || defined(__MACH__) |
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
/*********************************************** | |
* Architecture environment branching of OS | |
* Basic structure | |
***********************************************/ | |
#ifndef __ARCHITECTURES_H__ | |
#define __ARCHITECTURES_H__ | |
#if defined(i386) || defined(__i386) || defined(__i386__) || defined(_M_IX86) || defined(_X86_) | |
#define ENV32 |
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
/************************************************************************* | |
* 32bit integer bitwise flags | |
* Complete definition - by Polda18 | |
************************************************************************* | |
* You may rename flags as you wish, and use as many as you wish. | |
* If for some reason you need more than 32 bits, you can expand | |
* the definition by adding more 32 bits and a switch "L" like that: | |
* 0x0000000000000000L => That makes the literal long int | |
*************************************************************************/ |
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
// Source: http://www.mralligator.com/q3/ | |
// Source: https://github.com/id-Software/GtkRadiant/blob/master/tools/quake3/q3map2/q3map2.h | |
#ifndef __IBSP_FORMAT_DEF_H__ | |
#define __IBSP_FORMAT_DEF_H__ | |
// Byte definition | |
typedef unsigned char ubyte; | |
// Vectors definition |
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
// source: https://stackoverflow.com/questions/6899025/hide-user-input-on-password-prompt | |
#include <iostream> | |
#include <string> | |
#ifdef WIN32 // Windows | |
#include <windows.h> | |
#else // Unix = Linux / Mac OS | |
#include <termios.h> | |
#include <unistd.h> |