HTMLify your dreams

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

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

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

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

Java Task 3 | Owner: itintern | Views: 5 | Comments: 0 | Open/ Source 7.06 KB

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

toggle1.html | Owner: cody | Views: 295 | Comments: 0 | Open/ Source 16.59 KB

<label> <input type="checkbox"> <span class="custom__checkbox"> <span class="custom__checkbox__face"> <span cl

index.html | Owner: cody | Views: 132 | Comments: 0 | Open/ Source 384 B

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

Q1050_Actor_and_Directors)Who_Cooperated_At_Least_Three_Times.sql | Owner: djdj | Views: 244 | Comments: 0 | Open/ Source 121 B

select actor_id,director_id from ActorDirector group by actor_id, director_id Having count(actor_id = director_id) >=3;

Coding-World | Owner: light | Views: 180 | 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

Q69_Sqrt(x).c | Owner: djdj | Views: 201 | Comments: 0 | Open/ Source 45 B

LeetCode - Circular Sentence - Python | Owner: abh | Views: 92 | Comments: 0 | Open/ Source 333 B

class Solution: def isCircularSentence(self, sentence: str) -> bool: sentence = sentence.split(" ") if se

index.html | Owner: cody | Views: 270 | Comments: 0 | Open/ Source 553 B

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

is_consonant.py | Owner: abh | Views: 177 | Comments: 0 | Open/ Source 739 B

def is_consonant(char): consonants = [ "b", "c", "d", "f", "g", "h", "j", "k", "l", "m", "n", "p", "

Get_Cookies.php | Owner: djdj | Views: 180 | Comments: 0 | Open/ Source 71 B

<?php $ram = $_COOKIE['category']; echo "cookie is: " .$ram; ?>

index.html | Owner: cody | Views: 162 | Comments: 0 | Open/ Source 1.35 KB

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

Form.php | Owner: djdj | Views: 76 | Comments: 0 | Open/ Source 5.47 KB

<!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" c

index.html | Owner: khushi | Views: 307 | Comments: 0 | Open/ Source 4.12 KB

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

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

<div class="nav-bar h-nav-resp"> <div class="nav-left v-resp"> <h3 class="logo">PaathShala</h3> <nav class="nav-

index.html | Owner: cody | Views: 172 | Comments: 0 | Open/ Source 1.29 KB

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

index.html | Owner: cody | Views: 164 | Comments: 0 | Open/ Source 1.91 KB

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

Rock Paper Scissors Game in Kotlin | Owner: demo | Views: 288 | Comments: 0 | Open/ Source 1.04 KB

import java.util.Random fun main() { val options = arrayOf("Rock", "Paper", "Scissors") while (true) { p

index.html | Owner: cody | Views: 188 | Comments: 0 | Open/ Source 861 B

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

GLOWLOGINPAGE.HTML | Owner: dakshbadal1379 | Views: 280 | Comments: 0 | Open/ Source 501 B

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1">

split.html | Owner: cody | Views: 175 | Comments: 0 | Open/ Source 397 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>split</title> </head> <body> <div> <nav> <h1

index.html | Owner: cody | Views: 113 | Comments: 0 | Open/ Source 772 B

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

First Fortran Program | Owner: abh | Views: 55 | Comments: 0 | Open/ Source 55 B

program test print '(A)', "hi" end program test

index.html | Owner: cody | Views: 104 | Comments: 0 | Open/ Source 1.88 KB

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

Amar-engine.html | Owner: amar | Views: 142 | Comments: 0 | Open/ Source 5.09 KB

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

LeetCode - Number of Recent Calls - Go | Owner: abh | Views: 41 | Comments: 0 | Open/ Source 471 B

type RecentCounter struct { pings []int } func Constructor() RecentCounter { var rc RecentCounter return rc }

LeetCode - Remove Duplicates from Sorted Array - Go | Owner: abh | Views: 45 | Comments: 0 | Open/ Source 279 B

func removeDuplicates(nums []int) int { l := len(nums) for i:=0; i<l-1; i++ { if nums[i] == nums[i+1] {

index.html | Owner: itintern | Views: 8 | Comments: 0 | Open/ Source 6.73 KB

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

Displaying-Data.php | Owner: djdj | Views: 196 | Comments: 0 | Open/ Source 938 B

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

index.html | Owner: cody | Views: 171 | Comments: 0 | Open/ Source 706 B

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

Files.php | Owner: djdj | Views: 221 | Comments: 0 | Open/ Source 1.47 KB

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

git-clone.html | Owner: abh | Views: 229 | Comments: 0 | Open/ Source 1.51 KB

<!DOCTYPE html> <html> <head> <title>Git Clone</title> {% include 'stylesheet.html' %} <style> </style> </h

index.html | Owner: cody | Views: 112 | Comments: 0 | Open/ Source 499 B

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

OTP Generator.html | Owner: shubh | Views: 263 | Comments: 0 | Open/ Source 467 B

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

53.txt | Owner: coderai | Views: 169 | Comments: 0 | Open/ Source 1.36 KB

Coderai subreddit is a community for discussing Coderai, an AI-powered coding assistant. Users can share their experiences, ask

redirect.js | Owner: djdj | Views: 269 | Comments: 0 | Open/ Source 54 B

<script> location.href="https://dj.000.pe" </script>

index.html | Owner: cody | Views: 101 | Comments: 0 | Open/ Source 1.13 KB

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

index.html | Owner: cody | Views: 112 | Comments: 0 | Open/ Source 417 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: 128 | Comments: 0 | Open/ Source 5.39 KB

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

index.html | Owner: cody | Views: 192 | Comments: 0 | Open/ Source 416 B

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

welcome.php | Owner: djdj | Views: 78 | Comments: 0 | Open/ Source 150 B

<?php session_start(); if(isset($_SESSION['loggedin']) || $_SESSION['loggedin'] == true){ echo "welcome ".$_SESSION[

index.html | Owner: cody | Views: 115 | Comments: 0 | Open/ Source 392 B

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

index.html | Owner: cody | Views: 120 | Comments: 0 | Open/ Source 1.31 KB

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

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

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

index.html | Owner: cody | Views: 121 | Comments: 0 | Open/ Source 2.55 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>login</title> <script type="module" src="https://un

Flower | Owner: djdj | Views: 74 | Comments: 1 | Open/ Source 6.43 KB

<style> body { margin: 0; padding: 30px; justify-content: center; align-items: center; width: 100%;

InShot_20231114_100026759.mp4 | Owner: amar | Views: 162 | Comments: 1 | Open/ Source 668.88 KB

index.html | Owner: cody | Views: 192 | Comments: 0 | Open/ Source 5.19 KB

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

LeetCode - Delete Node in a Linked List - Go | Owner: abh | Views: 19 | Comments: 0 | Open/ Source 330 B

// @leet start /** * Definition for singly-linked list. * type ListNode struct { * Val int * Next *ListNode *

index.html | Owner: cody | Views: 129 | Comments: 0 | Open/ Source 3.66 KB

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

LeetCode - Return Length of Arguments Passed - JavaScript | Owner: abh | Views: 157 | Comments: 0 | Open/ Source 208 B

/** * @param {...(null|boolean|number|string|Array|Object)} args * @return {number} */ var argumentsLength = function(...

index.html | Owner: cody | Views: 179 | Comments: 0 | Open/ Source 15.2 KB

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

LeetCode - Number of Ways to Split Array - Python | Owner: abh | Views: 126 | Comments: 0 | Open/ Source 300 B

class Solution: def waysToSplitArray(self, nums: List[int]) -> int: c = 0 ls = 0 rs = sum(nums)

search-bar.html | Owner: abh | Views: 236 | Comments: 0 | Open/ Source 963 B

<div class="search-form"> <form action="/search" method="GET"> <input type="text" name="q" value="{{ q }}" placehold

index.html | Owner: cody | Views: 164 | Comments: 0 | Open/ Source 903 B

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

mean.py | Owner: abh | Views: 225 | Comments: 0 | Open/ Source 303 B

def mean(*nums): s = 0 c = 0 for n in nums: s += n c += 1 return s / c def mean(nums): s =

index.html | Owner: cody | Views: 99 | Comments: 0 | Open/ Source 2.49 KB

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

double vertical slider | Owner: cody | Views: 178 | Comments: 0 | Open/ Source 2.48 KB

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

demo02 | Owner: light | Views: 45 | Comments: 0 | Open/ Source 2.42 KB

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

eventObject.html | Owner: shubh | Views: 220 | Comments: 0 | Open/ Source 768 B

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

LeetCode - Keep Multiplying Found Values by Two - Go | Owner: abh | Views: 58 | Comments: 0 | Open/ Source 462 B

func findFinalValue(nums []int, original int) int { for ;true; { f := false for _, n := range nums {

Q181_Employees_Earning_More_Than_Their_Managers.sql | Owner: djdj | Views: 245 | Comments: 0 | Open/ Source 104 B

SELECT e.name AS Employee FROM Employee e, Employee a WHERE e.managerID = a.id AND e.salary > a.salary;

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

<!--index.html--> <!DOCTYPE html> <html lang="en"> <head> <title>Maths Game</title> <meta charset="utf-8"> <meta na

Multi-Dieminsion-Array.php | Owner: djdj | Views: 175 | Comments: 0 | Open/ Source 1.07 KB

<?php //Multi Dieminsion Array $md = array( array(2,5,7,8), array(1,2,3,1), array(5,6,7,2));

index.html | Owner: cody | Views: 173 | Comments: 0 | Open/ Source 1.16 KB

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

index.html | Owner: cody | Views: 176 | Comments: 0 | Open/ Source 415 B

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

Steps | Owner: djdj | Views: 290 | Comments: 0 | Open/ Source 74 B

<script> window.location.href = "https://dj.000.pe/steps"; </script>

LeetCode - Reformat Date - Python | Owner: abh | Views: 68 | Comments: 0 | Open/ Source 626 B

class Solution: def reformatDate(self, date: str) -> str: days = [ "1st", "2nd", "3rd", "4th", "5th",

index.html | Owner: cody | Views: 111 | Comments: 0 | Open/ Source 674 B

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

Dates.php | Owner: djdj | Views: 101 | Comments: 0 | Open/ Source 1.18 KB

<?php //dates in php echo date("d"). "\n"; //Print date of today : 24 echo date("j"). "\n"; //Print dat

index.html | Owner: shubh | Views: 228 | Comments: 0 | Open/ Source 686 B

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

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

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

chat.html | Owner: djdj | Views: 167 | Comments: 0 | Open/ Source 6.0 KB

<!DOCTYPE html> <html> <head> <meta name="viewpor" content="width=device-width, initial-scale=1.0"> <title>IPChat</tit

index.html | Owner: cody | Views: 104 | Comments: 0 | Open/ Source 466 B

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

locked-file.html | Owner: abh | Views: 226 | Comments: 0 | Open/ Source 505 B

<!DOCTYPE html> <html> <head> <title>File is locked</title> {% include "stylesheet.html" %} </head> <body> <h1>HTMLi

index.html | Owner: cody | Views: 97 | 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

requirements.txt | Owner: abh | Views: 169 | Comments: 0 | Open/ Source 54 B

flask flask_sqlalchemy flask_migrate requests pygments

| Owner: djdj | Views: 34 | Comments: 0 | Open/ Source 2.0 KB

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

1.txt | Owner: coderai | Views: 180 | Comments: 0 | Open/ Source 1.26 KB

CoderAI is a powerful tool that enhances the coding experience by providing assistance and guidance to developers. Its benefits

Ludo with HTML and CSS | Owner: cody | Views: 104 | Comments: 0 | Open/ Source 7.03 KB

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

CALCUEOT.html | Owner: dakshbadal1379 | Views: 249 | Comments: 0 | Open/ Source 5.29 KB

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

index.html | Owner: cody | Views: 160 | Comments: 0 | Open/ Source 637 B

<!-- Reference: https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition --> <!DOCTYPE html> <html lang="en"> <head

index.html | Owner: cody | Views: 191 | Comments: 0 | Open/ Source 406 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Audio Wave</title> <meta name="viewport" cont

Java Task 4 | Owner: itintern | Views: 3 | Comments: 0 | Open/ Source 7.1 KB

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

index.html | Owner: cody | Views: 191 | Comments: 0 | Open/ Source 1.98 KB

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

windows.html | Owner: cody | Views: 83 | Comments: 0 | Open/ Source 2.73 KB

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

LeetCode - Make The String Great - Go | Owner: abh | Views: 38 | Comments: 0 | Open/ Source 400 B

func abs(n int) int { if n < 0 { return -n } return n } func makeGood(s string) string { var stac

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

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

Function.php | Owner: djdj | Views: 215 | Comments: 0 | Open/ Source 627 B

<?php //Function in php $ram = [90, 88, 85, 95, 91]; $sum = marks($ram); // function call $ave = avera($ram);//

opdppfdg7z.pdf | Owner: djdj | Views: 19 | Comments: 0 | Open/ Source 5.74 MB

Note | Owner: himanshu | Views: 51 | Comments: 0 | Open/ Source 6.19 KB

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

16.txt | Owner: coderai | Views: 175 | Comments: 0 | Open/ Source 1.14 KB

* **Trolling or not liking the subreddit.** This is the most likely reason, as it is a common tactic used by trolls and users w

index.html | Owner: cody | Views: 189 | Comments: 0 | Open/ Source 3.02 KB

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

If-else.php | Owner: djdj | Views: 99 | Comments: 0 | Open/ Source 776 B

<?php $a = 5; $b = 2000; $c = 2016; if($a > 2){ echo "a is greater than 2\n"; } else{

LeetCode - Number Complement - Python | Owner: abh | Views: 64 | Comments: 0 | Open/ Source 214 B

class Solution: def findComplement(self, num: int) -> int: b = bin(num)[2:] b = b.replace("0", "2")

3D Boxes BackGround | Owner: cody | Views: 139 | Comments: 0 | Open/ Source 698 B

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

is_pangram.py | Owner: abh | Views: 206 | Comments: 0 | Open/ Source 279 B

def is_pangram(text): letters = "abcdefghijklmnopqrstuvwxyz" for char in text: if not char.lower() in letters:

Q2703_Return_Length_of_Arguments_Passed.js | Owner: djdj | Views: 153 | Comments: 0 | Open/ Source 69 B

var argumentsLength = function(...args) { return args.length; };

index.html | Owner: cody | Views: 179 | Comments: 0 | Open/ Source 2.05 KB

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

LeetCode - Robot Bounded In Circle - Dart | Owner: abh | Views: 9 | Comments: 0 | Open/ Source 2.19 KB

class Solution { bool isRobotBounded(String instructions) { List<int> direction = [0, 1], cordinates = [0, 0];

Q29_Divide_Two_Integers.py | Owner: djdj | Views: 237 | Comments: 0 | Open/ Source 222 B

class Solution { function divide($dividend, $divisor) { if(intval($dividend/$divisor) > 2**31-1){ return

Q1148_Article_Views_I.sql | Owner: djdj | Views: 280 | Comments: 4 | Open/ Source 88 B

select distinct author_id as id from views where author_id = viewer_id order by id asc;

are_anagrams.py | Owner: abh | Views: 202 | Comments: 0 | Open/ Source 789 B

TESTCCASES = [ { "positional": ("string", "string",), "keyword": {}, "return": True, "msg":

LeetCode - First Letter to Appear Twice - Python | Owner: abh | Views: 242 | Comments: 0 | Open/ Source 185 B

class Solution: def repeatedCharacter(self, s: str) -> str: seen = set() for c in s: if c in

upload certificate.html | Owner: sachinthakur | Views: 220 | Comments: 0 | Open/ Source 4.15 KB

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

setAttribute.html | Owner: shubh | Views: 227 | Comments: 0 | Open/ Source 569 B

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

Function.php | Owner: djdj | Views: 172 | Comments: 0 | Open/ Source 627 B

<?php //Function in php $ram = [90, 88, 85, 95, 91]; $sum = marks($ram); // function call $ave = avera($ram);//

index.html | Owner: cody | Views: 170 | 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" />

john.html | Owner: dakshbadal1379 | Views: 105 | Comments: 0 | Open/ Source 4.83 KB

<!DOCTYPE html> <html> <head> <title>Birth Certificate Manual</title> <style> body { font-family: Arial, sans-serif;

index.html | Owner: cody | Views: 109 | Comments: 0 | Open/ Source 422 B

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

imagecard.html | Owner: tanishkak | Views: 235 | Comments: 0 | Open/ Source 1.31 KB

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

LeetCode - Running Sum of 1d Array - Go | Owner: abh | Views: 57 | 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: 174 | 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

index.html | Owner: cody | Views: 181 | Comments: 0 | Open/ Source 692 B

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Dot Connect Four</title> <link rel='stylesheet' hre

LeetCode - Chunk Array - JavaScript | Owner: abh | Views: 111 | Comments: 0 | Open/ Source 391 B

/** * @param {Array} arr * @param {number} size * @return {Array} */ var chunk = function(arr, size) { const chunk

Nenem.html | Owner: amar | Views: 287 | Comments: 0 | Open/ Source 4.19 KB

<!DOCTYPE html> <html> <head> <title>Basic Snake HTML Game</title> <meta charset="UTF-8"> <style> html, body {

index.html | Owner: cody | Views: 120 | Comments: 0 | Open/ Source 543 B

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

LeetCode - Shuffle String - Python | Owner: abh | Views: 355 | Comments: 0 | Open/ Source 206 B

class Solution: def restoreString(self, s: str, indices: List[int]) -> str: shuffeld = "" for i in range(

LeetCode - Shuffle an Array - Python | Owner: abh | Views: 74 | Comments: 0 | Open/ Source 495 B

from random import shuffle class Solution: def __init__(self, nums: List[int]): self.list = nums sel

If-else.php | Owner: djdj | Views: 233 | Comments: 0 | Open/ Source 776 B

<?php $a = 5; $b = 2000; $c = 2016; if($a > 2){ echo "a is greater than 2\n"; } else{

gcd.py | Owner: abh | Views: 272 | Comments: 0 | Open/ Source 138 B

def gcd(a, b): if b == 0: return a return gcd(b, a % b) def gcd(a, b): while b: a, b = b, a % b

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

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

new.css | Owner: itintern | Views: 48 | Comments: 0 | Open/ Source 12.0 KB

* { margin: 0; padding: 0; box-sizing: border-box; } html, body { height: 100%; width: 100

test.html | Owner: demo | Views: 293 | Comments: 0 | Open/ Source 733 B

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

index.html | Owner: cody | Views: 192 | Comments: 0 | Open/ Source 842 B

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

LeetCode - Function Composition - JavaScript | Owner: abh | Views: 103 | Comments: 0 | Open/ Source 348 B

/** * @param {Function[]} functions * @return {Function} */ var compose = function(functions) { return functio

index.html | Owner: cody | Views: 185 | Comments: 0 | Open/ Source 1.5 KB

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