HTMLify your dreams

Filter Options:
Primenumber.html | Owner: amar | Views: 243 | Comments: 0 | Open/ Source 867 B

<script type="text/javascript"> // program to check if a number is prime or not // take input from the user const

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

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

edge.html | Owner: cody | Views: 44 | Comments: 0 | Open/ Source 1.43 KB

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

index.html | Owner: cody | Views: 85 | Comments: 0 | Open/ Source 3.68 KB

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

login.html | Owner: abh | Views: 182 | Comments: 0 | Open/ Source 769 B

<!DOCTYPE html> <html> <head> <title>Login</title> {% include "stylesheet.html" %} <style> </style> </head> <bo

removeEventListener.html | Owner: shubh | Views: 221 | Comments: 0 | Open/ Source 1.15 KB

// remove eventlistener <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="wi

test.html | Owner: priyanka | Views: 306 | Comments: 0 | Open/ Source 1.76 KB

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

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

CHECK PANGRAM BY C | Owner: sunny_jain | Views: 136 | Comments: 0 | Open/ Source 927 B

//WRITE a program to check if string is pangram? // input-"the quick brown fox jumps over the lazy dog" //output- is a pangra

Leetcode Simple Question | Owner: djdj | Views: 327 | Comments: 0 | Open/ Source 2.49 KB

<h1>Simple 1</h1> <table border="1"> <tr><td><a href ="https://leetcode.com/problems/neither-minimum-nor-maximum/">Neither Min

LeetCode - Reverse String - Python | Owner: abh | Views: 14 | Comments: 0 | Open/ Source 231 B

class Solution: def reverseString(self, s: List[str]) -> None: """ Do not return anything, modify s in-pl

8.txt | Owner: coderai | Views: 124 | Comments: 0 | Open/ Source 1000 B

A Twitter user is an individual who has registered an account on the social media platform Twitter. **Functionality** Twitter

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

index.html | Owner: cody | Views: 92 | Comments: 0 | Open/ Source 482 B

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

| Owner: itintern | Views: 10 | Comments: 0 | Open/ Source 7.26 KB

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

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

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

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

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

Sign in page | Owner: amar | Views: 74 | Comments: 0 | Open/ Source 7.16 KB

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

Scope-Local-Global-Variable.php | Owner: djdj | Views: 204 | Comments: 0 | Open/ Source 576 B

<?php $a = 50; // Global Variable function paste(){ $a = 10; // Local Variable echo $a. "\n"; g

question paper.html | Owner: sachinthakur | Views: 209 | Comments: 0 | Open/ Source 3.21 KB

<!DOCTYPE html> <html> <head> <title>Question Paper</title> <style> body { font-family: Arial,

index.html | Owner: cody | Views: 126 | Comments: 0 | Open/ Source 1.46 KB

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

LootCode - Minimum Bit Flips to Convert Number - Python | Owner: abh | Views: 38 | 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: 149 | Comments: 0 | Open/ Source 1.05 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: 199 | Comments: 0 | Open/ Source 5.29 KB

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

Landing Page.html | Owner: shubh | Views: 246 | Comments: 0 | Open/ Source 1.52 KB

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

encrypt_caesar_cipher.py | Owner: abh | Views: 242 | Comments: 0 | Open/ Source 284 B

def encrypt_caesar_cipher(text, shift): cipher = "" for char in text: if char.isalpha(): offset = 65

index.html | Owner: cody | Views: 96 | 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: 79 | Comments: 0 | Open/ Source 681 B

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

Name.html | Owner: amar | Views: 81 | Comments: 0 | Open/ Source 2.74 KB

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

sqrt.py | Owner: abh | Views: 207 | Comments: 0 | Open/ Source 507 B

def sqrt(n): return n ** 0.5 def sqrt(n): return n ** (1/2) def sqrt(n :int): i = 0 while i*i < n: i +

Function.php | Owner: djdj | Views: 67 | 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: 77 | Comments: 0 | Open/ Source 2.35 KB

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

hehe.html | Owner: amar | Views: 256 | Comments: 1 | Open/ Source 374 B

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

index.html | Owner: cody | Views: 140 | Comments: 0 | Open/ Source 933 B

<html> <head> <link rel="stylesheet" href="css/bootstrap.min.css"> <link rel="stylesheet" href="css/main.css

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

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

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

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

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

index.html | Owner: cody | Views: 95 | Comments: 0 | Open/ Source 418 B

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

Q1068_Product_Sales_Analysis_I.sql | Owner: djdj | Views: 239 | Comments: 0 | Open/ Source 103 B

select product_name,year,price from sales inner join product on sales.product_id = product.product_id;

index.html | Owner: cody | Views: 167 | Comments: 0 | Open/ Source 12.99 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Toolbar Menu</title> <meta nam

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

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

PY0B T1 | Owner: itintern | Views: 12 | Comments: 0 | Open/ Source 5.59 KB

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

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

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

Calculator | Owner: cody | Views: 164 | Comments: 0 | Open/ Source 1.91 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: 153 | Comments: 0 | Open/ Source 2.78 KB

<!-- Based on Build One Color UI Responsive Website by Simo Edwin - Dev Ed (2020) see: https://www.youtube.com/watch?v=2IjyqauKu

priyanka.html | Owner: priyanka | Views: 271 | Comments: 1 | Open/ Source 580 B

<html> <head> <title>To create paragraph</title> </head> <body background ="pexels-pixabay-219998.jpg"TEXT="BLUE"> <center>

rahul verma c language program by vivek jain sir ji.c | Owner: rahul_verma_coder | Views: 116 | Comments: 0 | Open/ Source 21.96 KB

QUESTION 1 /* CALL BY value_ SWAP THE VALUE OF THE TWO VARIABLE */ #include<stdio.h> #include<conio.h> void main(){ int a

index.html | Owner: cody | Views: 136 | Comments: 0 | Open/ Source 1.97 KB

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

| Owner: itintern | Views: 54 | Comments: 0 | Open/ Source 52.57 KB

<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="utf-8"/> <meta name="generator" content="p

index.html | Owner: cody | Views: 92 | Comments: 0 | Open/ Source 1.45 KB

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

john.html | Owner: dakshbadal1379 | Views: 80 | 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: 100 | Comments: 0 | Open/ Source 1010 B

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

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

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Math Game</title> <link rel='stylesheet' href='http

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

LeetCode - Allow One Function Call - JavaScript | Owner: abh | Views: 117 | Comments: 0 | Open/ Source 415 B

/** * @param {Function} fn * @return {Function} */ var once = function(fn) { let called = false; return function(.

43.txt | Owner: coderai | Views: 133 | Comments: 0 | Open/ Source 1.82 KB

**Key Features:** * **Error Reduction:** Flags coding errors for early detection and resolution, ensuring code stability. * **

rbott.py | Owner: abh | Views: 215 | Comments: 0 | Open/ Source 2.05 KB

from random import randint from time import sleep class Grid: def __init__(self, bots = [].copy()): self.width

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

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

tribute.html | Owner: tanishkak | Views: 336 | Comments: 0 | Open/ Source 4.14 KB

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

index.html | Owner: cody | Views: 151 | Comments: 0 | Open/ Source 1.2 KB

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

LeetCode - Construct K Palindrome Strings - Python | Owner: abh | Views: 21 | Comments: 0 | Open/ Source 307 B

class Solution: def canConstruct(self, s: str, k: int) -> bool: if len(s) < k: return False m = {}

index.html | Owner: cody | Views: 193 | Comments: 0 | Open/ Source 2.87 KB

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

index.html | Owner: cody | Views: 141 | Comments: 0 | Open/ Source 1.64 KB

<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="css/bootstrap.min.css"> <link rel="stylesheet" hr

index.html | Owner: cody | Views: 84 | Comments: 0 | Open/ Source 1.38 KB

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

| Owner: djdj | Views: 115 | Comments: 0 | Open/ Source 1.78 KB

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

Dates.php | Owner: djdj | Views: 85 | 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

LeetCode - Uncommon Words from Two Sentences - Python | Owner: abh | Views: 30 | Comments: 0 | Open/ Source 446 B

class Solution: def uncommonFromSentences(self, s1: str, s2: str) -> List[str]: uncommon_words = [] s1 =

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

Q509_Fibonacci_Series.c | Owner: djdj | Views: 194 | Comments: 0 | Open/ Source 123 B

MySqL-Database.php | Owner: djdj | Views: 163 | Comments: 0 | Open/ Source 672 B

<?php //for connection to database $servername = "localhost"; $username = "root"; $password = ""; //create

Q7_Reverse_Integer.py | Owner: djdj | Views: 185 | Comments: 0 | Open/ Source 286 B

def reverse(self, x): if x > (2**30) or x < (-2**31)+1: return 0 m = 0 if x < 0: x = x * (-1) m = 1 s = 0

NAVIGATIONBAR.HTML | Owner: dakshbadal1379 | Views: 220 | Comments: 0 | Open/ Source 1.2 KB

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

index.html | Owner: cody | Views: 137 | Comments: 0 | Open/ Source 2.02 KB

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

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

CALCUEOT.html | Owner: dakshbadal1379 | Views: 220 | 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

57.txt | Owner: coderai | Views: 124 | Comments: 0 | Open/ Source 909 B

```html <a href="/coderai">@coderai</a> ``` This line creates a link element with the following attributes: * `href`: `/coder

Hand Written Assignment -1 of Ecommerce | Owner: djdj | Views: 856 | Comments: 5 | Open/ Source 7.11 MB

login.php | Owner: djdj | Views: 73 | Comments: 0 | Open/ Source 4.22 KB

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

LeetCode - Add Two Integers - Scala | Owner: abh | Views: 246 | Comments: 1 | Open/ Source 100 B

object Solution { def sum(num1: Int, num2: Int): Int = { return num1 + num2; } }

For-Loop.php | Owner: djdj | Views: 68 | Comments: 0 | Open/ Source 80 B

<?php //for loop for ($i=0; $i <= 10; $i++) { echo $i; } ?>

feedback UI design | Owner: cody | Views: 191 | Comments: 0 | Open/ Source 1.3 KB

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

index_socials.html | Owner: cody | Views: 141 | Comments: 0 | Open/ Source 2.1 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Sidebar</title> <link rel="preconnect" href="https:

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

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

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

img.html | Owner: djdj | Views: 238 | Comments: 0 | Open/ Source 1.57 KB

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

index.html | Owner: cody | Views: 166 | Comments: 0 | Open/ Source 9.41 KB

<!-- Based on Learn How To Build A Website In 1 Hour! by Kyle Cook - Web Dev Simplified (2019) see: https://www.youtube.com/watc

README.md | Owner: abh | Views: 182 | Comments: 1 | Open/ Source 10 B

# HTMLify

The Moon | Owner: abh | Views: 433 | Comments: 0 | Open/ Source 2.1 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>The MOON</title> <meta name="viewport" co

index.html | Owner: cody | Views: 155 | Comments: 0 | Open/ Source 9.17 KB

<!-- Based on Build A Responsive Website With HTML & CSS Tutorial by Simo Edwin - Dev Ed (2019) see: https://www.youtube.com/wat

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

chang.html | Owner: priyanka | Views: 284 | Comments: 0 | Open/ Source 304 B

<HTML> <HEAD> <TITLE> LINK</TITLE> <link rel="stylesheet" type"text/css" href="style.css"> </HEAD> <body> <h2><center>Link

While-loop.php | Owner: djdj | Views: 51 | Comments: 0 | Open/ Source 99 B

<?php //while loop $i = 1; while($i<=10){ echo $i. "\n"; $i++; } ?>

LeetCode - Hash Divided String - Go | Owner: abh | Views: 0 | Comments: 0 | Open/ Source 422 B

func stringHash(s string, k int) string { var result string var chunk string for _, c := range s { chunk

Q50_Pow(x,n).py | Owner: djdj | Views: 209 | Comments: 0 | Open/ Source 39 B

def myPow(self, x, n): return x ** n

home.html | Owner: abh | Views: 177 | Comments: 0 | Open/ Source 1.59 KB

<!DOCTYPE html> <html> <head> <title>HTMLify your dreams</title> {% include "stylesheet.html" %} </head> <body> <h1>

AnswerSheet | Owner: djdj | Views: 222 | Comments: 0 | Open/ Source 618 B

Answer Keys || Date:07-10-2023 Question Answer Q1. C Q2. B Q3. B Q4. C Q5. A Q6. C Q7

index_socials.html | Owner: cody | Views: 153 | Comments: 0 | Open/ Source 2.57 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Footer 04 Example</title> <me

Q69_Sqrt.php | Owner: djdj | Views: 222 | Comments: 0 | Open/ Source 61 B

function mySqrt($x) { return intval(sqrt($x)); }

LeetCode - Find Customer Referee - MySQL | Owner: abh | Views: 208 | Comments: 0 | Open/ Source 70 B

SELECT name FROM Customer WHERE referee_id != 2 OR referee_id IS NULL;

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

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

ir.html | Owner: djdj | Views: 255 | Comments: 0 | Open/ Source 2.53 KB

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

home.html | Owner: abh | Views: 256 | Comments: 0 | Open/ Source 881 B

b'<!DOCTYPE html>\n<html>\n<head>\n <title>HTMLify your dreams</title>\n {% include "stylesheet.html" %}\n</head>\n<body>\

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

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

index.html | Owner: cody | Views: 126 | Comments: 0 | Open/ Source 1.49 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: 186 | Comments: 0 | Open/ Source 453 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Transactions Table</title> <m

Alarm App | Owner: cody | Views: 131 | Comments: 0 | Open/ Source 1.1 KB

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

index.html | Owner: cody | Views: 148 | Comments: 0 | Open/ Source 480 B

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

LootCode - Letter Combinations of a Phone Number - Python | Owner: abh | Views: 41 | Comments: 0 | Open/ Source 626 B

class Solution: def letterCombinations(self, digits: str) -> List[str]: pad = { "2": "abc",

index.html | Owner: cody | Views: 134 | Comments: 0 | Open/ Source 534 B

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

index.html | Owner: cody | Views: 85 | Comments: 0 | Open/ Source 2.41 KB

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

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">

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

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

| Owner: amar | Views: 247 | Comments: 0 | Open/ Source 0 B

index.html | Owner: cody | Views: 92 | Comments: 0 | Open/ Source 429 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: 83 | Comments: 0 | Open/ Source 5.44 KB

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

LeetCode - Find Followers Count - MySQL | Owner: abh | Views: 230 | Comments: 0 | Open/ Source 103 B

SELECT user_id, count(follower_id) as followers_count FROM Followers GROUP BY user_id ORDER BY user_id;

Q1837_Sum_of_Digits_in_Base_K.py | Owner: djdj | Views: 202 | Comments: 0 | Open/ Source 169 B

class Solution(object): def sumBase(self, n, k): s=0 while n > 0: r = n%k s = s+r

index.html | Owner: cody | Views: 129 | Comments: 0 | Open/ Source 769 B

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

LeetCode - Hand of Straights - Python | Owner: abh | Views: 13 | Comments: 0 | Open/ Source 410 B

class Solution: def isNStraightHand(self, hand: List[int], groupSize: int) -> bool: if len(hand) % groupSize != 0:

index.html | Owner: cody | Views: 141 | Comments: 0 | Open/ Source 1.53 KB

<!-- Based on Fluid Image Pop Up JavaScript Tutorial by Simo Edwin - Dev Ed (2020) see: https://www.youtube.com/watch?v=4SQXOA8Z

30 Days Of JavaScript | Owner: cody | Views: 196 | Comments: 0 | Open/ Source 87.92 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: 68 | Comments: 0 | Open/ Source 1.48 KB

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

| Owner: itintern | Views: 13 | Comments: 0 | Open/ Source 7.27 KB

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

LeetCode - Valid Anagram - Python | Owner: abh | Views: 15 | 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: 136 | Comments: 0 | Open/ Source 766 B

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

leap_year.py | Owner: djdj | Views: 192 | Comments: 0 | Open/ Source 221 B

def is_leap(year): if year%100==0: if year%400==0: return True else: return False

index.html | Owner: cody | Views: 173 | Comments: 0 | Open/ Source 900 B

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

file-show.html | Owner: abh | Views: 178 | Comments: 0 | Open/ Source 3.91 KB

<!DOCTYPE html> <html> <head> <title>{{ file.name }}</title> {% include "stylesheet.html" %} <link rel="stylesheet"