aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorecho <91651232+exhq@users.noreply.github.com>2022-09-29 13:07:09 +0330
committerecho <91651232+exhq@users.noreply.github.com>2022-09-29 13:07:09 +0330
commita4c9eca3c4ddf7187b159c685a251474fdc7a380 (patch)
tree0cf0ac175b1c1441aa5a3c5ebfd7ebc10a596f37
parent87e306acaf74d8ac28ab36053c01377ffc467c22 (diff)
downloadexhq.github.io-a4c9eca3c4ddf7187b159c685a251474fdc7a380.tar.gz
exhq.github.io-a4c9eca3c4ddf7187b159c685a251474fdc7a380.tar.bz2
exhq.github.io-a4c9eca3c4ddf7187b159c685a251474fdc7a380.zip
cleaning
-rw-r--r--console/src/jsMain/kotlin/main.kt51
1 files changed, 5 insertions, 46 deletions
diff --git a/console/src/jsMain/kotlin/main.kt b/console/src/jsMain/kotlin/main.kt
index bffe218..e8f5e77 100644
--- a/console/src/jsMain/kotlin/main.kt
+++ b/console/src/jsMain/kotlin/main.kt
@@ -9,10 +9,8 @@ import kotlinx.html.img
import kotlinx.html.js.p
import moe.nea89.website.*
import styled.injectGlobal
-import kotlin.random.Random
import kotlinx.html.js.onLoadFunction
-var isnickrude = true
val defaultFileSystem = fileSystem {
"run"{
"question" text "what is this folder anyways? is it like stuff that runs before everything?"
@@ -34,29 +32,7 @@ val defaultFileSystem = fileSystem {
"note" text "lmfao shes gone"
}
}
- /* "home/exhq" {
- "etc" {
- "passwd" text "hunter2"
- }
- "todo" text """
- | - git gud
- | - finish this website
- | - convince the general public that comic sans is a viable font
- """.trimMargin()
- }
- "flag" text "CTF{12345abcdefghijklmonp3.1.4.1.5.9.2.8}"*/
}
-
-val funny = arrayOf(
- "398964",
- "244327",
- "265725",
- "260629",
- "407384",
- "356093",
- "140870",
- "359126",
-)
fun redirect(arg: String){
if(arg.matches("(https://|http://).*")){
window.location.href = arg
@@ -65,9 +41,6 @@ fun redirect(arg: String){
window.location.href = "https://$arg"
}
}
-fun isNumericToX(toCheck: String): Boolean {
- return toCheck.toDoubleOrNull() != null
-}
fun main() {
var startupmsg = "type help to get a list of commands"
val root = document.body!!.append.div()
@@ -80,6 +53,7 @@ fun main() {
body {
backgroundImage = Image("url(weebshit1.jpg)")
backgroundSize = "cover"
+ backgroundAttachment = BackgroundAttachment.fixed
}
}
@@ -133,11 +107,8 @@ fun main() {
""".trimIndent())
})
- console.registerCommand(command("blahaj", "shark"){
- if (isnickrude){
- console.addLine("nick was rude ;-;")
- }
- else{
+ console.registerCommand(command("blahaj", "shark")
+{
console.addMultilineText("""
,(((/
/(((((
@@ -157,7 +128,6 @@ fun main() {
**,,,****//*(##((###(#(((
&#(#/#((((((((#
""".trimIndent())
- }
})
@@ -243,7 +213,8 @@ fun main() {
})
console.registerCommand(command("sudo"){
- val funny = console.fileAccessor!!.currentDir.joinToString("/", "/")
+ //testing
+ //val funny = console.fileAccessor!!.currentDir.joinToString("/", "/")
var str = ""
for (e in args){
str += "$e "
@@ -263,17 +234,5 @@ fun main() {
console.registerCommand(command("testredirect"){
redirect(args[0])
})
- console.registerCommand(command("sauce"){
- console.addLine(args[0])
- if (isNumericToX(args[0])){
- console.addLine("redirecting you to funny")
- redirect("https://nhentai.net/g/${args[0]}") }
- else{
- console.addLine("here bro i got some good shit")
- redirect(funny[Random.nextInt(funny.size)])
- }
-
-
- })
} \ No newline at end of file