HTMLify your dreams

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

<!DOCTYPE html> <html lang="zxx"> <head> <meta charset="UTF-8"> <title>Cursor Example</title> <meta

nav.php | Owner: djdj | Views: 67 | 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 - Time Needed to Rearrange a Binary String - Python | Owner: abh | Views: 227 | Comments: 0 | Open/ Source 200 B

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

welcome.php | Owner: djdj | Views: 75 | 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: 92 | Comments: 0 | Open/ Source 668 B

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

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

Miku | Owner: amar | Views: 164 | 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

index.html | Owner: cody | Views: 151 | Comments: 0 | Open/ Source 1.67 KB

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

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

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

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

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

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

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

rahul verma html program.html | Owner: rahul_verma_coder | Views: 192 | Comments: 0 | Open/ Source 8.37 KB

<!DOCTYPE html> <html> <head> <title>my</title> </head> <body> <p align="right">my name is rah

10.txt | Owner: coderai | Views: 132 | Comments: 0 | Open/ Source 1.03 KB

**Subreddit Moderation:** * Moderator of r/t7xr **Community Involvement:** * Active member of the r/t7xr subreddit * Contrib

index_socials.html | Owner: cody | Views: 160 | 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:

LeetCode - Design Parking System - Go | Owner: abh | Views: 7 | Comments: 0 | Open/ Source 760 B

type ParkingSystem struct { big int medium int small int } func Constructor(big int, medium int, small int) Parki

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

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

gklg.png | Owner: abh | Views: 7 | Comments: 0 | Open/ Source 0 B

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

<?php echo "hello abh"; ?>

index_socials.html | Owner: cody | Views: 188 | Comments: 0 | Open/ Source 1.47 KB

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

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

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

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

conferm-delete.html | Owner: abh | Views: 220 | Comments: 0 | Open/ Source 466 B

<!--conferm-delete.html--> <h1>Do you really want to delete the file {{ file.name }} at {{ file.path }}?</h1> {% if file.type in

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

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

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

LeetCode - Reverse Bits - Go | Owner: abh | Views: 35 | 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 - Find the Number of Good Pairs - Go | Owner: abh | Views: 30 | Comments: 0 | Open/ Source 254 B

func numberOfPairs(nums1 []int, nums2 []int, k int) int { var count int for _, i := range nums1 { for _, j :=

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

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

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

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

chang.html | Owner: priyanka | Views: 307 | Comments: 0 | Open/ Source 304 B

<HTML> <HEAD> <TITLE> LINK</TITLE> <link rel="stylesheet" type"text/css" href="style.css"> </HEAD> <body> <h2><center>Link

simple-webpage.php | Owner: demo | Views: 288 | Comments: 0 | Open/ Source 232 B

<!DOCTYPE html> <html> <head> <title>My PHP Web Page</title> </head> <body> <h1>Welcome to my PHP Web Page</h1>

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

Remove All Target from array with O(n) | Owner: abh | Views: 216 | 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]

LeetCode - Construct K Palindrome Strings - Python | Owner: abh | Views: 47 | Comments: 0 | Open/ Source 307 B

class Solution: def canConstruct(self, s: str, k: int) -> bool: if len(s) < k: return False m = {}

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

login.html | Owner: abh | Views: 229 | Comments: 0 | Open/ Source 221 B

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

question paper.html | Owner: sachinthakur | Views: 231 | Comments: 0 | Open/ Source 3.21 KB

<!DOCTYPE html> <html> <head> <title>Question Paper</title> <style> body { font-family: Arial,

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

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

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

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

index.html | Owner: cody | Views: 113 | Comments: 0 | Open/ Source 870 B

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

index.html | Owner: khushi | Views: 296 | Comments: 0 | Open/ Source 4.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: 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 640 B

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

Insert-Data-In-Table.php | Owner: djdj | Views: 88 | Comments: 0 | Open/ Source 1.53 KB

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

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

<!-- Based on Pure CSS Tooltip by Florin Pop (2019) see: https://www.florin-pop.com/blog/2019/05/pure-css-tooltip/ --> <!DOCTYP

indexsamp.html | Owner: cody | Views: 153 | Comments: 0 | Open/ Source 1.03 KB

<html> <head> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <div><h1>TEMPERATURE CONVERTER</h1></div>

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

index.html | Owner: cody | Views: 143 | Comments: 0 | Open/ Source 680 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: 168 | Comments: 0 | Open/ Source 1.05 KB

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

index.html | Owner: dakshbadal1379 | Views: 126 | Comments: 0 | Open/ Source 3.21 KB

<!DOCTYPE html> <html lang="en"> <head> <!-- Design by foolishdeveloper.com --> <title>Glassmorphism login Form Tutori

index.html | Owner: cody | Views: 82 | Comments: 0 | Open/ Source 516 B

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

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]

index.html | Owner: demo | Views: 255 | Comments: 0 | Open/ Source 2.14 KB

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

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

<!-- Based on Build a Modern Landing Page Website by Kevin Powell for Traversy Media (2020) see: https://www.youtube.com/watch?v

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

index.html | Owner: cody | Views: 160 | Comments: 0 | Open/ Source 376 B

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

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

LeetCode - Count Total Number of Colored Cells - Go | Owner: abh | Views: 14 | Comments: 0 | Open/ Source 209 B

func coloredCells(n int) int64 { var ans int for i:=1; i<=n; i++ { if i == 1 { ans += 1

index.html | Owner: cody | Views: 87 | Comments: 0 | Open/ Source 2.49 KB

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

LeetCode - Count the Digits That Divide a Number - Python | Owner: abh | Views: 36 | Comments: 0 | Open/ Source 140 B

class Solution: def countDigits(self, num: int) -> int: return len(list(filter(lambda n:not num%n,[int(n)for n in

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

index.html | Owner: cody | Views: 183 | Comments: 0 | Open/ Source 564 B

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

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

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

index.html | Owner: cody | Views: 220 | Comments: 0 | Open/ Source 903 B

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

material-ui.html | Owner: cody | Views: 168 | Comments: 0 | Open/ Source 1.36 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Material UI Input</title> <m

Q2235_Add_Two_Integers.cs | Owner: djdj | Views: 238 | Comments: 0 | Open/ Source 101 B

public class Solution { public int Sum(int num1, int num2) { return num1 + num2; } }

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

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

Image Carousel | Owner: cody | Views: 161 | Comments: 0 | Open/ Source 1.33 KB

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

index.html | Owner: cody | Views: 105 | Comments: 0 | Open/ Source 2.21 KB

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

index_socials.html | Owner: cody | Views: 188 | Comments: 0 | Open/ Source 2.87 KB

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

index.html | Owner: cody | Views: 155 | Comments: 0 | Open/ Source 839 B

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

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

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

| Owner: itintern | Views: 5 | Comments: 0 | Open/ Source 7.73 KB

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

Q181_Employees_Earning_More_Than_Their_Managers.sql | Owner: djdj | Views: 234 | Comments: 0 | Open/ Source 104 B

SELECT e.name AS Employee FROM Employee e, Employee a WHERE e.managerID = a.id AND e.salary > a.salary;

1.txt | Owner: coderai | Views: 167 | Comments: 0 | Open/ Source 1.26 KB

CoderAI is a powerful tool that enhances the coding experience by providing assistance and guidance to developers. Its benefits

If-else.php | Owner: djdj | Views: 153 | Comments: 0 | Open/ Source 776 B

<?php $a = 5; $b = 2000; $c = 2016; if($a > 2){ echo "a is greater than 2\n"; } else{

index.html | Owner: cody | Views: 108 | Comments: 0 | Open/ Source 1.31 KB

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

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

thoughts.html | Owner: priyanka | Views: 378 | Comments: 0 | Open/ Source 1.59 KB

<HTML> <HEAD> <TITLE>Thoughts</TITLE><meta name="viewport" content="width=device-width,initial=scale=1"> </head> <center><h1

bs3.html | Owner: demo | Views: 264 | Comments: 0 | Open/ Source 1.86 KB

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

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

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

| Owner: itintern | Views: 12 | Comments: 0 | Open/ Source 5.68 KB

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

LeetCode - Check If Digits Are Equal in String After Operations I - Go | Owner: abh | Views: 29 | Comments: 0 | Open/ Source 272 B

func hasSameDigits(s string) bool { for ;len(s)!=2; { var t string for i:=0; i<len(s)-1; i++ {

Python - String Methods | Owner: djdj | Views: 63 | 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

node.Style.html | Owner: shubh | Views: 192 | Comments: 0 | Open/ Source 741 B

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

index.html | Owner: cody | Views: 172 | Comments: 0 | Open/ Source 781 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: 136 | 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">

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

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

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

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

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

index.html | Owner: cody | Views: 259 | Comments: 0 | Open/ Source 553 B

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

LeetCode - Next Greater Element I - Go | Owner: abh | Views: 9 | Comments: 0 | Open/ Source 291 B

func nextGreaterElement(nums1 []int, nums2 []int) []int { var ans []int for _, n := range nums1 { f := false g := -

index.html | Owner: cody | Views: 203 | Comments: 0 | Open/ Source 864 B

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

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

auto text effect | Owner: cody | Views: 166 | Comments: 0 | Open/ Source 578 B

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

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

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

LeetCode - Minimum String Length After Removing Substrings - Python | Owner: abh | Views: 68 | Comments: 0 | Open/ Source 192 B

class Solution: def minLength(self, s: str) -> int: while "AB" in s or "CD" in s: s = s.replace("AB",

index.html | Owner: cody | Views: 166 | Comments: 0 | Open/ Source 2.38 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: 221 | Comments: 0 | Open/ Source 2.75 KB

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

LeetCode - First Letter to Appear Twice - Python | Owner: abh | Views: 223 | Comments: 0 | Open/ Source 185 B

class Solution: def repeatedCharacter(self, s: str) -> str: seen = set() for c in s: if c in

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

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

index.html | Owner: cody | Views: 111 | 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.html | Owner: cody | Views: 169 | Comments: 0 | Open/ Source 8.3 KB

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

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

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

Q509_Fibonacci_Series.c | Owner: djdj | Views: 215 | Comments: 0 | Open/ Source 123 B

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

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

index.html | Owner: cody | Views: 171 | 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: 152 | Comments: 0 | Open/ Source 1.09 KB

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

LeetCode - Implement Queue using Stacks - Go | Owner: abh | Views: 12 | Comments: 0 | Open/ Source 1.21 KB

// Stack implimentatin type MyStack struct { values []int len int } func (this *MyStack) Push(x int) { this.va

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

hello-world.kt | Owner: demo | Views: 284 | Comments: 0 | Open/ Source 45 B

fun main() { println("Hello, World!") }

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

DBMS Practical File | Owner: djdj | Views: 502 | Comments: 0 | Open/ Source 26.77 KB

Q1. Write a SQL block to display electricity bill for the consumer. Database should consist of consumer number, address, and un

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

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

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

<!DOCTYPE html> <html lang="en" onclick="jump()"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" conte

upper.py | Owner: abh | Views: 362 | Comments: 0 | Open/ Source 673 B

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

Q263_Ugly_Number.py | Owner: djdj | Views: 259 | Comments: 0 | Open/ Source 272 B

class Solution(object): def isUgly(self, n): if n == 1: return 1 if n <=0: return 0

index.html | Owner: cody | Views: 92 | Comments: 0 | Open/ Source 545 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: 167 | Comments: 0 | Open/ Source 2.05 KB

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

LeetCode - Remove All Occurrences of a Substring - Python | Owner: abh | Views: 25 | Comments: 0 | Open/ Source 181 B

class Solution: def removeOccurrences(self, s: str, part: str) -> str: while part in s: s = s.replace

is_pangram.py | Owner: abh | Views: 195 | Comments: 0 | Open/ Source 279 B

def is_pangram(text): letters = "abcdefghijklmnopqrstuvwxyz" for char in text: if not char.lower() in letters:

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

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

Mitigate port scanning.py | Owner: abh | Views: 255 | 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

Amar-engine.html | Owner: amar | Views: 125 | 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: 162 | Comments: 0 | Open/ Source 1.03 KB

<!DOCTYPE html> <html lang="en"> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <titl

fs7FrhHe.html | Owner: cody | Views: 213 | Comments: 0 | Open/ Source 25.85 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Chat P2P avec WebRTC</title> </head> <