HTMLify your dreams

Filter Options:
index_socials.html | Owner: cody | Views: 155 | Comments: 0 | Open/ Source 1.74 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Tabs Integrations</title> <me

Statistics Assignment | Owner: djdj | Views: 964 | Comments: 0 | Open/ Source 6.11 MB

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

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

flask flask_sqlalchemy flask_migrate requests pygments

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

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

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

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

| Owner: djdj | Views: 133 | Comments: 1 | Open/ Source 14.72 KB

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

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

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

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

index.html | Owner: cody | Views: 189 | Comments: 0 | Open/ Source 850 B

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

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

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

pri2.html | Owner: priyanka | Views: 256 | Comments: 0 | Open/ Source 807 B

<HTML> <HEAD> <TITLE>style sheets</TITLE> <style type="text/css"> table,td,th{Border-style:solid;Border-width:4;Border-color

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

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

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

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

Mitigate port scanning.py | Owner: abh | Views: 219 | Comments: 1 | Open/ Source 1.1 KB

import subprocess import re import collections import time # Configurações log_file = '/var/log/syslog' threshold = 4 b

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 ($

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

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

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

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

Heart in Box | Owner: abh | Views: 106 | Comments: 0 | Open/ Source 54.12 KB

frames = [ """

t.html | Owner: djdj | Views: 5 | Comments: 0 | Open/ Source 1.83 KB

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

index.html | Owner: cody | Views: 181 | Comments: 0 | Open/ Source 6.92 KB

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

LeetCode - String Matching in an Array - Python | Owner: abh | Views: 23 | Comments: 0 | Open/ Source 341 B

class Solution: def stringMatching(self, words: List[str]) -> List[str]: ans = [] for word in words:

Amar File | Owner: djdj | Views: 4 | Comments: 0 | Open/ Source 9.16 KB

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

is_divisible_by.py | Owner: abh | Views: 571 | Comments: 0 | Open/ Source 115 B

def is_divisible_by(num, div): return num % div != 0 def is_divisible_by(num, div): return num / div == 0

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

HEXADECIMAL TO DECIMAL BY SWITCH CASE | Owner: sunny_jain | Views: 136 | Comments: 0 | Open/ Source 909 B

//hexadecimal to decimal by using switch case #include<math.h> #include<stdio.h> #include<string.h> int main() { char

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

len.py | Owner: abh | Views: 221 | Comments: 0 | Open/ Source 174 B

def len(obj) -> int: c = 0 while obj: c += 1 obj = obj[1:] return c def len(obj) -> int: c = 0

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

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

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

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

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:

| Owner: itintern | Views: 41 | Comments: 0 | Open/ Source 12.0 KB

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

| Owner: itintern | Views: 11 | Comments: 0 | Open/ Source 7.63 KB

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

LeetCode - Max Sum of a Pair With Equal Sum of Digits - Python | Owner: abh | Views: 6 | Comments: 0 | Open/ Source 704 B

class Solution: def digit_sum(self, num) -> int: s = 0 for d in str(num): s += int(d)

LeetCode - Reverse Integer - Go | Owner: abh | Views: 28 | Comments: 1 | Open/ Source 750 B

func int_to_str(n int) string { s := "" if n < 0 { s += "-" n *= -1 } for ;n!=0; {

LeetCode - Count the Number of Consistent Strings - Python | Owner: abh | Views: 28 | Comments: 0 | Open/ Source 164 B

class Solution: def countConsistentStrings(self, allowed: str, words: List[str]) -> int: return len(list(filter(la

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

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

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

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

Q175_Combine_Two_tables.sql | Owner: djdj | Views: 213 | Comments: 0 | Open/ Source 109 B

select firstName, lastName, city, state from Person LEFT join Address on person.personId = address.personId;

index.html | Owner: cody | Views: 137 | Comments: 0 | Open/ Source 942 B

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

index.html | Owner: khushi | Views: 110 | Comments: 0 | Open/ Source 1.14 KB

<!DOCTYPE html> <html> <head> <title>OCTANET || TASK2</title> <link href="todo.css" rel="stylesheet"> </head>

LeetCode - Reverse Bits - Go | Owner: abh | Views: 5 | Comments: 0 | Open/ Source 521 B

func uint32_to_bin_s(n uint32) string { var b string for ;n!=0; { if n%2==1 { n-- b

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

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

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

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

calculate-sum-of-two-numbers.java | Owner: demo | Views: 222 | Comments: 0 | Open/ Source 207 B

public class SumCalculator { public static void main(String[] args) { int num1 = 5; int num2 = 10;

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

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

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

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

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

<!-- Based on Hulu Webpage Clone | HTML & CSS by Brad Traversy (2021) see: https://www.youtube.com/watch?v=9OVLaEjY-Rc --> <!DO

file-upload.html | Owner: abh | Views: 176 | Comments: 0 | Open/ Source 258 B

<!-- file-uplaod.html --> <form action="/action/upload" method="POST" enctype="multipart/form-data"> <input type="file" name="fi

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

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

windows.html | Owner: cody | Views: 41 | 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: 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

user-files.html | Owner: abh | Views: 170 | Comments: 0 | Open/ Source 144 B

<!-- user-files.html --> {% for file in files %} {{ loop.index }}<a href=" {{ file.path }}">{{ file.name }}</a> {{ file.size }}<

contact.html | Owner: demo | Views: 307 | Comments: 0 | Open/ Source 1.62 KB

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

Q2427_Number_of_Common_Factors.rs | Owner: djdj | Views: 226 | Comments: 0 | Open/ Source 220 B

impl Solution { pub fn common_factors(a: i32, b: i32) -> i32 { let mut c=0; for i in 1..a+b{ if(

Sum of prime numbers in given range | Owner: cody | Views: 127 | Comments: 0 | Open/ Source 274 B

def is_prime(n): if n < 2: return False for i in range(2, n//2+1): if not n%i: return F

LeetCode - Sorting the Sentence - Python | Owner: abh | Views: 32 | Comments: 0 | Open/ Source 146 B

class Solution: def sortSentence(self, s: str) -> str: return " ".join([w[:-1] for w in sorted(s.split(), key=lamb

LeetCode - Convert an Array Into a 2D Array With Conditions - Python | Owner: abh | Views: 199 | Comments: 0 | Open/ Source 380 B

class Solution: def findMatrix(self, nums: List[int]) -> List[List[int]]: mat = [] for n in nums:

Create Button in Js | Owner: djdj | Views: 336 | Comments: 0 | Open/ Source 588 B

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

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

Mc | Owner: djdj | Views: 471 | 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: shubh | Views: 200 | Comments: 0 | Open/ Source 686 B

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

welcome.php | Owner: djdj | Views: 72 | Comments: 0 | Open/ Source 1.25 KB

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

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

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

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

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

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

npr.py | Owner: abh | Views: 326 | 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 *=

13.txt | Owner: coderai | Views: 128 | Comments: 0 | Open/ Source 1.38 KB

* **Make it unique.** Your username should be something that is not already taken by another user. If it is, you will be prompt

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

Remove All Target from array with O(n) | Owner: abh | Views: 194 | Comments: 0 | Open/ Source 286 B

def remove_target(target, array): array = array.copy() ofset = 0 for i in range(len(array)): if array[i]

check-odd-or-even.cpp | Owner: demo | Views: 240 | Comments: 0 | Open/ Source 224 B

#include <iostream> using namespace std; int main() { int n; cout << "Enter an integer: "; cin >> n; if ( n

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

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>

LeetCode - Add Two Integers - Rust | Owner: abh | Views: 227 | Comments: 0 | Open/ Source 101 B

impl Solution { pub fn sum(num1: i32, num2: i32) -> i32 { return num1 + num2; } }

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

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

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

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

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

23.txt | Owner: coderai | Views: 113 | Comments: 0 | Open/ Source 1.17 KB

[User] I need help writing marketing copy for a new AI-powered chatbot. [Assistant] I can certainly assist you with writing ma

nav.php | Owner: djdj | Views: 160 | 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

LeetCode - Create Target Array in the Given Order - Python | Owner: abh | Views: 210 | Comments: 0 | Open/ Source 223 B

class Solution: def createTargetArray(self, nums: List[int], index: List[int]) -> List[int]: target = []

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

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

Demo Showcase | Owner: demo | Views: 488 | Comments: 0 | Open/ Source 7.52 KB

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

| Owner: djdj | Views: 101 | Comments: 1 | Open/ Source 28 B

<?php echo "hello abh"; ?>

char_frequency.py | Owner: abh | Views: 168 | Comments: 0 | Open/ Source 113 B

def char_frequency(string): freq = {} for c in string: freq[c] = freq.get(c,0)+1 return freq

Q1667_Fix_Names_in_a_Table.sql | Owner: djdj | Views: 221 | 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;

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

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

TRX Manager | Owner: abh | Views: 156 | Comments: 0 | Open/ Source 5.1 KB

from datetime import date from os import system, listdir from sys import argv class Transaction: def __init__(self,

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

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

INTERNETLIVE.HTML | Owner: dakshbadal1379 | Views: 237 | Comments: 0 | Open/ Source 951 B

<html> <head> <title> Yahoo Internet</title> </head> <body bgcolor="aqua"> <marquee bgcolor="yellow" behavior="alternate"

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

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

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

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

Certificate | Owner: itintern | Views: 435 | Comments: 0 | Open/ Source 4.8 KB

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

index.html | Owner: cody | Views: 84 | Comments: 0 | Open/ Source 377 B

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

index.html | Owner: cody | Views: 137 | 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: 81 | Comments: 0 | Open/ Source 8.37 KB

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

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

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

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

LeetCode - Separate the Digits in an Array - Python | Owner: abh | Views: 191 | Comments: 0 | Open/ Source 483 B

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

Python - String Methods | Owner: djdj | Views: 29 | Comments: 0 | Open/ Source 1018 B

name = "Dj UPraiTY" sub = "Dj" print(len(name)) #length of the string print(name[0:5]) #display string starting position to g

index.html | Owner: cody | Views: 147 | Comments: 0 | Open/ Source 2.26 KB

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

TESTS.py | Owner: abh | Views: 153 | Comments: 0 | Open/ Source 1.61 KB

class Test: def __init__(self, function): self.passed = 0 self.failed = 0 self.function = function

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

29.txt | Owner: coderai | Views: 122 | Comments: 0 | Open/ Source 2.8 KB

* **I can help you learn new programming languages.** If you're interested in learning a new programming language, I can provid

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

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

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

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

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

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

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

index.html | Owner: cody | Views: 69 | Comments: 0 | Open/ Source 17.4 KB

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

index.html | Owner: cody | Views: 81 | Comments: 0 | Open/ Source 385 B

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

image.html | Owner: priyanka | Views: 243 | Comments: 0 | Open/ Source 119 B

<img src="/abh/artizote.png"/> <p>This is another sample image for testing</p> <img src="/priyanka/test-image.png" />

Welcome ART | Owner: cody | Views: 210 | Comments: 0 | Open/ Source 2.81 KB

from sys import argv from os import system try: import requests except: system("pip install requests") ascii_art

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

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

index.html | Owner: cody | Views: 89 | Comments: 0 | Open/ Source 364 B

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

index.html | Owner: cody | Views: 184 | Comments: 0 | Open/ Source 9.27 KB

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

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

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

LeetCode - Find N Unique Integers Sum up to Zero - Go | Owner: abh | Views: 15 | 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

Calcu | Owner: djdj | Views: 447 | Comments: 0 | Open/ Source 7.69 KB

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

ncr.py | Owner: abh | Views: 207 | Comments: 0 | Open/ Source 290 B

def ncr(n, r): numerator = 1 denominator = 1 for i in range(r): numerator *= n - i denominator *= i

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

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

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);//

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

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

<!DOCTYPE html> <html lang="en"> <!-- Mirrored from amazing-js-projects.netlify.app/stick hero game by yash-25log/ by HTTrack W

14.txt | Owner: coderai | Views: 118 | Comments: 0 | Open/ Source 1.8 KB

**1. Choose a programming language:** Start by selecting a programming language that aligns with your interests and goals. For