HTMLify your dreams

Filter Options:
index.html | Owner: cody | Views: 174 | Comments: 0 | Open/ Source 784 B

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

lower.py | Owner: abh | Views: 267 | Comments: 0 | Open/ Source 672 B

def lower(s: str) -> str: u = "QWERTYUIOPASDFGHJKLZXCVBNM" l = "qwertyuiopasdfghjklzxcvbnm" for c in s: if c

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

index.html | Owner: cody | Views: 204 | Comments: 0 | Open/ Source 2.2 KB

<!-- Based on Chat Interface by Florin Pop (2019) see: https://www.florin-pop.com/blog/2019/04/chat-interface/ --> <!DOCTYPE ht

index.html | Owner: cody | Views: 199 | 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: 118 | 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>B

LeetCode - Add Two Numbers - Python | Owner: abh | Views: 72 | Comments: 1 | Open/ Source 902 B

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

Bunk pr chaloge? | Owner: abh | Views: 403 | Comments: 0 | Open/ Source 3.24 KB

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

Weather checker | Owner: amar | Views: 83 | Comments: 0 | Open/ Source 8.96 KB

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

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

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

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

<style> #otherInput { display: none; /* Hide the input box initially */ } </style> <form action="" met

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

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

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

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

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

LeetCode - Semi-Ordered Permutation - Go | Owner: abh | Views: 13 | Comments: 0 | Open/ Source 317 B

func SliceFind(arr []int, target int) int { for i, v := range arr { if v == target { return i } } return -1 }

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

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

boom | Owner: himanshu | Views: 114 | Comments: 0 | Open/ Source 22.92 KB

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

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

newform.html | Owner: dakshbadal1379 | Views: 121 | Comments: 0 | Open/ Source 2.51 KB

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

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

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

46.txt | Owner: coderai | Views: 170 | Comments: 0 | Open/ Source 2.1 KB

* **Take advantage of the community:** Engage with other users, ask questions, and share your knowledge. * **Explore the docume

LeetCode - Number Complement - Python | Owner: abh | Views: 74 | Comments: 0 | Open/ Source 214 B

class Solution: def findComplement(self, num: int) -> int: b = bin(num)[2:] b = b.replace("0", "2")

LeetCode - Check if a String Is an Acronym of Words - Go | Owner: abh | Views: 45 | Comments: 0 | Open/ Source 235 B

func isAcronym(words []string, s string) bool { if len(words) != len(s) { return false } for i, c := ran

init.lua | Owner: abh | Views: 34 | Comments: 0 | Open/ Source 1.98 KB

--[[ init.lua ]]-- local scheme_switcher = require("scheme-switcher") -- Error Mesages and wornigs vim.diagnostic.config({

index.html | Owner: cody | Views: 130 | Comments: 0 | Open/ Source 799 B

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

LeetCode - Maximum Value of a String in an Array - Go | Owner: abh | Views: 55 | 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

LeetCode - Check if the Sentence Is Pangram - Python | Owner: abh | Views: 12 | Comments: 0 | Open/ Source 110 B

class Solution: def checkIfPangram(self, sentence: str) -> bool: return len(set(sentence)) == 26

index.html | Owner: cody | Views: 177 | 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: 189 | Comments: 0 | Open/ Source 1.16 KB

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>DragonUncaged - Color Blast!</title> <meta name="vi

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

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

3.txt | Owner: coderai | Views: 168 | Comments: 0 | Open/ Source 958 B

**Link 1:**<br><br>* **What:** The link references a subreddit on the Reddit platform: r/AmItheAsshole.<br>* **Explanation:**<br

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

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

index.html | Owner: cody | Views: 123 | Comments: 0 | Open/ Source 548 B

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

jdh74ys6.html | Owner: cody | Views: 276 | Comments: 0 | Open/ Source 150 B

<p onclick="change()">Hello World!!</p> <script> function change(){ document.querySelector("p").innerHTML = "Hello JavaSc

home.html | Owner: shubh | Views: 293 | Comments: 0 | Open/ Source 6.49 KB

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

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

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Drum Kit</title> <link rel="stylesheet" href="style

brainrot-battle-arena.html | Owner: amar | Views: 108 | Comments: 0 | Open/ Source 11.14 KB

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

hello-world.go | Owner: demo | Views: 279 | Comments: 0 | Open/ Source 82 B

package main import "fmt" func main() { fmt.Println("Hello, World!") }

54.txt | Owner: coderai | Views: 168 | Comments: 0 | Open/ Source 1.18 KB

**Coding Tutorials:** - Extensive library covering beginner to advanced concepts - Step-by-step tutorials with clear explanatio

14.txt | Owner: coderai | Views: 161 | 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

index.html | Owner: cody | Views: 149 | Comments: 0 | Open/ Source 557 B

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

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

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

Hello-World.php | Owner: djdj | Views: 176 | 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

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

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

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

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

is_leap_year.py | Owner: abh | Views: 243 | Comments: 0 | Open/ Source 101 B

def is_leap_year(year): if not year % 100: return not year % 400 return not year % 4

LeetCode - Squares of a Sorted Array - Python | Owner: abh | Views: 226 | Comments: 0 | Open/ Source 129 B

class Solution: def sortedSquares(self, nums: List[int]) -> List[int]: return list(sorted(map(lambda a:a*a, nums))

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

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

image to lua | Owner: amar | Views: 80 | Comments: 0 | Open/ Source 9.84 KB

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

deleteElement.html | Owner: shubh | Views: 232 | Comments: 0 | Open/ Source 924 B

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

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

University - BCA | Owner: djdj | Views: 90 | 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: 188 | Comments: 0 | Open/ Source 851 B

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

Click box & Increase Your Score | Owner: djdj | Views: 678 | Comments: 0 | Open/ Source 5.54 KB

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

index.html | Owner: cody | Views: 127 | Comments: 0 | Open/ Source 489 B

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

Miku | Owner: amar | Views: 195 | Comments: 0 | Open/ Source 4.76 KB

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

signupform.html | Owner: dakshbadal1379 | Views: 143 | Comments: 0 | Open/ Source 2.76 KB

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

is_vowel.py | Owner: abh | Views: 237 | Comments: 0 | Open/ Source 265 B

def is_vowel(char): vowels = ["a", "e", "i", "o", "u", "A", "E", "I", "O", "U"] return char in vowels def is_vowel(char

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

MySQL-Table.php | Owner: djdj | Views: 86 | Comments: 0 | Open/ Source 1.14 KB

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

hello-world.pl | Owner: demo | Views: 257 | Comments: 0 | Open/ Source 24 B

print "Hello, World!\n";

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

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

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

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

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

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

sum.py | Owner: abh | Views: 787 | Comments: 2 | Open/ Source 314 B

def sum(*nums): s = 0 for i in nums: s += i return s def sum(*nums: int): s = 0 for n in nums:

toggle1.html | Owner: cody | Views: 305 | Comments: 0 | Open/ Source 16.59 KB

<label> <input type="checkbox"> <span class="custom__checkbox"> <span class="custom__checkbox__face"> <span cl

Flower | Owner: djdj | Views: 109 | 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: 114 | Comments: 0 | Open/ Source 1.88 KB

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

24.txt | Owner: coderai | Views: 162 | Comments: 0 | Open/ Source 1.08 KB

- **Q&A:** Answering questions on various topics. - **Text Generation:** Creating original text, such as stories, articles, po

Q342_Power_of_Four.py | Owner: djdj | Views: 281 | Comments: 1 | Open/ Source 95 B

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

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

index.html | Owner: cody | Views: 201 | Comments: 0 | Open/ Source 4.19 KB

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

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

Php Practical File | Owner: djdj | Views: 30 | Comments: 0 | Open/ Source 5.74 MB

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

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

Tic Tac Toe Game | Owner: cody | Views: 265 | Comments: 0 | Open/ Source 2.96 KB

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

Brook | Owner: light | Views: 74 | Comments: 0 | Open/ Source 1.19 KB

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

index.html | Owner: cody | Views: 251 | Comments: 0 | Open/ Source 5.29 KB

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

12.txt | Owner: coderai | Views: 159 | Comments: 0 | Open/ Source 1.48 KB

IBM Watson is an artificial intelligence (AI) platform developed by IBM. It is designed to process and analyze large amounts of

divisors.py | Owner: abh | Views: 221 | Comments: 0 | Open/ Source 326 B

def divisors(n: int): ds = [] for i in range(1, n+1): if not n % i: ds.append(i) return ds def

Dbms Unit 4 Notes | Owner: djdj | Views: 232 | Comments: 0 | Open/ Source 322.83 KB

creating-simple-table.sql | Owner: demo | Views: 288 | Comments: 0 | Open/ Source 127 B

CREATE TABLE Students ( StudentID INT PRIMARY KEY, FirstName VARCHAR(50), LastName VARCHAR(50), Age INT );

index.html | Owner: cody | Views: 115 | Comments: 0 | Open/ Source 1.08 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: 173 | 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

LootCode - Minimum Bit Flips to Convert Number - Python | Owner: abh | Views: 81 | Comments: 0 | Open/ Source 315 B

class Solution: def minBitFlips(self, start: int, goal: int) -> int: bb = len(bin(max([start, goal]))) - 2

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,

Cards | Owner: djdj | Views: 22 | Comments: 0 | Open/ Source 130.42 KB

<html class="wf-lato-n7-active wf-lato-n9-active wf-lato-n4-active wf-active" style="--theme-color: #F17D3A; --theme-color-light

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

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

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

<!-- Based on Parallax Landing Page - Rellax.js by Brad Traversy (2020) see: https://www.youtube.com/watch?v=aAxt0Z7IXIo --> <!

index_socials.html | Owner: cody | Views: 219 | Comments: 0 | Open/ Source 3.37 KB

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

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

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

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

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

windows.html | Owner: cody | Views: 96 | Comments: 0 | Open/ Source 2.73 KB

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

index.html | Owner: cody | Views: 174 | 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: 112 | Comments: 0 | Open/ Source 472 B

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

LeetCode - Crawler Log Folder - Go | Owner: abh | Views: 39 | Comments: 0 | Open/ Source 313 B

func minOperations(logs []string) int { depth := 0 for _, o := range logs { if o == "../" { if d

index.html | Owner: cody | Views: 182 | Comments: 0 | Open/ Source 2.4 KB

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

LeetCode - Intersection of Two Linked Lists - Go | Owner: abh | Views: 27 | Comments: 0 | Open/ Source 357 B

/** * Definition for singly-linked list. * type ListNode struct { * Val int * Next *ListNode * } */ func

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

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

pri2.html | Owner: priyanka | Views: 294 | 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

LeetCode - Baseball Game - Go | Owner: abh | Views: 48 | Comments: 0 | Open/ Source 1.25 KB

import "fmt" type Stack struct { values []int } func (stack *Stack) push(n int) { stack.values = append(stack.value

index.html | Owner: cody | Views: 204 | Comments: 0 | Open/ Source 3.42 KB

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

6.txt | Owner: coderai | Views: 187 | Comments: 0 | Open/ Source 1.56 KB

**User:** Hi there! I'm looking for information on the best way to train my dog. Can you help me? **AI Assistant:** Hi there!

LeetCode - Keyboard Row - Python | Owner: abh | Views: 13 | Comments: 0 | Open/ Source 505 B

class Solution: def findWords(self, words: List[str]) -> List[str]: rows = [ "qwertyuiop",

LeetCode - Check if Numbers Are Ascending in a Sentence - Go | Owner: abh | Views: 27 | Comments: 0 | Open/ Source 561 B

func atoi(s string) int { var n int for _, c := range s { n = (n*10) + int(c-48) } return n } func is_number(s stri

index.html | Owner: cody | Views: 195 | 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: 102 | Comments: 0 | Open/ Source 7.25 KB

<!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: 233 | Comments: 0 | Open/ Source 1.53 KB

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

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

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

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

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

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

Manisha.html | Owner: amar | Views: 53 | Comments: 0 | Open/ Source 3.62 KB

is_armstrong.py | Owner: abh | Views: 257 | Comments: 0 | Open/ Source 314 B

def is_armstrong(n: int): n = str(n) p = len(n) s = 0 for d in n: s += int(d)**p return int(n) == s

Get_Cookies.php | Owner: djdj | Views: 105 | Comments: 0 | Open/ Source 71 B

<?php $ram = $_COOKIE['category']; echo "cookie is: " .$ram; ?>

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

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

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

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

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

BMI - Calculator | Owner: cody | Views: 207 | Comments: 0 | Open/ Source 1.92 KB

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

index.html | Owner: cody | Views: 244 | Comments: 0 | Open/ Source 1.23 KB

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

30 Days Of JavaScript | Owner: cody | Views: 232 | 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: 198 | Comments: 0 | Open/ Source 7.53 KB

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

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

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

home.html | Owner: cody | Views: 215 | 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

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

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

LeetCode - Reverse Prefix of Word - Go | Owner: abh | Views: 58 | Comments: 0 | Open/ Source 365 B

func reversePrefix(word string, ch byte) string { var stack []rune for _i, c := range word { stack = append(s

BUTTONCSS.HTML | Owner: dakshbadal1379 | Views: 258 | Comments: 0 | Open/ Source 713 B

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

index.html | Owner: cody | Views: 170 | Comments: 0 | Open/ Source 1.49 KB

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