Skip to content

Commit

Permalink
lowered the thermodynamics for client side device
Browse files Browse the repository at this point in the history
  • Loading branch information
jehovahsays committed Jun 24, 2024
1 parent 0e63507 commit 6dfbfbd
Show file tree
Hide file tree
Showing 52 changed files with 248 additions and 473 deletions.
10 changes: 6 additions & 4 deletions action.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,14 @@
if (file_exists($file_pointer))
{
echo "The file $file_pointer already exists <br>";
echo "<meta name='viewport' content='width=device-width'><a href='./en/$value.html'>$value</a>";
echo "<meta name='viewport' content='width=device-width'><a href='./en/$value.html'>$value</a>";
echo rand(), "\n";
exit();
}

$handle = fopen("./en/" . $value . ".html", "a");
fwrite($handle,
"\n"
"\n"
. "<!DOCTYPE html>"
. "<html lang=\"en\">"
. "<head>"
Expand Down Expand Up @@ -129,7 +130,7 @@
. "\""
. "><button class="
. "\""
. "core"
. "earth"
. "\""
. ">"
. $value
Expand Down Expand Up @@ -165,13 +166,14 @@
fwrite($handle,
"\""
. $value
. "💡"
. "\""
. ","
. "\n"
. "];return responses[Math.floor(Math.random() * responses.length)];}window.onblur = function (tabs) {alert('switch tabs alert');};");
}
echo "<meta name='viewport' content='width=device-width'>successfully created <a href='./en/$value.html'>$value</a>";

}
fclose($handle);
exit();
?>
16 changes: 12 additions & 4 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
.fieldset {
/* mobile */

fieldset {

margin: 0px;
border-radius: 0px;
padding: 0px;

top: 0px;
left: 0px;
right: 0px;
width: 100%;
height: 100%;
}

.chatbot-container {
width: 80%;
margin: 0 auto;
Expand Down Expand Up @@ -56,7 +59,7 @@
}
}
/* edges */
.nodes {
.input-field {
display: flex;
align-items: flex-start;
position: relative;
Expand Down Expand Up @@ -93,7 +96,7 @@

}

#nodes {
#input-field {
flex: 1;
height: 60px;
border: 1px solid #7f9bbe;
Expand Down Expand Up @@ -122,3 +125,8 @@ left: 15px;
.user-message p[sentTime]:hover::after {
right: 15px;
}

/* articles */



35 changes: 35 additions & 0 deletions delete.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,39 @@
<?php
header_remove( 'X-Powered-By' );
header( 'Cache-control: none, no-cache, private, max-age=0' );
header( 'Pragma: no-cache' );
header( 'Content-Type-Options: nosniff' );
header( 'X-Content-Type-Options: nosniff' );
header( 'XSS-Protection: 1; mode=block' );
header( 'X-XSS-Protection: 1; mode=block' );
header( 'Vary: Accept-Encoding' );
header( 'viewport: width=device-width, initial-scale=1.0' );
header( 'Accept-Language: en-US,en;q=0.5' );
header( 'Connection: Keep-alive' );
header( 'Host: index' );
header( 'description: index' );
header( 'keywords: index' );
header( 'Vary: Accept-Encoding' );
header( 'Expires: 0' );
header( 'Referrer-Policy: same-origin' );
header( 'Accept-Language: en-US,en;q=0.5' );
header( 'Connection: Keep-alive' );
$answer1 = $_POST['secure-form-answer'];
$totalCorrect = 1;
if ($answer1 == "Human") { $totalCorrect++; }
echo "<div id='results'>$totalCorrect / 1 correct</div>";
//The halting problem
foreach($_POST as $variable => $value) {
$value = str_replace(' ', '_', $value);

// checking whether file exists or not
$file_pointer = "./en/" . $value . ".html";
if (file_exists($file_pointer))
{
echo "The file $file_pointer already exists <br>";
echo "<meta name='viewport' content='width=device-width'><a href='./en/$value.html'>$value</a>";
exit();
}
// user has clicked a delete hyperlink
if($_GET['action'] && $_GET['action'] == 'delete') {
unlink($_GET['filename']);
Expand Down
3 changes: 0 additions & 3 deletions en/Pi.html

This file was deleted.

3 changes: 0 additions & 3 deletions en/alignment.html

This file was deleted.

3 changes: 0 additions & 3 deletions en/bioluminescence.html

This file was deleted.

3 changes: 0 additions & 3 deletions en/brinicle-formation.html

This file was deleted.

3 changes: 0 additions & 3 deletions en/compass.html

This file was deleted.

3 changes: 0 additions & 3 deletions en/control.html

This file was deleted.

3 changes: 0 additions & 3 deletions en/diamagnetism.html

This file was deleted.

3 changes: 0 additions & 3 deletions en/echo.html

This file was deleted.

3 changes: 0 additions & 3 deletions en/electromagnetic-conduction.html

This file was deleted.

3 changes: 0 additions & 3 deletions en/electron-transport-chain.html

This file was deleted.

3 changes: 0 additions & 3 deletions en/emergence.html

This file was deleted.

3 changes: 0 additions & 3 deletions en/evolution.html

This file was deleted.

3 changes: 0 additions & 3 deletions en/existence.html

This file was deleted.

3 changes: 0 additions & 3 deletions en/freewill.html

This file was deleted.

3 changes: 0 additions & 3 deletions en/gravity.html

This file was deleted.

3 changes: 0 additions & 3 deletions en/half.html

This file was deleted.

3 changes: 0 additions & 3 deletions en/infinity-symbol.html

This file was deleted.

3 changes: 0 additions & 3 deletions en/intelligence.html

This file was deleted.

Loading

0 comments on commit 6dfbfbd

Please sign in to comment.