DekGenius.com
JAVASCRIPT
test
seems like your internet connection works...
test
test
let arry = [2, 4, 6, 8, 10, 12, 14, 16];
let lastElement = arry[arry.length - 1];
console.log(lastElement);
//Output: 16
test
connection.connect(function(err) {
if (err) {
return console.error('error: ' + err.message);
}
console.log('Connected to the MySQL server.');
});
Code language: JavaScript (javascript)
Test....
This is your very first Roblox creation. Check it out, then make it your own with Roblox Studio! yes.... DO IT!
test
string strgroupids = "6";
test
string strgroupids = "6";
test
string strgroupids = "6";
test
string strgroupids = "6";
test
string strgroupids = "6";
test
string strgroupids = "6";
test
string strgroupids = "6";
test
string strgroupids = "6";
test
string strgroupids = "6";
test
Participant::where('IDUser', 1)->event()->get();
test
class Event extends Model {
protected $table = 'events';
public $timestamps = false;
public function participants()
{
return $this->hasMany('AppParticipant', 'IDEvent', 'ID');
}
public function owner()
{
return $this->hasOne('AppUser', 'ID', 'IDOwner');
}
}
test
$list = Participant::where('IDUser', 1)->get();
for($item in $list) {
$event = $item->event;
// ... other code ...
}
test
Can confirm internet is working :)
test
import { fetch } from "fetch-h2";
TEST
export DEBIAN_FRONTEND=noninteractive
apt-get update
apt-get install samba winbind libnss-winbind krb5-user smbclient ldb-tools python3-crypto
unset DEBIAN_FRONTEND
test
console.log("sik kafası");
test
test
TypeError Object
(
[message:protected] => Peer_Content::getByModule(): Argument #1 ($module) must be of type Model_Module, Model_Site given, called in /shared/httpd/horizoncms/modules/news/controllers/backend.php on line 17
[string:Error:private] =>
[code:protected] => 0
[file:protected] => /shared/httpd/horizoncms/modules/content/models/peer/content.php
[line:protected] => 14
[trace:Error:private] => Array
(
[0] => Array
(
[file] => /shared/httpd/horizoncms/modules/news/controllers/backend.php
[line] => 17
[function] => getByModule
[class] => Peer_Content
[type] => ::
[args] => Array
(
[0] => Model_Site Object
(
[id:protected] => 1
[name:protected] => Default
[alias:protected] => default
[domain:protected] => horizoncms.loc
[default:protected] => 1
[use_sitemap:protected] => 1
)
[1] => Model_Language Object
(
[id:protected] => 1
[name:protected] => Nederlands
[alias:protected] => dutch
[code:protected] => nl
[domain:protected] =>
[active:protected] => 1
[default:protected] => 1
[use_sitemap:protected] => 1
)
[2] =>
[3] => added
[4] => DESC
)
)
[1] => Array
(
[file] => /shared/httpd/horizoncms/app/router/admin.php
[line] => 39
[function] => actionDefault
[class] => Module_Backend_News
[type] => ->
[args] => Array
(
)
)
[2] => Array
(
[file] => /shared/httpd/horizoncms/public/index.php
[line] => 36
[function] => run
[class] => Router_Admin
[type] => ->
[args] => Array
(
)
)
)
[previous:Error:private] =>
)
test
import random
import time
import sys
import os
if os.name == 'nt':
from ctypes import windll
k = windll.kernel32
k.SetConsoleMode(k.GetStdHandle(-11), 7)
keys = {'a': 'NSr', 'b': 'rlK', 'c': 'yDD', 'd': 'YBr', 'e': 'XBB', 'f': 'LLo', 'g': 'gZn', 'h': 'LTd', 'i': 'hKn', 'j': 'fWj', 'k': 'dgu', 'l': 'nFN', 'm': 'nNy',
'n': 'QKD', 'o': 'cJJ', 'p': 'MEA', 'q': 'WTJ', 'r': 'nnM', 's': 'Tru', 't': 'xcE', 'u': 'Msx', 'v': 'Cef', 'w': 'Hkf', 'x': 'obn', 'y': 'myp', 'z': 'PUE'}
keyr = {v: k for k, v in keys.items()}
def encrypt(text):
if len(text) > 1:
string = ""
for char in text:
if char in keys:
string += keys[char] + ","
else:
return "Only letters are allowed"
break
return string
else:
return "Text must have something in it"
def decrypt(text):
text = text[:-1].split(",")
if len(text) > 1:
string = ""
for char in text:
if char in keyr:
string += keyr[char]
else:
return "Only letters are allowed"
break
return string
else:
return "Text must have something in it"
print("Welcome to Wordle!")
print("Random or Custom Word?")
ch = input("Type 'r' or 'c' ")
if ch not in ("r", "c"):
while ch not in ("r", "c"):
ch = input("Type 'r' or 'c' ")
green = "u001b[32m"
yellow = "u001b[33m"
reset = "u001b[0m"
if ch == "r":
letters = "abcdefghijklmnopqrstuvwxyz"
ln = {}
for char in letters:
ln[char] = 0
words = open("words.txt", "r")
wordl = []
for item in words.readlines():
wordl.append(item.strip())
word = wordl[random.randint(0, 5756)]
print(f'Your word is 5 letters. Start guessing!')
num = 1
correct = False
while num < 6:
guess = input(f'Guess {str(num)}: ').lower()
sys.stdout.write("