HTMLify your dreams

Filter Options:
LeetCode - Max Consecutive Ones - Python | Owner: abh | Views: 27 | Comments: 0 | Open/ Source 294 B

class Solution: def findMaxConsecutiveOnes(self, nums: List[int]) -> int: m = 0 cc = 0 for n in

Hello-World.php | Owner: djdj | Views: 151 | Comments: 0 | Open/ Source 315 B

<?php echo "Hello World!"; ?> <!-- For embedding/use PHP we have to use <?php ?> all the php code will goes within the <?php

index.html | Owner: cody | Views: 145 | Comments: 0 | Open/ Source 592 B

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

index.html | Owner: cody | Views: 150 | Comments: 0 | Open/ Source 708 B

<!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title>Armstrong Checker in JavaScript</ti

profile-page-template.html | Owner: abh | Views: 251 | 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

Mr. | Owner: ubataecj | Views: 0 | Comments: 0 | Open/ Source 3 B

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

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

do-while-loop.php | Owner: djdj | Views: 79 | Comments: 0 | Open/ Source 104 B

<?php //do while loop $a = 0; do { echo $a; $a++; } while ($a <= 10); ?>

index.html | Owner: cody | Views: 151 | Comments: 0 | Open/ Source 498 B

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

Form.php | Owner: djdj | Views: 70 | 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: cody | Views: 217 | Comments: 0 | Open/ Source 1.23 KB

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

Q231_Power_of_two.py | Owner: djdj | Views: 217 | Comments: 0 | Open/ Source 95 B

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

index.html | Owner: cody | Views: 192 | Comments: 0 | Open/ Source 1.08 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: 97 | Comments: 0 | Open/ Source 512 B

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

LeetCode - Permutations II - Python | Owner: abh | Views: 33 | Comments: 0 | Open/ Source 686 B

class Solution: def permuteUnique(self, nums: List[int]) -> List[List[int]]: combs = [] if len(nums) == 1

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

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

LeetCod3 - Check if Array is Good - Python | Owner: abh | Views: 196 | Comments: 0 | Open/ Source 171 B

class Solution: def isGood(self, nums: List[int]) -> bool: nums.sort() good = list(range(1, len(nums))) +

instagram.html | Owner: cody | Views: 199 | Comments: 0 | Open/ Source 1.09 KB

<!DOCTYPE html> <html> <head> <title>T Y P I N G ProWess</title> <meta charset="UTF-8"> <meta name="viewport" content="wid

home.html | Owner: abh | Views: 279 | 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>\

index.html | Owner: cody | Views: 169 | 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: 150 | Comments: 0 | Open/ Source 570 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: 103 | Comments: 0 | Open/ Source 464 B

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

LeetCode - Matrix Diagonal Sum - Python | Owner: abh | Views: 227 | Comments: 0 | Open/ Source 282 B

class Solution: def diagonalSum(self, mat: List[List[int]]) -> int: i = 0 s = 0 if len(mat)%2:

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

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

README.md | Owner: abh | Views: 670 | Comments: 0 | Open/ Source 422 B

# ABHDEF This is a series of function which I started through my instagram account [@abh.py](https://www.instagram.com/abh.py) a

new.js | Owner: itintern | Views: 95 | Comments: 0 | Open/ Source 2.63 KB

sidenav = document.querySelector(".sidenav"); menuIcon = document.querySelector(".ri-menu-line"); navCloseBtn = docume

home-template.html | Owner: abh | Views: 281 | 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 - Permutations - Python | Owner: abh | Views: 67 | Comments: 0 | Open/ Source 368 B

class Solution: def permute(self, nums: List[int]) -> List[List[int]]: if len(nums) == 1: return [[nums[0]]]

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

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

LeetCode - Maximum Value of a String in an Array - Go | Owner: abh | Views: 26 | Comments: 0 | Open/ Source 541 B

func tpow(x int) int { p := 1 for ;x>1; x-- { p *= 10 } return p } func maximumValue(strs []strin

index.html | Owner: cody | Views: 169 | 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: 157 | Comments: 0 | Open/ Source 598 B

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

What type of pokemon gym leader are you | Owner: cody | Views: 376 | Comments: 0 | Open/ Source 3.12 KB

<html> <head> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-FJVEN7W1

LeetCode- A Number After a Double Reversal - Python | Owner: abh | Views: 231 | Comments: 0 | Open/ Source 128 B

class Solution: def isSameAfterReversals(self, num: int) -> bool: if not num: return True return num % 10

LeetCode - Add Two Integers - Ruby | Owner: abh | Views: 296 | 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: 22 | Comments: 0 | Open/ Source 2.76 KB

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

gcd.py | Owner: abh | Views: 256 | 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

51.txt | Owner: coderai | Views: 149 | Comments: 0 | Open/ Source 1.99 KB

## Key Features: - **Language Generation:** Generates human-like text, including articles, stories, poems, and code. - **Inform

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

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

| Owner: djdj | Views: 7 | Comments: 0 | Open/ Source 1.11 KB

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

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

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

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

amazonclone.html | Owner: cody | Views: 127 | Comments: 0 | Open/ Source 8.0 KB

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

index.html | Owner: djdj | Views: 242 | 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

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

Signinbox2.html | Owner: amar | Views: 97 | Comments: 0 | Open/ Source 7.16 KB

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

47.txt | Owner: coderai | Views: 168 | Comments: 0 | Open/ Source 933 B

**Body:** r/4wrw is a subreddit on Reddit that is dedicated to the discussion of the video game "4 Wheel Rumble". The subreddi

insertElement.html | Owner: shubh | Views: 217 | Comments: 0 | Open/ Source 1.1 KB

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

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

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

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

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

18.txt | Owner: coderai | Views: 154 | Comments: 0 | Open/ Source 1.34 KB

**About:** Coderai is an AI-powered coding assistant that helps developers write better code, faster. **Profile Highlights:**

PRINT HALLOW DIAMOND PATTERN USING WHILE LOOP | Owner: sunny_jain | Views: 144 | Comments: 0 | Open/ Source 985 B

// using while loop to make a hollow diamond pattern #include <stdio.h> int main() { int n = 5, rows = 1, columns;

registration.html | Owner: abh | Views: 216 | Comments: 0 | Open/ Source 389 B

<!-- registration.html --> <form action="/action/registration" method="POST"> <input type="text" name="username" placeholder="us

30 Days Of JavaScript | Owner: cody | Views: 211 | 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: 176 | Comments: 0 | Open/ Source 4.11 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Dropdown Menu 02</title> <link

index_socials.html | Owner: cody | Views: 169 | Comments: 0 | Open/ Source 2.77 KB

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Profile Card</title> <meta name="viewp

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

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

index.html | Owner: cody | Views: 168 | Comments: 0 | Open/ Source 1.65 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: 180 | Comments: 0 | Open/ Source 406 B

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

| Owner: itintern | Views: 7 | Comments: 0 | Open/ Source 7.23 KB

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

Q367_Valid_Perfect_Square.c | Owner: djdj | Views: 210 | Comments: 0 | Open/ Source 175 B

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

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

| Owner: itintern | Views: 29 | Comments: 0 | Open/ Source 7.19 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: 154 | Comments: 0 | Open/ Source 3.93 KB

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

LeetCode - Single Number - Python | Owner: abh | Views: 42 | 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]

t.html | Owner: djdj | Views: 279 | Comments: 0 | Open/ Source 2.29 KB

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

home_page.html | Owner: cody | Views: 188 | Comments: 0 | Open/ Source 1.37 KB

<!DOCTYPE html> <html> <head> <title>My Homepage</title> <link rel="stylesheet" href="home_page.css"> </head> <bod

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

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

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

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

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

index.html | Owner: cody | Views: 101 | Comments: 0 | Open/ Source 494 B

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

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

index.html | Owner: cody | Views: 182 | Comments: 0 | Open/ Source 884 B

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

Horizontal Scroll Snap | Owner: cody | Views: 243 | Comments: 0 | Open/ Source 761 B

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Cards</title> <link rel="st

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

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

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

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

LeetCode - Find N Unique Integers Sum up to Zero - Go | Owner: abh | Views: 37 | Comments: 0 | Open/ Source 220 B

func sumZero(n int) []int { var ans []int if n%2==1 { ans = append(ans, 0) } for i:=1;len(ans)!=n;i

index.html | Owner: cody | Views: 182 | Comments: 0 | Open/ Source 995 B

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

| Owner: djdj | Views: 51 | Comments: 0 | Open/ Source 1.64 KB

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

| Owner: djdj | Views: 40 | Comments: 0 | Open/ Source 3.47 KB

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

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

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

LeetCode - N-ary Tree Postorder Traversal - Go | Owner: abh | Views: 14 | Comments: 0 | Open/ Source 342 B

/** * Definition for a Node. * type Node struct { * Val int * Children []*Node * } */ func postorder(root

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

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

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

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

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

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

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

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

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

index.html | Owner: cody | Views: 159 | Comments: 0 | Open/ Source 567 B

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

Require-Include.php | Owner: djdj | Views: 176 | Comments: 0 | Open/ Source 847 B

<?php echo"Include:<br>"; //include include 'MySQL-Databases-Connection.php'; //include will only produce a warning

University - BCA | Owner: djdj | Views: 67 | Comments: 0 | Open/ Source 3.16 KB

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

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

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

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

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

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

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

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

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

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

clock.html | Owner: djdj | Views: 507 | Comments: 0 | Open/ Source 4.28 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 1.32 KB

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

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

No body loves you | Owner: abh | Views: 408 | Comments: 0 | Open/ Source 282 B

<head> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <title>Nobody loves you</title> <center>

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

hello-world.m | Owner: demo | Views: 262 | Comments: 0 | Open/ Source 119 B

(=<`:9876Z4321UT.-Q+*)M'&%$H"""'~}|Bzyxwvutsrqponmlkjihgfedcba`_^][ ZYXWVUTSRQPONMLKJIHGFEDCBA@?>=<;:9876543210/.-, +*

css4.html | Owner: demo | Views: 252 | Comments: 0 | Open/ Source 934 B

<!DOCTYPE html> <html> <head> <title>CSS Loading Spinner Animation</title> <style> /* Custom CSS for the lo

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

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

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

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

index_socials.html | Owner: cody | Views: 162 | Comments: 0 | Open/ Source 2.0 KB

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

Login.php | Owner: djdj | Views: 63 | Comments: 0 | Open/ Source 4.06 KB

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

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

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

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

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

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

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

Dates.php | Owner: djdj | Views: 185 | 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: cody | Views: 156 | Comments: 0 | Open/ Source 933 B

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

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

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

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

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

nav-bar.html | Owner: abh | Views: 193 | Comments: 0 | Open/ Source 658 B

<div class="links"> <a href="/">Home</a> {% if not session.get("user") %} <a href="/login">Log in</a> <a href="/regist

Q43_Multiply_Strings.py | Owner: djdj | Views: 199 | Comments: 0 | Open/ Source 104 B

def multiply(self, num1, num2): num1 = int(num1) num2 = int(num2) a = num1 * num2 return str(a)

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

Ronaldo.html | Owner: amar | Views: 17 | Comments: 0 | Open/ Source 1022 B

// Detect Instagram click document.getElementById("insta-link").addEventListener("click", function() {

galery-05 | Owner: cody | Views: 175 | Comments: 0 | Open/ Source 1.21 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Swiper demo</title> <meta name="viewp

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

<!-- Awesome 3D ANIMATION Javascript Tutorial! by Simo Edwin - Dev Ed (2020) see: https://www.youtube.com/watch?v=XK7T3mY1V-w --

index_socials.html | Owner: cody | Views: 170 | Comments: 0 | Open/ Source 2.54 KB

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

Q2427_Number_of_Common_Factors.py | Owner: djdj | Views: 208 | Comments: 0 | Open/ Source 176 B

class Solution(object): def commonFactors(self, a, b): c=0 for i in range(1,a+b): if a%i==0 and

tx7w2Ayr.html | Owner: cody | Views: 257 | Comments: 0 | Open/ Source 3.14 KB

<!DOCTYPE html> <html> <head> <title>My Second Webpage</title> <!-- Internal CSS --> <style> /* Her

Q2667_Create_Hello_World_Function.js | Owner: djdj | Views: 145 | Comments: 0 | Open/ Source 110 B

var createHelloWorld = function() { return function(...args) { return "Hello World" } };

LeetCode - Remove All Adjacent Duplicates In String - Go | Owner: abh | Views: 14 | Comments: 0 | Open/ Source 449 B

func removeDuplicates(s string) string { var stack []rune for _, c := range s { if len(stack) > 0 && stack[le

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

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

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