HTMLify your dreams

Filter Options:
index.html | Owner: cody | Views: 280 | Comments: 0 | Open/ Source 2.55 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Tabs Integrations</title> <me

is_even.py | Owner: abh | Views: 362 | Comments: 0 | Open/ Source 290 B

def is_even(n: int) -> bool: if n == 1: return False if n == 0: return True return is_even(n-2) def

Nested Tables | Owner: cody | Views: 293 | Comments: 0 | Open/ Source 1.04 KB

<!DOCTYPE html> <html> <head> <style> table { border-collapse: collapse; width: 100%; border: 1

feedback page | Owner: sachinthakur | Views: 281 | Comments: 0 | Open/ Source 3.17 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=ed

index.html | Owner: cody | Views: 245 | Comments: 0 | Open/ Source 709 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

index.html | Owner: cody | Views: 204 | Comments: 0 | Open/ Source 435 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>B

Data-Types.php | Owner: djdj | Views: 136 | Comments: 0 | Open/ Source 969 B

<?php $name = "Dj"; //String $salary = 5000000; //Interger $experience = 1.5; //Float $bonus = "50.25k";//Decim

index.html | Owner: cody | Views: 233 | Comments: 0 | Open/ Source 2.38 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

js3.html | Owner: demo | Views: 359 | Comments: 0 | Open/ Source 613 B

<!DOCTYPE html> <html> <head> <title>Auto Vibration on Page Load</title> </head> <body> <script> // Funct

dbconn.php | Owner: djdj | Views: 96 | Comments: 0 | Open/ Source 293 B

<?php $server = "localhost"; $username = "root"; $password = ""; $database = "system"; $conn = mysqli_con

index.html | Owner: cody | Views: 187 | Comments: 0 | Open/ Source 2.59 KB

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>G

encrypt_xor_cipher.py | Owner: abh | Views: 297 | Comments: 0 | Open/ Source 130 B

def encrypt_xor_cipher(text, key): cipher = "" for char in text: cipher += chr(ord(char) ^ key) return ciphe

index.html | Owner: cody | Views: 243 | Comments: 0 | Open/ Source 377 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

Operator.php | Owner: djdj | Views: 134 | Comments: 0 | Open/ Source 1.7 KB

<?php /*Operators 1. Arithmetic Operator 2. Assignment Operator 3. Comparison Operator 4. Logical Operator */ $a = 10; $b = 5

LeetCode - Valid Anagram - Python | Owner: abh | Views: 126 | Comments: 0 | Open/ Source 104 B

class Solution: def isAnagram(self, s: str, t: str) -> bool: return sorted(s) == sorted(t)

index.html | Owner: cody | Views: 216 | Comments: 0 | Open/ Source 969 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Toast Notification 01</title>

LeetCode - Merge k Sorted Lists - Python | Owner: abh | Views: 120 | Comments: 0 | Open/ Source 880 B

# Definition for singly-linked list. # class ListNode: # def __init__(self, val=0, next=None): # self.val = val

DBMS Assignment | Owner: djdj | Views: 1026 | Comments: 0 | Open/ Source 5.76 MB

Foreach-Loop.php | Owner: djdj | Views: 251 | Comments: 0 | Open/ Source 465 B

<?php // foreach loop in php $arr = array('Apple','Banana','Grapes','Mango'); //this is a simply a for loop that us

index.html | Owner: cody | Views: 177 | Comments: 0 | Open/ Source 8.37 KB

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>H

LeetCode - Intersection of Two Arrays - Go | Owner: abh | Views: 111 | Comments: 0 | Open/ Source 387 B

func contain(target int, arr []int) bool { for _, v := range arr { if v == target { return true

index.html | Owner: cody | Views: 201 | Comments: 0 | Open/ Source 2.44 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"

LeetCode - Two Sum II - Input Array Is Sorted - Python | Owner: abh | Views: 134 | Comments: 0 | Open/ Source 472 B

class Solution: def twoSum(self, numbers: List[int], target: int) -> List[int]: last_i = None for i in ra

index.html | Owner: cody | Views: 220 | Comments: 0 | Open/ Source 1.58 KB

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Alphabets Word Pronounce</title> <link rel="stylesh

indexsamp.html | Owner: cody | Views: 220 | Comments: 0 | Open/ Source 1.03 KB

<html> <head> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <div><h1>TEMPERATURE CONVERTER</h1></div>

Game.html | Owner: amar | Views: 324 | Comments: 0 | Open/ Source 847 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, init

LeetCode - Running Sum of 1d Array - Go | Owner: abh | Views: 128 | Comments: 0 | Open/ Source 197 B

func runningSum(nums []int) []int { var sum int var sumarray []int for _, n := range nums { sum += n

index.html | Owner: cody | Views: 184 | Comments: 0 | Open/ Source 449 B

<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <ti

index.html | Owner: cody | Views: 216 | Comments: 0 | Open/ Source 3.07 KB

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Bomb Throw</title> <link rel="stylesheet" href="htt

LeetCode - Move Zeros - Go | Owner: abh | Views: 109 | Comments: 0 | Open/ Source 247 B

func moveZeroes(nums []int) { for i, j := 0, 0; i<len(nums); i++ { for;j<len(nums)&&nums[j]==0;j++{} if

38.txt | Owner: coderai | Views: 211 | Comments: 0 | Open/ Source 1.56 KB

The **[r/l8gc](https://www.reddit.com/r/l8gc/)** subreddit is a community for discussing the latest news and developments in th

Indic.html | Owner: dakshbadal1379 | Views: 172 | Comments: 0 | Open/ Source 874 B

45.txt | Owner: coderai | Views: 252 | Comments: 0 | Open/ Source 1.3 KB

The user's GitHub account includes a number of projects that are related to natural language processing and machine learning. T

index.html | Owner: cody | Views: 183 | Comments: 0 | Open/ Source 489 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>T

index.html | Owner: cody | Views: 230 | Comments: 0 | Open/ Source 8.3 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Parallax</title> <meta name="

index.html | Owner: cody | Views: 224 | Comments: 0 | Open/ Source 942 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, ini

top 500 anime question | Owner: amar | Views: 4 | Comments: 0 | Open/ Source 122.67 KB

[ { "title": "Naruto", "questions": [ { "question": "Who is the main character of Naruto?",

index.html | Owner: cody | Views: 262 | Comments: 0 | Open/ Source 4.19 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Tabs</title> <meta name="view

conferm-delete.html | Owner: abh | Views: 310 | Comments: 0 | Open/ Source 466 B

<!--conferm-delete.html--> <h1>Do you really want to delete the file {{ file.name }} at {{ file.path }}?</h1> {% if file.type in

index.html | Owner: cody | Views: 281 | Comments: 0 | Open/ Source 1.02 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Buttons</title> <meta name="v

index.html | Owner: cody | Views: 215 | Comments: 0 | Open/ Source 1.03 KB

<!DOCTYPE html> <html lang="en"> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <titl

index.html | Owner: cody | Views: 238 | Comments: 0 | Open/ Source 1.39 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

30.txt | Owner: coderai | Views: 213 | Comments: 0 | Open/ Source 1.81 KB

* **Information:** I can provide you with information on a wide range of topics, including current events, history, science, an

arithmetic_operation.py | Owner: djdj | Views: 276 | Comments: 0 | Open/ Source 87 B

a = int(input()) b = int(input()) print(a+b) print(a-b) print(a*b)

courses-intership.html | Owner: shubh | Views: 4 | Comments: 0 | Open/ Source 6.56 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width

index.html | Owner: cody | Views: 241 | Comments: 0 | Open/ Source 5.3 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

index.html | Owner: cody | Views: 279 | Comments: 0 | Open/ Source 4.95 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Drag & drop</title> <link rel=

Q507_Perfect_Number.py | Owner: djdj | Views: 316 | Comments: 0 | Open/ Source 246 B

bool checkPerfectNumber(int num){ int i,s=0; for(i=1;i<num/2+1;i++) { if(num%i==0){ s=s+i;

Hik | Owner: amar | Views: 156 | Comments: 0 | Open/ Source 8.97 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, init

battery.html | Owner: dakshbadal1379 | Views: 298 | Comments: 0 | Open/ Source 1.8 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

index.html | Owner: cody | Views: 219 | Comments: 0 | Open/ Source 1.37 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initi

index.html | Owner: cody | Views: 213 | Comments: 0 | Open/ Source 3.93 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-s

index.html | Owner: cody | Views: 186 | Comments: 0 | Open/ Source 512 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>H

logout.php | Owner: djdj | Views: 139 | Comments: 0 | Open/ Source 237 B

<?php session_start(); if(!isset($_SESSION['loggedin']) || $_SESSION['loggedin'] != true){ header("location:logi

index.html | Owner: cody | Views: 210 | Comments: 0 | Open/ Source 749 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

index.html | Owner: cody | Views: 203 | Comments: 0 | Open/ Source 386 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>P

rewrite.lua | Owner: abh | Views: 73 | Comments: 0 | Open/ Source 2.25 KB

--[[ ReWrite ]]-- local M = {} M.write_string = "" M.write_mode = "" M.last_writes = {} function M.load() M.write_string

img2.html | Owner: djdj | Views: 7 | Comments: 0 | Open/ Source 2.14 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

Q595_Big_Countries.sql | Owner: djdj | Views: 324 | Comments: 0 | Open/ Source 88 B

select name,population,area from World where area >= 3000000 or population >= 25000000;

hello-world.pl | Owner: demo | Views: 342 | Comments: 0 | Open/ Source 24 B

print "Hello, World!\n";

index.html | Owner: cody | Views: 273 | Comments: 0 | Open/ Source 546 B

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Steal The Diamond</title> <link rel="stylesheet" hr

index.html | Owner: cody | Views: 210 | Comments: 0 | Open/ Source 7.88 KB

<!-- Based on Design & Build A Website Crash Course by Simo Edwin - Dev Ed (2019) see: https://www.youtube.com/watch?v=EwmvBnR_x

index.html | Owner: cody | Views: 178 | Comments: 0 | Open/ Source 921 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>S

LeetCode - Maximum Score After Splitting a String - Python | Owner: abh | Views: 129 | Comments: 0 | Open/ Source 301 B

class Solution: def maxScore(self, s: str) -> int: maxscore = 0 for i in range(1, len(s)): l

nav.php | Owner: djdj | Views: 116 | Comments: 0 | Open/ Source 3.86 KB

<?php session_start(); ?> <nav class="navbar navbar-expand-lg navbar-dark bg-dark"> <a class="navbar-brand" href="">SabkaCo

index.html | Owner: cody | Views: 229 | Comments: 0 | Open/ Source 4.82 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <!-- <link rel="icon" href="%PUBLIC_URL%/favicon1.ico

welcome.php | Owner: djdj | Views: 276 | Comments: 0 | Open/ Source 1.25 KB

<?php session_start(); if(!isset($_SESSION['loggedin']) || $_SESSION['loggedin'] != true){ header('location:login.p

index.html | Owner: cody | Views: 271 | Comments: 0 | Open/ Source 6.92 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Vertical Tabs</title> <meta n

index.html | Owner: cody | Views: 235 | Comments: 0 | Open/ Source 788 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

is_palindrome.py | Owner: abh | Views: 284 | Comments: 0 | Open/ Source 606 B

#Check the given string, number or list is palindrome or not. def is_palindrome(n: int) -> bool: r = 0 t = n while

Files.php | Owner: djdj | Views: 333 | Comments: 0 | Open/ Source 1.0 KB

<?php //for read the file readfile('yoursfile.txt'); //for only read the file echo readfile('yoursfil

index.html | Owner: cody | Views: 211 | Comments: 0 | Open/ Source 479 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>O

index.html | Owner: cody | Views: 228 | Comments: 0 | Open/ Source 3.03 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

index.html | Owner: cody | Views: 213 | Comments: 0 | Open/ Source 295 B

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Fractal Tree Visualizer</title> <link rel="styleshe

index.html | Owner: cody | Views: 206 | Comments: 0 | Open/ Source 1.7 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial

index.html | Owner: cody | Views: 172 | Comments: 0 | Open/ Source 684 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>S

LootCode - Minimum Bit Flips to Convert Number - Python | Owner: abh | Views: 142 | Comments: 0 | Open/ Source 315 B

class Solution: def minBitFlips(self, start: int, goal: int) -> int: bb = len(bin(max([start, goal]))) - 2

index.html | Owner: cody | Views: 230 | Comments: 0 | Open/ Source 1.32 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />

index.html | Owner: cody | Views: 170 | Comments: 0 | Open/ Source 598 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>X

DBMS Practical File | Owner: djdj | Views: 580 | Comments: 0 | Open/ Source 26.77 KB

Q1. Write a SQL block to display electricity bill for the consumer. Database should consist of consumer number, address, and un

index.html | Owner: cody | Views: 245 | Comments: 0 | Open/ Source 919 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

Mc | Owner: djdj | Views: 601 | Comments: 0 | Open/ Source 6.4 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

Loder 1 | Owner: djdj | Views: 56 | Comments: 0 | Open/ Source 1.65 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Rotating Spring Loop</title> <style> bod

Update-Data-Where-Clause.php | Owner: djdj | Views: 114 | Comments: 0 | Open/ Source 1.33 KB

<?php // Connecting to the Db $servername = "localhost"; $username = "root"; $password = ""; $database = "f

is_armstrong.py | Owner: abh | Views: 308 | Comments: 0 | Open/ Source 314 B

def is_armstrong(n: int): n = str(n) p = len(n) s = 0 for d in n: s += int(d)**p return int(n) == s

index.html | Owner: cody | Views: 244 | Comments: 0 | Open/ Source 1.15 KB

<!DOCTYPE html> <html lang = "en"> <head> <meta charset = "UTF-8"/> <meta http-equiv = "X-UA-Compatible" content = "IE=edge"/>

index.html | Owner: cody | Views: 215 | Comments: 0 | Open/ Source 1.4 KB

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Pattern Generator</title> <link rel="stylesheet" hr

Zoro | Owner: light | Views: 137 | Comments: 0 | Open/ Source 4.63 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

Coding-World | Owner: light | Views: 269 | Comments: 0 | Open/ Source 4.63 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

index.html | Owner: cody | Views: 234 | Comments: 0 | Open/ Source 658 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

index.html | Owner: cody | Views: 211 | Comments: 0 | Open/ Source 1.09 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

index.html | Owner: djdj | Views: 72 | Comments: 0 | Open/ Source 1.14 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

LeetCode - Sum of Values at Indices With K Set Bits - Go | Owner: abh | Views: 110 | Comments: 0 | Open/ Source 381 B

func count_set_bit(n int) int { var count int for ;n>0; { if n % 2 == 1 { n-- count

index.html | Owner: cody | Views: 248 | Comments: 0 | Open/ Source 5.1 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

Chatgpt.py | Owner: amar | Views: 488 | Comments: 0 | Open/ Source 2.73 KB

import gradio as gr import openai from kivy.core.clipboard import Clipboard prompt = "Send a message" def chat(promp

gcertificate.html | Owner: sachinthakur | Views: 307 | Comments: 0 | Open/ Source 2.32 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initia

index.html | Owner: khushi | Views: 197 | Comments: 0 | Open/ Source 44.1 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <met

7.txt | Owner: coderai | Views: 240 | Comments: 0 | Open/ Source 1.82 KB

The "@" symbol, also known as the "at" symbol, is widely used in social media platforms and online forums to tag or mention ano

| Owner: djdj | Views: 5 | Comments: 0 | Open/ Source 934 B

<iframe class="scribd_iframe_embed" title="Hospital Management System Project Report" src="https://www.scribd.com/embeds/324632

LeetCode - Truncate Sentence - Python | Owner: abh | Views: 117 | Comments: 0 | Open/ Source 68 B

class Solution:truncateSentence=lambda _,s,k:" ".join(s.split()[:k])

index.html | Owner: cody | Views: 193 | Comments: 0 | Open/ Source 1019 B

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>M

index.html | Owner: cody | Views: 229 | Comments: 0 | Open/ Source 704 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">

dashboard.html | Owner: abh | Views: 345 | Comments: 0 | Open/ Source 879 B

<!--dashboard.html--> <a href="/edit?filepathnew.html"><h4 style="display:inline-block;">Make new file</h4></a>&nbsp; <a href="/

LeetCode - Count Good Triplets - Ruby | Owner: abh | Views: 108 | Comments: 0 | Open/ Source 549 B

# @leet start # @param {Integer[]} arr # @param {Integer} a # @param {Integer} b # @param {Integer} c # @return {Integer}

webpage3.html | Owner: demo | Views: 320 | Comments: 0 | Open/ Source 1.93 KB

<!DOCTYPE html> <html> <head> <title>JavaScript Demo Page</title> <style> body { font-family:

index_socials.html | Owner: cody | Views: 253 | Comments: 0 | Open/ Source 1.47 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Tabs</title> <meta name="vi

index.html | Owner: cody | Views: 469 | Comments: 0 | Open/ Source 13.97 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initi

index.html | Owner: cody | Views: 235 | Comments: 0 | Open/ Source 965 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Whack A Mole!</title> <link href='https://fonts.googleapis

indes.html | Owner: dakshbadal1379 | Views: 297 | Comments: 0 | Open/ Source 2.32 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, in

jdh74ys6.html | Owner: cody | Views: 321 | Comments: 0 | Open/ Source 150 B

<p onclick="change()">Hello World!!</p> <script> function change(){ document.querySelector("p").innerHTML = "Hello JavaSc

LeetCode - To Be Or Not To Be - JavaScript | Owner: abh | Views: 236 | Comments: 0 | Open/ Source 572 B

/** * @param {string} val * @return {Object} */ var expect = function(val) { return {"toBe": function (v

index.html | Owner: cody | Views: 225 | Comments: 0 | Open/ Source 964 B

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <link rel="stylesheet" type="text/css" href="style.css"> <meta name=

logout.php | Owner: djdj | Views: 215 | Comments: 0 | Open/ Source 237 B

<?php session_start(); if(!isset($_SESSION['loggedin']) || $_SESSION['loggedin'] != true){ header("location:logi

| Owner: djdj | Views: 9 | Comments: 0 | Open/ Source 199.21 KB

<html><head> <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7o

Files2.php | Owner: djdj | Views: 305 | Comments: 0 | Open/ Source 556 B

<?php echo "welcome"; $file = fopen('yoursfile.txt','w'); //when this file not exit so automatticay file create & write te

sticky navigation | Owner: cody | Views: 241 | Comments: 0 | Open/ Source 2.11 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width

index.html | Owner: cody | Views: 278 | Comments: 0 | Open/ Source 8.45 KB

<!DOCTYPE html> <html lang="en"> <meta http-equiv="content-type" content="text/html;charset=UTF-8" /> <head> <meta charset

index.html | Owner: cody | Views: 222 | Comments: 0 | Open/ Source 3.92 KB

<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge'> <title>M

Q326_Power_of_Three.py | Owner: djdj | Views: 287 | Comments: 0 | Open/ Source 95 B

def isPowerOfTwo(self, n): for i in range(0,31): if n == 3**i: return 1 return 0

Click box & Increase Your Score | Owner: djdj | Views: 737 | Comments: 0 | Open/ Source 5.54 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,

index.html | Owner: cody | Views: 357 | Comments: 0 | Open/ Source 926 B

<!-- References: https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API --> <!-- https://developer.mozilla.org/en-US/docs/W

index.html | Owner: cody | Views: 217 | Comments: 0 | Open/ Source 1.18 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, in

Add-Two-No.php | Owner: djdj | Views: 126 | Comments: 0 | Open/ Source 239 B

<?PhP // php is case insensitive programming lang. //with three variable $a = 10; $b = 5; $c = $a + $b; EcHo ($

LeetCode - Print FooBar Alternately - Python | Owner: abh | Views: 124 | Comments: 0 | Open/ Source 728 B

from time import sleep class FooBar: def __init__(self, n): self.n = n self.next = "foo" def

LeetCode - Squares of a Sorted Array - Python | Owner: abh | Views: 283 | Comments: 0 | Open/ Source 129 B

class Solution: def sortedSquares(self, nums: List[int]) -> List[int]: return list(sorted(map(lambda a:a*a, nums))

LeetCode - Rotate List - Go | Owner: abh | Views: 87 | Comments: 0 | Open/ Source 540 B

/** * Definition for singly-linked list. * type ListNode struct { * Val int * Next *ListNode * } */ func ro

Signup.php | Owner: djdj | Views: 296 | Comments: 0 | Open/ Source 6.28 KB

<?php // session_start(); // if(isset($_SESSION['loggedin']) || $_SESSION['loggedin'] == true){ // header('location:

index.html | Owner: cody | Views: 226 | Comments: 0 | Open/ Source 1.01 KB

<!DOCTYPE html> <head> <meta charset="UTF-8"> <title>Typer</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1