HTMLify your dreams

Filter Options:
notes.lua | Owner: abh | Views: 97 | Comments: 0 | Open/ Source 2.49 KB

-- [[ notes ]] -- local notes_dir = vim.fn.stdpath("data") .. "/notes/" vim.fn.mkdir(notes_dir, "p") local Notes = {}; func

LeetCode - Delete Characters to Make Fancy String - Python | Owner: abh | Views: 126 | Comments: 0 | Open/ Source 176 B

class Solution: def makeFancyString(self, s: str) -> str: for c in set(s): while c*3 in s:

excel.html | Owner: cody | Views: 132 | Comments: 0 | Open/ Source 1.48 KB

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

indent_line.lua | Owner: abh | Views: 69 | Comments: 0 | Open/ Source 264 B

return { { "Yggdroot/indentLine", config = function () vim.g.indentLine_char = "│" -

DBMS Assignment | Owner: djdj | Views: 1018 | Comments: 0 | Open/ Source 5.76 MB

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

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

LeetCode - Check if Numbers Are Ascending in a Sentence - Go | Owner: abh | Views: 62 | 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

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

<!DOCTYPE html> <html> <head> <title>Media Upload</title> {% include "stylesheet.html" %} <style> </style> </hea

LeetCode - Strictly Palindromic Number - Go | Owner: abh | Views: 92 | Comments: 0 | Open/ Source 61 B

func isStrictlyPalindromic(n int) bool { return false }

Foreach-Loop.php | Owner: djdj | Views: 306 | Comments: 0 | Open/ Source 465 B

<?php // foreach loop in php $arr = array('Apple','Banana','Grapes','Mango'); //this is a simply a for loop that us

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

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

index.html | Owner: djdj | Views: 28 | Comments: 0 | Open/ Source 6.94 KB

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

Hik | Owner: amar | Views: 132 | Comments: 0 | Open/ Source 8.97 KB

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

Signup.php | Owner: djdj | Views: 139 | Comments: 0 | Open/ Source 6.28 KB

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

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

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

notifications.html | Owner: abh | Views: 257 | Comments: 0 | Open/ Source 947 B

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

image to pdf quality | Owner: amar | Views: 113 | Comments: 0 | Open/ Source 5.33 KB

<!DOCTYPE html> <html> <head> <title>Image to PDF Converter</title> <style> #uploadBox { border: 2px dashed

Hello.php | Owner: djdj | Views: 309 | Comments: 0 | Open/ Source 337 B

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

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

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

LeetCode - Find Center of Star Graph - Python | Owner: abh | Views: 111 | Comments: 0 | Open/ Source 409 B

class Solution: def findCenter(self, edges: List[List[int]]) -> int: flat = set() for l in edges[:3]:

index.html | Owner: khushi | Views: 420 | Comments: 0 | Open/ Source 1.3 KB

<div id="main"> <h1>Instagram chla rhe ho?</h1> <button id="yes" onclick="yes()"> Yes </button> <button id="no" o

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

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

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

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

LeetCode - Design Linked List - Go | Owner: abh | Views: 73 | Comments: 0 | Open/ Source 2.03 KB

// LinkedList // import "fmt" // type ListNode struct { // Val int // Next *ListNode // } type MyLinkedList struct {

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

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

| Owner: itintern | Views: 49 | Comments: 0 | Open/ Source 10.57 KB

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

26.txt | Owner: coderai | Views: 197 | Comments: 0 | Open/ Source 1.22 KB

* **Coding:** You can ask Coder AI questions like "How do I write a function to sort a list of numbers?" or "Can you help me de

1.txt | Owner: coderai | Views: 244 | 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

js3.html | Owner: demo | Views: 349 | Comments: 0 | Open/ Source 613 B

<!DOCTYPE html> <html> <head> <title>Auto Vibration on Page Load</title> </head> <body> <script> // Funct

Add-Two-No.php | Owner: djdj | Views: 230 | Comments: 0 | Open/ Source 239 B

<?PhP // php is case insensitive programming lang. //with three variable $a = 10; $b = 5; $c = $a + $b; EcHo ($

Important topics | Owner: djdj | Views: 770 | Comments: 0 | Open/ Source 3.82 KB

<head> <title>Imp Quetions</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <style> t

__init__.py | Owner: abh | Views: 225 | Comments: 0 | Open/ Source 21 B

from .TESTS import *

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

LeetCode - Get Maximum in Generated Array - Go | Owner: abh | Views: 71 | Comments: 0 | Open/ Source 342 B

func getMaximumGenerated(n int) int { if n == 0 { return 0 } arr := []int{0, 1} for len(arr) < n + 1 { l := len(ar

LeetCode - Function Composition - JavaScript | Owner: abh | Views: 180 | Comments: 0 | Open/ Source 348 B

/** * @param {Function[]} functions * @return {Function} */ var compose = function(functions) { return functio

Hello.html | Owner: shivam | Views: 261 | Comments: 0 | Open/ Source 16 B

<h1> Hello </h1>

flexbox | Owner: light | Views: 107 | Comments: 0 | Open/ Source 2.35 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 488 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: 249 | Comments: 0 | Open/ Source 829 B

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

form.html | Owner: priyanka | Views: 359 | Comments: 0 | Open/ Source 1.32 KB

<html> <head> <title>frame</title></head> <form> <body bgcolor="lightcyan"> Name:<input type="text" Name ="firstname"size

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

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

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

effect.html | Owner: tanishkak | Views: 505 | Comments: 0 | Open/ Source 1.41 KB

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

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

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

python_print.py | Owner: djdj | Views: 302 | Comments: 0 | Open/ Source 104 B

if __name__ == '__main__': n = int(input()) for i in range(1,n+1): print(i,end="")

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

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

index.html | Owner: cody | Views: 241 | Comments: 0 | Open/ Source 2.66 KB

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

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

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

Q476_Number_Complement.py | Owner: djdj | Views: 303 | Comments: 0 | Open/ Source 381 B

def findComplement(self, num): s = [] while num > 0: # 5 r = str(num % 2)# s.append(r) num = num // 2 s

For-Loop.php | Owner: djdj | Views: 287 | Comments: 0 | Open/ Source 80 B

<?php //for loop for ($i=0; $i <= 10; $i++) { echo $i; } ?>

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

Cil.html | Owner: amar | Views: 164 | Comments: 0 | Open/ Source 4.38 KB

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

LeetCode - Design Browser History - Go | Owner: abh | Views: 62 | Comments: 0 | Open/ Source 1.21 KB

// @leet start type BrowserHistoryNode struct { Url string Back *BrowserHistoryNode Forward *BrowserHistoryNode } t

LeetCode - First Letter to Appear Twice - JavaScript | Owner: abh | Views: 203 | Comments: 0 | Open/ Source 241 B

/** * @param {string} s * @return {character} */ var repeatedCharacter = function(s) { seen = []; for (let i=0;

| Owner: djdj | Views: 197 | Comments: 0 | Open/ Source 1.57 KB

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

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

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

pri2.html | Owner: priyanka | Views: 341 | 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: 217 | Comments: 0 | Open/ Source 11.58 KB

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

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

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

index.html | Owner: cody | Views: 152 | Comments: 0 | Open/ Source 2.23 KB

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

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

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

index.html | Owner: cody | Views: 233 | Comments: 0 | Open/ Source 12.45 KB

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

LeetCode - Linked List Random Node - Python | Owner: abh | Views: 124 | Comments: 0 | Open/ Source 920 B

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

check-prime.cpp | Owner: demo | Views: 334 | Comments: 0 | Open/ Source 519 B

#include <iostream> using namespace std; int main() { int i, n; bool is_prime = true; cout << "Enter a positive

LeetCode - Double a Number Represented as a Linked List - Go | Owner: abh | Views: 64 | Comments: 0 | Open/ Source 801 B

// @leet start /** * Definition for singly-linked list. * type ListNode struct { * Val int * Next *ListNode *

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

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

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

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

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

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

index.html | Owner: cody | Views: 213 | Comments: 0 | Open/ Source 10.52 KB

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

index.html | Owner: cody | Views: 214 | Comments: 0 | Open/ Source 561 B

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

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

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

index_socials.html | Owner: cody | Views: 233 | Comments: 0 | Open/ Source 1.74 KB

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

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

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

| Owner: djdj | Views: 5 | Comments: 0 | Open/ Source 1.76 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: 125 | Comments: 0 | Open/ Source 315 B

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

tribute.html | Owner: tanishkak | Views: 427 | Comments: 0 | Open/ Source 4.14 KB

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

OS Assignment 2 | Owner: djdj | Views: 762 | Comments: 0 | Open/ Source 6.57 MB

index.html | Owner: cody | Views: 267 | Comments: 0 | Open/ Source 4.95 KB

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Drag & drop</title> <link rel=

index.html | Owner: cody | Views: 213 | Comments: 0 | Open/ Source 425 B

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

While-loop.php | Owner: djdj | Views: 285 | Comments: 0 | Open/ Source 99 B

<?php //while loop $i = 1; while($i<=10){ echo $i. "\n"; $i++; } ?>

bisection_method.py | Owner: djdj | Views: 326 | Comments: 0 | Open/ Source 709 B

from math import* def fun(x): return(x**3-4*x-9) def bisection(x0,x1): i=1 for _ in range(max): x2 =

index.html | Owner: cody | Views: 210 | Comments: 0 | Open/ Source 1.37 KB

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

LeetCode - Apply Operations to an Array - Python | Owner: abh | Views: 127 | Comments: 0 | Open/ Source 285 B

class Solution: def applyOperations(self, nums: List[int]) -> List[int]: for i in range(len(nums)-1):

52.txt | Owner: coderai | Views: 211 | Comments: 0 | Open/ Source 964 B

* **Community Support:** Ask questions, seek assistance, and share insights with fellow TXQL enthusiasts. * **Knowledge Sharin

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

Rock Paper Scissors Game in Kotlin | Owner: demo | Views: 353 | Comments: 0 | Open/ Source 1.04 KB

import java.util.Random fun main() { val options = arrayOf("Rock", "Paper", "Scissors") while (true) { p

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

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

42.txt | Owner: coderai | Views: 226 | Comments: 0 | Open/ Source 4.19 KB

```python def sum_of_numbers(numbers): """ This function takes a list of numbers and returns the sum of the numbers. Args

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

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

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

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

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

Routine Checkup | Owner: djdj | Views: 5 | Comments: 0 | Open/ Source 5.41 KB

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

index.html | Owner: cody | Views: 234 | Comments: 0 | Open/ Source 2.15 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 681 B

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

login.html | Owner: dakshbadal1379 | Views: 150 | Comments: 0 | Open/ Source 2.53 KB

<!DOCTYPE html> <html> <head> <title>Register</title> <link rel="preconnect" href="https://fonts.googleapis.com"> <link

index.html | Owner: cody | Views: 240 | Comments: 0 | Open/ Source 707 B

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

20.txt | Owner: coderai | Views: 223 | Comments: 0 | Open/ Source 1.16 KB

* **Username:** @coderai * **Bio:** AI-powered coding assistant that helps developers write better code faster. * **Repositorie

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

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

Snake.html | Owner: amar | Views: 339 | Comments: 0 | Open/ Source 5.33 KB

<canvas id="gc" width="600" height="600"></canvas> <script> window.onload=function() { canv=document.getElementById("gc");

LeetCode - Max Sum of a Pair With Equal Sum of Digits - Python | Owner: abh | Views: 101 | 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: 212 | Comments: 0 | Open/ Source 598 B

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

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

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

| 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 - Number of Senior Citizens - Python | Owner: abh | Views: 160 | Comments: 0 | Open/ Source 155 B

class Solution: def countSeniors(self, details: List[str]) -> int: return len(list(filter(lambda p: p>60, [int(p[1

Divs ka jol mal | Owner: djdj | Views: 2 | Comments: 0 | Open/ Source 4.87 KB

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

admin login.html | Owner: sachinthakur | Views: 258 | Comments: 0 | Open/ Source 3.73 KB

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

LeetCode - Count Good Triplets - Ruby | Owner: abh | Views: 75 | Comments: 0 | Open/ Source 549 B

# @leet start # @param {Integer[]} arr # @param {Integer} a # @param {Integer} b # @param {Integer} c # @return {Integer}

Q29_Divide_Two_Integers.py | Owner: djdj | Views: 292 | Comments: 0 | Open/ Source 222 B

class Solution { function divide($dividend, $divisor) { if(intval($dividend/$divisor) > 2**31-1){ return

| Owner: djdj | Views: 11 | Comments: 0 | Open/ Source 2.56 KB

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

MySQL-Databases-Connection.php | Owner: djdj | Views: 298 | Comments: 0 | Open/ Source 556 B

<?php //Database Connection /*There are two ways to connect to My SQL Database 1. MySQLi extension (for use only m

DBMS Practical File | Owner: djdj | Views: 556 | 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: 246 | 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: 213 | Comments: 0 | Open/ Source 1.5 KB

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

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

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

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

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

34.txt | Owner: coderai | Views: 201 | Comments: 0 | Open/ Source 1.22 KB

* **Name:** CoderAI * **Industry:** Software Development * **Headquarters:** San Francisco, California * **Year Founded:** 2016

13.txt | Owner: coderai | Views: 236 | 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

32.txt | Owner: coderai | Views: 201 | 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

Profile Card | Owner: cody | Views: 267 | Comments: 0 | Open/ Source 1.19 KB

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

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

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

new.css | Owner: itintern | Views: 67 | Comments: 0 | Open/ Source 12.0 KB

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

index.html | Owner: cody | Views: 212 | Comments: 0 | Open/ Source 1.35 KB

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

Q1050_Actor_and_Directors)Who_Cooperated_At_Least_Three_Times.sql | Owner: djdj | Views: 292 | Comments: 0 | Open/ Source 121 B

select actor_id,director_id from ActorDirector group by actor_id, director_id Having count(actor_id = director_id) >=3;

index.html | Owner: cody | Views: 231 | Comments: 0 | Open/ Source 542 B

<!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title>Flappy Bird</title> <link rel="sty

LeetCode - Majority Element - Python | Owner: abh | Views: 141 | Comments: 0 | Open/ Source 191 B

class Solution: def majorityElement(self, nums: List[int]) -> int: f = int(len(nums)/2) for n in set(nums

index.html | Owner: cody | Views: 202 | Comments: 0 | Open/ Source 1.94 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: 214 | Comments: 0 | Open/ Source 866 B

<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Word Guess Game</title> <link rel="stylesheet" href