HTMLify your dreams

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

index.html | Owner: cody | Views: 150 | Comments: 0 | Open/ Source 2.68 KB

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

LeetCode - Recyclable and Low Fat Products - MySQL | Owner: abh | Views: 167 | Comments: 0 | Open/ Source 74 B

SELECT product_id FROM Products WHERE low_fats = 'Y' AND recyclable = 'Y';

upload certificate.html | Owner: sachinthakur | Views: 153 | 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">

index.html | Owner: cody | Views: 51 | Comments: 0 | Open/ Source 1.83 KB

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

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

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

Amar | Owner: amar | Views: 20 | Comments: 0 | Open/ Source 12.08 KB

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

index.html | Owner: cody | Views: 76 | Comments: 0 | Open/ Source 403 B

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

intro.html | Owner: himanshuyadav | Views: 123 | Comments: 0 | Open/ Source 1.24 KB

<DOC TYPE html> <html> <head> <title>MY FIRST WEBPAGE</title> </head> <body bgcolour="yellow"> <H1>MY PERSONAL

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

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

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

index.html | Owner: cody | Views: 50 | Comments: 0 | Open/ Source 743 B

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

semantic interpretation.ppt | Owner: shubh | Views: 74 | Comments: 0 | Open/ Source 647.48 KB

post.html | Owner: abh | Views: 187 | Comments: 0 | Open/ Source 4.83 KB

<!-- post.html --> {% extends "base.html" %} {% block title %}{{ post.title }}{% endblock %} {% block meta %}{{ post.meta }}{

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

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

are_anagrams.py | Owner: abh | Views: 247 | Comments: 0 | Open/ Source 345 B

def are_anagrams(s1, s2): if len(s1) != len(s2): return False for c in s1: if s1.count(c) != s2.count(c)

ir.html | Owner: djdj | Views: 209 | 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

index.html | Owner: cody | Views: 118 | Comments: 0 | Open/ Source 699 B

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

Operator.php | Owner: djdj | Views: 112 | 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

index.html | Owner: djdj | Views: 166 | Comments: 0 | Open/ Source 9.0 KB

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

index.html | Owner: cody | Views: 94 | Comments: 0 | Open/ Source 582 B

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

hex.html | Owner: cody | Views: 140 | Comments: 0 | Open/ Source 999 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: 107 | Comments: 0 | Open/ Source 1.12 KB

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

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

Spotify Clone | Owner: cody | Views: 0 | Comments: 0 | Open/ Source 5.41 KB

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

index.html | Owner: cody | Views: 138 | Comments: 0 | Open/ Source 3.57 KB

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

index.html | Owner: cody | Views: 106 | Comments: 0 | Open/ Source 3.2 KB

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

models.py | Owner: abh | Views: 119 | 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 - Separate the Digits in an Array - Python | Owner: abh | Views: 155 | Comments: 0 | Open/ Source 483 B

class Solution: def separateDigits(self, nums: List[int]) -> List[int]: saprated = [] for num in nums:

index.html | Owner: demo | Views: 188 | 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: 103 | Comments: 0 | Open/ Source 2.56 KB

<!-- Based on Full Screen Responsive Image Slider by Brad Traversy (2019) see: https://www.youtube.com/watch?v=wWWNrANNO1k -->

Dice Game | Owner: cody | Views: 111 | Comments: 0 | Open/ Source 960 B

<html> <head> <link rel="stylesheet" href="style.css"> <title>Dice Game</title> </head> <body>

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

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

index.html | Owner: cody | Views: 109 | Comments: 0 | Open/ Source 12.22 KB

<!-- Based on Build a Responsive Website by Brad Traversy (2020) see: https://www.youtube.com/watch?v=p0bGHP-PXD4 --> <!DOCTYPE

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

Variable.php | Owner: djdj | Views: 114 | Comments: 0 | Open/ Source 301 B

<?php $name = "Dj"; echo "This is $name"; /* 1. start with a $ sign. 2. cannot satrt with a number. 3. must start with

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

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

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

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

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

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

LeetCode - Insert Delete GetRandom O(1) - Duplicates allowed - Python | Owner: abh | Views: 133 | Comments: 0 | Open/ Source 686 B

from random import choice class RandomizedCollection: def __init__(self): self.values = [] def insert(se

encrypt_rot13.py | Owner: abh | Views: 154 | 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: 135 | Comments: 0 | Open/ Source 690 B

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

Q476_Number_Complement.py | Owner: djdj | Views: 173 | Comments: 0 | Open/ Source 381 B

def findComplement(self, num): s = [] while num > 0: # 5 r = str(num % 2)# s.append(r) num = num // 2 s

popup.html | Owner: cody | Views: 144 | Comments: 0 | Open/ Source 382 B

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

2.txt | Owner: coderai | Views: 122 | Comments: 13 | Open/ Source 906 B

**Coderai** is a company that provides AI-powered code generation tools. It was founded in 2021 by a team of engineers and rese

index.html | Owner: cody | Views: 51 | Comments: 0 | Open/ Source 1.28 KB

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

If-else.php | Owner: djdj | Views: 67 | 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: 108 | 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: 114 | Comments: 0 | Open/ Source 707 B

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

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

tribute.html | Owner: tanishkak | Views: 289 | 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: 143 | Comments: 0 | Open/ Source 4.95 KB

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

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

Participate-candicates | Owner: djdj | Views: 270 | Comments: 0 | Open/ Source 1.26 KB

From semester I 1. Ansh Kulshrestha 2. Krishna Shen 3. Anuj Singh 4. Ankaj 5. Kuldeep Dubey 6. Abhay Singh 7. Ompal 8.

Post-Method.php | Owner: djdj | Views: 61 | Comments: 0 | Open/ Source 413 B

<?php if($_SERVER['REQUEST_METHOD'] == 'POST'){//if (isset($_POST)){ $name = $_POST['name']; $email = $_POST

media-edit.html | Owner: abh | Views: 135 | Comments: 0 | Open/ Source 1.1 KB

<!-- media-edit.html --> <form action="/action/edit-media" method="POST"> <input type="hidden" name="oldname" value="{{ path[ses

Multi-Dieminsion-Array.php | Owner: djdj | Views: 140 | 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: 49 | Comments: 0 | Open/ Source 502 B

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

diq.html | Owner: djdj | Views: 194 | Comments: 0 | Open/ Source 2.76 KB

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

index.html | Owner: cody | Views: 50 | Comments: 0 | Open/ Source 1.81 KB

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

nav.php | Owner: djdj | Views: 51 | Comments: 0 | Open/ Source 3.12 KB

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

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

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

split.html | Owner: cody | Views: 111 | 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: 77 | 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

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

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

37.txt | Owner: coderai | Views: 94 | Comments: 0 | Open/ Source 1.53 KB

Usernames are unique identifiers used to represent individuals on social media platforms. They are typically used to: * Identi

index.html | Owner: cody | Views: 122 | Comments: 0 | Open/ Source 520 B

<!-- Based on Fun ways to animate CSS gradients by Kevin Powell (2019) see: https://www.youtube.com/watch?v=f3mwKLXpOLk --> <!D

home.html | Owner: cody | Views: 127 | Comments: 0 | Open/ Source 1.35 KB

<!DOCTYPE html> <html> <head> <link rel="stylesheet" type="text/css" href="homecss.css"> </head> <body> <header> <div cl

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

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

typing.html | Owner: cody | Views: 117 | Comments: 0 | Open/ Source 925 B

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

LeetCode - A Number After a Double Reversal - Rust | Owner: abh | Views: 202 | Comments: 0 | Open/ Source 203 B

impl Solution { pub fn is_same_after_reversals(num: i32) -> bool { if (num != 0){ return num % 10 !=

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

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

index.html | Owner: cody | Views: 58 | Comments: 0 | Open/ Source 1.05 KB

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

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

Q182_Duplicate_Emails.sql | Owner: djdj | Views: 182 | Comments: 0 | Open/ Source 65 B

select email from person group by email having count(email) > 1;

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

| 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: 73 | Comments: 0 | Open/ Source 870 B

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

BrainF#ck Interpreter | Owner: abh | Views: 151 | Comments: 0 | Open/ Source 3.29 KB

#!/usr/bin/python from sys import argv from os import system def help(): print( "Usages: ./bf <op

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

home.html | Owner: abh | Views: 134 | Comments: 0 | Open/ Source 629 B

<h1>HTMLify your dreams</h1> <center><p>Make your HTML files live</p> <form class="search-form" action="/search" method="GET" st

T8QoUm3.png | Owner: abh | Views: 13 | Comments: 0 | Open/ Source 855.67 KB

is_even.py | Owner: abh | Views: 104 | Comments: 0 | Open/ Source 959 B

TESTCASES = [ { "positional": (2,), "keyword": {}, "return": True, "msg": "", }, {

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

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

27.txt | Owner: coderai | Views: 70 | Comments: 0 | Open/ Source 1.52 KB

Coder AI is a comprehensive AI-powered platform designed to simplify and enhance software development. Our platform offers a wi

index.html | Owner: cody | Views: 123 | 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: 126 | Comments: 0 | Open/ Source 1.74 KB

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

index.html | Owner: cody | Views: 116 | Comments: 0 | Open/ Source 1.9 KB

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

Operator.php | Owner: djdj | Views: 64 | 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

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

Primenumber.html | Owner: amar | Views: 194 | 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

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

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

rahul verma c language program by vivek jain sir ji.c | Owner: rahul_verma_coder | Views: 84 | 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

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

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

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

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

58.txt | Owner: coderai | Views: 101 | Comments: 0 | Open/ Source 2.08 KB

**1. Knowledge and Expertise Exchange:** * Establish regular webinars or workshops to share research findings, industry insigh

stylesheet.html | Owner: abh | Views: 136 | Comments: 0 | Open/ Source 11.0 KB

<meta name="viewport" content="width=device-width, initial-scale=1"> <style> /* registration page style*/ .registration-form

| Owner: itintern | Views: 5 | 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">

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

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

<!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title>Text to Speech Converter</title> <

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

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

index.html | Owner: cody | Views: 70 | Comments: 0 | Open/ Source 1.34 KB

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

preview feature | Owner: abh | Views: 626 | Comments: 1 | Open/ Source 5.59 KB

<!DOCTYPE html> <html> <head> <title>Editing - updates/preview-feature.html</title> <meta name="viewport" content="wi

Hello.html | Owner: shivam | Views: 160 | Comments: 0 | Open/ Source 16 B

<h1> Hello </h1>

index.php | Owner: djdj | Views: 41 | Comments: 0 | Open/ Source 1.14 KB

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

index.html | Owner: cody | Views: 114 | Comments: 0 | Open/ Source 723 B

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

index.html | Owner: cody | Views: 108 | Comments: 0 | Open/ Source 1011 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: 108 | Comments: 0 | Open/ Source 1.52 KB

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

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

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

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

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

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

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

average.py | Owner: abh | Views: 172 | Comments: 0 | Open/ Source 315 B

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

index.html | Owner: cody | Views: 115 | Comments: 0 | Open/ Source 1.08 KB

<!-- Awesome Vanilla Javascript Image Slider! by Simo Edwin - Dev Ed (2021) see: https://www.youtube.com/watch?v=ee8y1IV6pOI -->

Comingsoon. Html | Owner: amar | Views: 185 | Comments: 0 | Open/ Source 586 B

Session_Get.php | Owner: djdj | Views: 78 | Comments: 0 | Open/ Source 222 B

<?php session_start(); if(isset($_SESSION['username'])){ echo "Welcome ". $_SESSION['username']. "\n"; } els

index.html | Owner: cody | Views: 64 | Comments: 0 | Open/ Source 2.32 KB

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

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

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

extras.html | Owner: abh | Views: 134 | Comments: 0 | Open/ Source 98 B

<!-- Extras file, containts of this file will be available in all templates just above </head> -->

25.txt | Owner: coderai | Views: 85 | Comments: 0 | Open/ Source 1.39 KB

**Best Ways to Learn About Machine Learning** There are several effective ways to learn about machine learning: **Online Cour

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

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

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

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

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

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

index.html | Owner: cody | Views: 122 | Comments: 0 | Open/ Source 10.8 KB

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

LeetCode - Number of Laser Beams in a Bank - C# | Owner: abh | Views: 171 | Comments: 1 | Open/ Source 525 B

public class Solution { public int NumberOfBeams(string[] bank) { int pre_lesers = 0; int beams = 0;

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