HTMLify your dreams

Filter Options:
npr.py | Owner: abh | Views: 316 | Comments: 0 | Open/ Source 153 B

def npr(n, r): return factorial(n) // factorial(n-r) def npr(n, r): result = 1 for i in range(r): result *=

LeetCode - Single Number - Python | Owner: abh | Views: 4 | Comments: 0 | Open/ Source 128 B

class Solution: def singleNumber(self, nums: List[int]) -> int: return sorted(nums, key=lambda e:nums.count(e))[0]

AnswerSheet | Owner: djdj | Views: 216 | 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

LeetCode - Merge Two Sorted Lists - Python | Owner: abh | Views: 10 | Comments: 0 | Open/ Source 1.01 KB

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

index.html | Owner: cody | Views: 74 | Comments: 0 | Open/ Source 595 B

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

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

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

LeetCode - Sum of Digits of String After Convert - Python | Owner: abh | Views: 22 | Comments: 0 | Open/ Source 283 B

class Solution: def getLucky(self, s: str, k: int) -> int: n = "" for c in s: n += str(ord(c

index.html | Owner: cody | Views: 135 | Comments: 0 | Open/ Source 1.66 KB

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

Foreach-Loop.php | Owner: djdj | Views: 70 | 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: 83 | Comments: 0 | Open/ Source 798 B

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

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

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

index.html | Owner: cody | Views: 178 | Comments: 0 | Open/ Source 10.05 KB

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

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

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

dakshbadal1379 | Owner: dakshbadal1379 | Views: 53 | Comments: 0 | Open/ Source 2.87 KB

<!DOCTYPE html> <html> <head> <title>Register</title> <link rel="icon" type="image/x-icon" href="download.png"> <link re

Python Task 4 | Owner: itintern | Views: 5 | Comments: 0 | Open/ Source 7.07 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: 126 | Comments: 0 | Open/ Source 489 B

<!DOCTYPE html> <html lang="en" onclick="jump()"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" conte

is_even.py | Owner: abh | Views: 246 | 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

Snake.html | Owner: amar | Views: 222 | Comments: 0 | Open/ Source 5.33 KB

<canvas id="gc" width="600" height="600"></canvas> <script> window.onload=function() { canv=document.getElementById("gc");

basic-webpage-structure.html | Owner: demo | Views: 246 | Comments: 0 | Open/ Source 178 B

<!DOCTYPE html> <html> <head> <title>My Web Page</title> </head> <body> <h1>Welcome to My Web Page</h1> <p>Th

digital_sum.py | Owner: abh | Views: 200 | Comments: 0 | Open/ Source 255 B

def digital_sum(n: int): s = 0 while n: s += n % 10 n //= 10 return s def digital_sum(n: int):

COA Notes | Owner: djdj | Views: 801 | Comments: 0 | Open/ Source 18.4 MB

LeetCode - Big Countries | Owner: abh | Views: 219 | Comments: 0 | Open/ Source 89 B

SELECT name, population, area FROM world WHERE area >= 3000000 or population >= 25000000;

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

index.html | Owner: cody | Views: 71 | Comments: 0 | Open/ Source 429 B

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

thoughts.html | Owner: priyanka | Views: 345 | Comments: 0 | Open/ Source 1.59 KB

<HTML> <HEAD> <TITLE>Thoughts</TITLE><meta name="viewport" content="width=device-width,initial=scale=1"> </head> <center><h1

index.html | Owner: cody | Views: 59 | Comments: 0 | Open/ Source 769 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: 132 | Comments: 0 | Open/ Source 3.25 KB

<!-- Based on Mobile-First Responsive Build (with CSS Grid) by Shaun Pelling - The Net Ninja (2020) see: https://www.youtube.com

index.html | Owner: cody | Views: 135 | Comments: 0 | Open/ Source 2.5 KB

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

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

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

Asking for Going Out | Owner: abh | Views: 234 | Comments: 0 | Open/ Source 1004 B

<div id="main"> <h1>Momos khane chaloge ?</h1> <button id="yes" onclick="yes()"> Yes </button> <button id="no"

index.html | Owner: cody | Views: 59 | Comments: 0 | Open/ Source 1.96 KB

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

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

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

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

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

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

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

LeetCode - Sum of Unique Elements - Go | Owner: abh | Views: 5 | Comments: 0 | Open/ Source 461 B

func sumOfUnique(nums []int) int { var sum int = 0; for i := 0; i < len(nums); i++ { var u bool = true

index.html | Owner: cody | Views: 135 | Comments: 0 | Open/ Source 866 B

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

PY0B T3 | Owner: itintern | Views: 5 | Comments: 0 | Open/ Source 5.63 KB

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

__init__.py | Owner: abh | Views: 129 | Comments: 0 | Open/ Source 21 B

from .TESTS import *

windows.html | Owner: cody | Views: 22 | Comments: 0 | Open/ Source 2.68 KB

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

index.html | Owner: cody | Views: 145 | Comments: 0 | Open/ Source 1.59 KB

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

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

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

sqrt.py | Owner: abh | Views: 198 | 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 +

js1.html | Owner: demo | Views: 229 | Comments: 0 | Open/ Source 1.74 KB

<!DOCTYPE html> <html> <head> <title>JavaScript Interactive Demo</title> <style> /* Custom CSS for the butt

41.txt | Owner: coderai | Views: 115 | Comments: 0 | Open/ Source 1.95 KB

**Title:** SEO and Content Marketing Professional **Contact:** @coderai **Summary:** Highly accomplished SEO and Content Mar

Mc | Owner: djdj | Views: 453 | 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

index.html | Owner: cody | Views: 133 | Comments: 0 | Open/ Source 735 B

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

index.html | Owner: cody | Views: 130 | 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: 60 | Comments: 0 | Open/ Source 1.27 KB

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

T3 | Owner: itintern | Views: 9 | Comments: 0 | Open/ Source 6.36 KB

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

index.html | Owner: khushi | Views: 122 | Comments: 0 | Open/ Source 1.44 KB

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

index.html | Owner: cody | Views: 144 | Comments: 0 | Open/ Source 542 B

<!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title>Flappy Bird</title> <link rel="sty

Akhilkap124 | Owner: djdj | Views: 26 | Comments: 0 | Open/ Source 23.46 KB

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

is_perfect_square.py | Owner: abh | Views: 154 | Comments: 0 | Open/ Source 79 B

def is_perfect_square(n): sqrt = int(n ** 0.5) return sqrt * sqrt == n

index.html | Owner: cody | Views: 123 | Comments: 0 | Open/ Source 1.1 KB

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

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

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

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

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

First | Owner: shivam | Views: 2 | Comments: 0 | Open/ Source 16 B

<h1> Hello </h1>

T1 | Owner: itintern | Views: 18 | Comments: 0 | Open/ Source 6.35 KB

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

Name.html | Owner: amar | Views: 57 | 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

T2 | Owner: itintern | Views: 8 | Comments: 0 | Open/ Source 7.07 KB

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

link.html | Owner: dakshbadal1379 | Views: 225 | Comments: 0 | Open/ Source 718 B

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

Q1_Two_Sum.py | Owner: djdj | Views: 210 | Comments: 0 | Open/ Source 247 B

class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]: for i in range(len(nums)):

models.py | Owner: abh | Views: 143 | Comments: 0 | Open/ Source 5.54 KB

from flask import request from flask_sqlalchemy import * from datetime import datetime from pygments import highlight, lexers, f

LeetCode - Check if All Characters Have Equal Number of Occurrences - Python | Owner: abh | Views: 15 | Comments: 0 | Open/ Source 206 B

class Solution: def areOccurrencesEqual(self, s: str) -> bool: fa = s.count(s[0]) for c in set(s):

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

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

Insert-Data-In-Table.php | Owner: djdj | Views: 141 | Comments: 0 | Open/ Source 1.53 KB

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

bulb.html | Owner: shubh | Views: 164 | Comments: 0 | Open/ Source 859 B

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

whr.py | Owner: abh | Views: 207 | Comments: 0 | Open/ Source 56 B

def whr(waist: "cm", hip: "cm"): return waist / hip

index.html | Owner: khushi | Views: 373 | Comments: 0 | Open/ Source 1.42 KB

<div id="main"> <h1>DATE pr chle ?</h1> <button id="yes" onclick="yes()"> Yes </button> <button id="no" onmouseov

index.html | Owner: cody | Views: 152 | Comments: 0 | Open/ Source 656 B

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

index.html | Owner: cody | Views: 62 | Comments: 0 | Open/ Source 503 B

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

index.html | Owner: cody | Views: 147 | Comments: 0 | Open/ Source 1.64 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: 141 | Comments: 0 | Open/ Source 372 B

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

LeetCode | Reverse Vowels of a String | Python | Owner: abh | Views: 72 | Comments: 0 | Open/ Source 371 B

class Solution: def reverseVowels(self, s: str) -> str: rvs = "" for c in s[::-1]: if c in "

LeetCode - Find Champion I - Python | Owner: abh | Views: 209 | Comments: 1 | Open/ Source 340 B

class Solution: def findChampion(self, grid: List[List[int]]) -> int: n = len(grid) strongerthancount = [

utils.py | Owner: abh | Views: 141 | Comments: 0 | Open/ Source 5.88 KB

from random import randint from requests import get from models import users, files, db from os import remove, system, path from

js2.html | Owner: demo | Views: 223 | Comments: 0 | Open/ Source 690 B

<!DOCTYPE html> <html> <head> <title>Vibration Button</title> </head> <body> <button id="vibrateButton"><h1>Vibrat

index.html | Owner: cody | Views: 133 | Comments: 0 | Open/ Source 363 B

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Bubble Shooter Game</title> <!-- Linking CSS & JS --> <script type='

auto text effect | Owner: cody | Views: 137 | Comments: 0 | Open/ Source 578 B

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

LeetCode - Add Two Integers - JavaScript | Owner: abh | Views: 118 | Comments: 0 | Open/ Source 142 B

/** * @param {number} num1 * @param {number} num2 * @return {number} */ var sum = function(num1, num2) { return nu

| Owner: itintern | Views: 49 | Comments: 0 | Open/ Source 10.57 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: 90 | Comments: 0 | Open/ Source 2.23 KB

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

LeetCode - Kth Distinct String in an Array - Python | Owner: abh | Views: 20 | Comments: 0 | Open/ Source 335 B

class Solution: def kthDistinct(self, arr: List[str], k: int) -> str: distinct = [] for c in arr:

Q1667_Fix_Names_in_a_Table.sql | Owner: djdj | Views: 214 | Comments: 0 | Open/ Source 107 B

SELECT user_id, CONCAT(UPPER(LEFT(name,1)),LOWER(SUBSTRING(name,2))) AS name FROM Users ORDER BY user_id;

index.html | Owner: cody | Views: 161 | Comments: 0 | Open/ Source 4.44 KB

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

index.html | Owner: cody | Views: 145 | Comments: 0 | Open/ Source 1.33 KB

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

excelmax.html | Owner: cody | Views: 26 | Comments: 0 | Open/ Source 1.34 KB

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

home-template.html | Owner: abh | Views: 217 | Comments: 0 | Open/ Source 3.79 KB

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

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

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

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

<!DOCTYPE html> <html> <head> <link rel="shortcut icon" href="assets/hangman-game.png" type="image/x-icon"> <link rel="s

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

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

cookies.php | Owner: djdj | Views: 77 | Comments: 0 | Open/ Source 102 B

<?php //Cookies setcookie('category','name',time() + 86400,'/'); echo 'cookies is set'; ?>

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

Quiz App | Owner: cody | Views: 139 | Comments: 0 | Open/ Source 1.26 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: 75 | Comments: 0 | Open/ Source 416 B

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

Q596_Classes_More_Than_5_Studeents.sql | Owner: djdj | Views: 191 | Comments: 0 | Open/ Source 66 B

select class from courses group by class having count(class) >= 5

LeetCode - Add Two Integers - Ruby | Owner: abh | Views: 244 | Comments: 1 | Open/ Source 119 B

# @param {Integer} num1 # @param {Integer} num2 # @return {Integer} def sum(num1, num2) return num1 + num2 end

index.html | Owner: cody | Views: 65 | Comments: 0 | Open/ Source 531 B

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

index.html | Owner: cody | Views: 134 | Comments: 0 | Open/ Source 1.22 KB

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

encrypt_rot13.py | Owner: abh | Views: 182 | Comments: 0 | Open/ Source 266 B

def encrypt_rot13(text): cipher = "" for char in text: if char.isalpha(): offset = 65 if char.isuppe

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

virtual piano | Owner: cody | Views: 154 | Comments: 0 | Open/ Source 967 B

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

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

index.html | Owner: cody | Views: 70 | Comments: 0 | Open/ Source 388 B

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

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

index.html | Owner: cody | Views: 129 | 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: 125 | Comments: 0 | Open/ Source 2.77 KB

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

index.html | Owner: cody | Views: 134 | Comments: 0 | Open/ Source 7.67 KB

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

index.html | Owner: cody | Views: 68 | Comments: 0 | Open/ Source 1.22 KB

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

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

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

index.html | Owner: cody | Views: 102 | Comments: 0 | Open/ Source 13.01 KB

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

| Owner: itintern | Views: 15 | Comments: 0 | Open/ Source 3.1 KB

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

about.html | Owner: demo | Views: 269 | Comments: 0 | Open/ Source 1.73 KB

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

index.html | Owner: cody | Views: 172 | 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: 151 | Comments: 0 | Open/ Source 752 B

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Block Runner game</title> <script src="https://cdnj

factorial.py | Owner: abh | Views: 186 | Comments: 0 | Open/ Source 232 B

#Calculate the factorial of given number def factorial(n: int) -> int: if n == 0: return 1 return factorial(n-1

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

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

index.html | Owner: cody | Views: 148 | Comments: 0 | Open/ Source 1.86 KB

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

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

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

Switch-Case.php | Owner: djdj | Views: 199 | Comments: 0 | Open/ Source 331 B

<?php $age = 30; switch($age){ case 18: echo "You are eligible for vote\n"; break;

48.txt | Owner: coderai | Views: 93 | Comments: 0 | Open/ Source 947 B

**Description:** CoderAI is a subreddit dedicated to artificial intelligence as it relates to coding. It is a place for people

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

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

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

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

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

Crop Image | Owner: cody | Views: 133 | Comments: 0 | Open/ Source 935 B

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

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

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

Multi-Dieminsion-Array.php | Owner: djdj | Views: 136 | 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: 62 | Comments: 0 | Open/ Source 1.29 KB

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