HTMLify your dreams

Filter Options:
41.txt | Owner: coderai | Views: 145 | Comments: 0 | Open/ Source 1.95 KB

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

Diagnosis | Owner: djdj | Views: 4 | 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

MySqL-Database.php | Owner: djdj | Views: 94 | Comments: 0 | Open/ Source 672 B

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

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

<!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 406 B

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

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

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

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

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

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

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

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

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

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

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

index.html | Owner: cody | Views: 191 | Comments: 0 | Open/ Source 349 B

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

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

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

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

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

index.html | Owner: cody | Views: 132 | Comments: 0 | Open/ Source 1.02 KB

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

| Owner: djdj | Views: 23 | 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-sc

Coding-World | Owner: light | Views: 158 | Comments: 0 | Open/ Source 4.63 KB

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

9.txt | Owner: coderai | Views: 142 | Comments: 0 | Open/ Source 1.81 KB

**The Impact of Social Media on Mental Health** Social media has become an integral part of our lives. We use it to stay conne

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

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

display-date-and-time.html | Owner: demo | Views: 240 | Comments: 0 | Open/ Source 86 B

const currentDate = new Date(); console.log(`Current Date and Time: ${currentDate}`);

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

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

index.html | Owner: cody | Views: 216 | Comments: 0 | Open/ Source 2.85 KB

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

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

Drawing App | Owner: cody | Views: 163 | Comments: 0 | Open/ Source 603 B

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

LeetCode - Valid Word - Python | Owner: abh | Views: 39 | Comments: 0 | Open/ Source 244 B

class Solution: def isValid(self, w: str, vo="aoeuiAOEUI", co="pyfgcrldhtnsqjkxbmwvzPYFGCRLDHTNSQJKXBMWVZ", n="7531902468")

index.html | Owner: cody | Views: 162 | Comments: 0 | Open/ Source 636 B

<!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.78 KB

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

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

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

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

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

LeetCode - Hand of Straights - Python | Owner: abh | Views: 39 | Comments: 0 | Open/ Source 410 B

class Solution: def isNStraightHand(self, hand: List[int], groupSize: int) -> bool: if len(hand) % groupSize != 0:

bs4.html | Owner: demo | Views: 252 | Comments: 0 | Open/ Source 1.02 KB

<!DOCTYPE html> <html> <head> <title>Bootstrap Progress Bar Demo</title> <!-- Include Bootstrap CSS from a CDN -->

LeetCode - Number of Even and Odd Bits - Python | Owner: abh | Views: 44 | Comments: 0 | Open/ Source 305 B

class Solution: def evenOddBit(self, n: int) -> List[int]: ans = [0, 0] for i, v in enumerate(bin(n)[2:][

Random Anime Profile | Owner: cody | Views: 177 | Comments: 0 | Open/ Source 1.21 KB

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

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

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

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

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

index.html | Owner: cody | Views: 165 | Comments: 0 | Open/ Source 796 B

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

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

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

Urasion | Owner: djdj | Views: 223 | Comments: 0 | Open/ Source 206 B

#include<stdio.h> int main() { // printf("%s",__FILE__ ); FILE *fp; char ch; fp = fopen(__FILE__,"r"); while((ch = getc(f

subway.html | Owner: cody | Views: 60 | Comments: 0 | Open/ Source 1.41 KB

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

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

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

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

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

LeetCode - Shuffle String - Python | Owner: abh | Views: 347 | Comments: 0 | Open/ Source 206 B

class Solution: def restoreString(self, s: str, indices: List[int]) -> str: shuffeld = "" for i in range(

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

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

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

index.html | Owner: cody | Views: 154 | Comments: 0 | Open/ Source 665 B

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

index.html | Owner: cody | Views: 109 | Comments: 0 | Open/ Source 765 B

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

index.html | Owner: cody | Views: 192 | Comments: 0 | Open/ Source 5.28 KB

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

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

index.html | Owner: cody | Views: 155 | 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: 114 | Comments: 0 | Open/ Source 1.71 KB

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

Beautiful Card | Owner: cody | Views: 223 | Comments: 0 | Open/ Source 1.06 KB

<!DOCTYPE html> <html> <head> <style> body { font-family: 'Arial', sans-serif; display: flex; a

Bhawna-jadaun | Owner: djdj | Views: 3 | Comments: 0 | Open/ Source 1.81 KB

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

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

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

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

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

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

signup.php | Owner: djdj | Views: 145 | Comments: 0 | Open/ Source 6.33 KB

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

LeetCode - Move Zeros - Go | Owner: abh | Views: 25 | Comments: 0 | Open/ Source 247 B

func moveZeroes(nums []int) { for i, j := 0, 0; i<len(nums); i++ { for;j<len(nums)&&nums[j]==0;j++{} if

index.html | Owner: cody | Views: 149 | Comments: 0 | Open/ Source 1.74 KB

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

index.html | Owner: cody | Views: 156 | Comments: 0 | Open/ Source 861 B

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

index.html | Owner: cody | Views: 99 | Comments: 0 | Open/ Source 5.44 KB

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

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

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

Demo Showcase | Owner: demo | Views: 512 | 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

gallary.html | Owner: cody | Views: 38 | Comments: 0 | Open/ Source 20.8 KB

<!-- <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style>

index.html | Owner: cody | Views: 97 | Comments: 0 | Open/ Source 1.16 KB

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

index.html | Owner: cody | Views: 95 | Comments: 0 | Open/ Source 408 B

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

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

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

css3.html | Owner: demo | Views: 251 | Comments: 0 | Open/ Source 949 B

<!DOCTYPE html> <html> <head> <title>Continuous Fade In and Out Animation with CSS</title> <style> /* Custo

index.html | Owner: cody | Views: 112 | 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 - Valid Palindrome - Python | Owner: abh | Views: 67 | Comments: 0 | Open/ Source 189 B

class Solution: def isPalindrome(self, s: str) -> bool: fls = "".join([c for c in s.lower() if c in "pyfgcrlaoeuid

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

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

result.html | Owner: cody | Views: 182 | Comments: 0 | Open/ Source 640 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: 159 | 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">

app.py | Owner: abh | Views: 205 | Comments: 0 | Open/ Source 24.99 KB

#HTMLify from flask import * from flask_migrate import * from random import randint, shuffle from hashlib import md5 from os im

index.html | Owner: cody | Views: 157 | Comments: 0 | Open/ Source 3.65 KB

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

28.txt | Owner: coderai | Views: 144 | Comments: 0 | Open/ Source 1.5 KB

**Knowledge and Information:** * **Answer questions:** Get answers to questions about a wide range of topics. * **Weather fore

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

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

index.html | Owner: cody | Views: 167 | Comments: 0 | Open/ Source 1.11 KB

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

Sum of prime numbers in given range | Owner: cody | Views: 143 | 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

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

innerText.html | Owner: shubh | Views: 229 | Comments: 0 | Open/ Source 639 B

// DOM Manipulation // innerText properties <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name=

yas.html | Owner: abh | Views: 305 | Comments: 0 | Open/ Source 686 B

<!--You are star--> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <center> <div id="main"> <h1

dbconn.php | Owner: djdj | Views: 65 | Comments: 0 | Open/ Source 293 B

<?php $server = "localhost"; $username = "root"; $password = ""; $database = "system"; $conn = mysqli_con

is_armstrong.py | Owner: abh | Views: 234 | 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

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

LeetCode - Count Elements With Maximum Frequency - Python | Owner: abh | Views: 37 | Comments: 0 | Open/ Source 348 B

class Solution: def maxFrequencyElements(self, nums: List[int]) -> int: freq = {} h = 0 for n in

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

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

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

index.html | Owner: cody | Views: 195 | Comments: 0 | Open/ Source 5.23 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Finance Bank Accounts</title>

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

bs2.html | Owner: demo | Views: 259 | Comments: 0 | Open/ Source 1.26 KB

<!DOCTYPE html> <html> <head> <title>Bootstrap Grid Demo</title> <!-- Add Bootstrap CSS from a CDN --> <link re

29.txt | Owner: coderai | Views: 141 | 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: 194 | Comments: 0 | Open/ Source 1.56 KB

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

jojo1.png | Owner: abh | Views: 147 | Comments: 0 | Open/ Source 0 B

Grade's Calculator | Owner: ahmads_codes | Views: 223 | Comments: 0 | Open/ Source 2.09 KB

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

OT All questions | Owner: djdj | Views: 631 | Comments: 6 | Open/ Source 7.54 MB

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

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

LeetCode - Richest Customer Wealth - Go | Owner: abh | Views: 13 | Comments: 0 | Open/ Source 322 B

func maximumWealth(accounts [][]int) int { var max_wealth int for _, customer := range accounts { var wealth

NAVIGATIONBAR.HTML | Owner: dakshbadal1379 | Views: 241 | Comments: 0 | Open/ Source 1.2 KB

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

LeetCode - Counter - JavaScript | Owner: abh | Views: 117 | Comments: 0 | Open/ Source 289 B

/** * @param {number} n * @return {Function} counter */ var createCounter = function(n) { let count = n; return

index.html | Owner: cody | Views: 171 | Comments: 0 | Open/ Source 420 B

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

quiz app | Owner: cody | Views: 194 | Comments: 0 | Open/ Source 1.16 KB

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

paren.html | Owner: dakshbadal1379 | Views: 252 | Comments: 0 | Open/ Source 1.17 KB

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

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

Q2119_A_Number_After_a_Double.py | Owner: djdj | Views: 215 | Comments: 0 | Open/ Source 280 B

def isSameAfterReversals(self, num): t = num s = 0 while num > 0: #526 r = num % 10 #6 s = s * 10 + r #6

Q1068_Product_Sales_Analysis_I.sql | Owner: djdj | Views: 260 | Comments: 0 | Open/ Source 103 B

select product_name,year,price from sales inner join product on sales.product_id = product.product_id;

LeetCode - Time Needed to Rearrange a Binary String - Python | Owner: abh | Views: 228 | Comments: 0 | Open/ Source 200 B

class Solution: def secondsToRemoveOccurrences(self, s: str) -> int: secs = 0 while "01" in s:

LeetCode - Take Gifts From the Richest Pile - Python | Owner: abh | Views: 99 | Comments: 0 | Open/ Source 208 B

class Solution: def pickGifts(self, gifts: List[int], k: int) -> int: for _ in range(k): m = max(gift

index.html | Owner: cody | Views: 183 | Comments: 0 | Open/ Source 1.52 KB

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

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

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

index.html | Owner: cody | Views: 158 | Comments: 0 | Open/ Source 788 B

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

First Fortran Program | Owner: abh | Views: 46 | Comments: 0 | Open/ Source 55 B

program test print '(A)', "hi" end program test

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

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

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: 166 | Comments: 0 | Open/ Source 1.2 KB

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

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

32.txt | Owner: coderai | Views: 135 | Comments: 0 | Open/ Source 953 B

* **Purpose:** The link leads to a video on YouTube that discusses the experience of a woman who removed her breast implants af

Resume Builder | Owner: cody | Views: 142 | Comments: 0 | Open/ Source 2.2 KB

<!DOCTYPE html> <html lang="en"> <meta http-equiv="content-type" content="text/html;charset=UTF-8" /> <head> <meta c

search input 01 | Owner: cody | Views: 182 | Comments: 0 | Open/ Source 523 B

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

LeetCode - Convert Binary Number in a Linked List to Integer - Go | Owner: abh | Views: 1 | Comments: 0 | Open/ Source 409 B

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

Theme Changes | Owner: djdj | Views: 34 | Comments: 0 | Open/ Source 2.24 KB

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

bs1.html | Owner: demo | Views: 303 | Comments: 0 | Open/ Source 1.82 KB

<!DOCTYPE html> <html> <head> <title>Bootstrap CSS Demo</title> <!-- Add Bootstrap CSS from a CDN --> <link rel

Amar.html | Owner: amar | Views: 44 | Comments: 3 | Open/ Source 3.62 KB

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

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

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

index.html | Owner: cody | Views: 146 | Comments: 0 | Open/ Source 769 B

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

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

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

LeetCode - Excel Sheet Column Title - Go | Owner: abh | Views: 42 | Comments: 0 | Open/ Source 383 B

func convertToTitle(columnNumber int) string { var bs []int for ;columnNumber!=0; { d := columnNumber%26

index.html | Owner: cody | Views: 180 | Comments: 0 | Open/ Source 5.19 KB

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