HTMLify your dreams

Filter Options:
bisection_method.py djdj/me/method/bisection_method.py
362 Views
0 Comments
from math import*
def fun(x):
return(x**3-4*x-9)
def bisection(x0,x1):
i=1
for _ in range(max):
x2 = ( x0 + x1 ) / 2
print("\n So the root lie b/w the" ,x0, "and", x1)
djdj/djupraity/images/index.html
177 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Slider</title>
<link rel="stylesheet" href="style.css">
<style>
index.html cody/bradtraversy/50projects50days/progress-steps/index.html
211 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Progress Steps</title>
</head>
14.txt coderai/14.txt
266 Views
0 Comments

**1. Choose a programming language:** Start by selecting a programming language that aligns with your interests and goals. For beginners, languages like Python, Java, and JavaScript are widely recommended due to their accessibility and versatility.

**2. Find reliable learning resources:** Utilize online platforms like Codecademy, Coursera, and edX to access interactive courses and tutorials. These platforms offer structured learning paths and hands-on projects to enhance your understanding.

**3. Practice
Q50_Pow(x,n).py djdj/me/problems/leetcode/Q50_Pow(x,n).py
332 Views
0 Comments
def myPow(self, x, n):
return x ** n

welcome.php djdj/php//Programs/System/hash_password/welcome.php
109 Views
0 Comments
<?php
session_start();
if(isset($_SESSION['loggedin']) || $_SESSION['loggedin'] == true){
echo "welcome ".$_SESSION['username'];
}
?>

LeetCode - Random Pick Index - Python abh/lc/398.py
167 Views
0 Comments
from random import choice

class Solution:

def __init__(self, nums: List[int]):
self.nums = nums

def pick(self, target: int) -> int:
Image Cards.html shubh/Image Cards.html
462 Views
0 Comments
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Cards</title>
<style>
index.html cody/swapnilsparsh/30DaysOfJavaScript/165 - CatGame/index.html
248 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cat Game</title>
<link rel="stylesheet" href="style.css" />
Amar-engine.html amar/Amar-engine.html
307 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Amar's Engine</title>
<style>

auto text effect cody/bradtraversy/50projects50days/auto-text-effect/index.html
228 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Auto Text Effect</title>
</head>
djdj/ITintern/ALISHAMATHUR007/task2/index.html
7 Views
0 Comments
File is locked
LeetCode - Number of Laser Beams in a Bank - Python abh/lc/2125.py
295 Views
0 Comments
class Solution:
def numberOfBeams(self, bank: List[str]) -> int:
beams = 0
pre_lesers = 0
for floor in bank:
if floor.count("1") == 0:
continue
beams += pre_lesers * floor.count("1")
index.html cody/frontendcharm/Mini-Projects/MENUS/Menu Bar Opening Interaction/index.html
242 Views
0 Comments
<!DOCTYPE html>
<html>

<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Menu Bar Opening Interaction</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
redirect.js djdj/redirect.html
367 Views
0 Comments
<script>
location.href="https://dj.000.pe"
</script>
aneo.lua abh/nvim/lua/plugins/aneo.lua
87 Views
0 Comments
return {
{
"amanbabuhemant/aneo.nvim",
opts = {
}
}
}

hello-world.rs demo/code/hello-world.rs
427 Views
0 Comments
fn main() {
println!("Hello, World!");
}
index.html cody/swapnilsparsh/30DaysOfJavaScript/171 - AnalogDigital Clock/index.html
237 Views
0 Comments
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Analog Digital clock</title>
<link rel="stylesheet" href="./style.css">

</head>
index.html cody/techeonn/lifeline-Shradha-kapoor/shradha/index.html
253 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shradha my Love</title>
<link rel="stylesheet" href="style.css" />
</head>
23.txt coderai/23.txt
227 Views
0 Comments

[User] I need help writing marketing copy for a new AI-powered chatbot.

[Assistant] I can certainly assist you with writing marketing copy for your new AI-powered chatbot. Here are some key points to consider when crafting your marketing copy:

* **Highlight the unique benefits of your chatbot.** What sets it apart from other chatbots on the market?
* **Use strong calls to action.** Encourage potential customers to try your chatbot for themselves.
* **Provide social proof.** Share testimonials from satisf
boom himanshu/boom.html
293 Views
1 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Master Programmer Portfolio</title>
<style>
/* CSS Reset */
index.html cody/swapnilsparsh/30DaysOfJavaScript/151 - Type Writer Effect/index.html
256 Views
0 Comments
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Type Writer Effect</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
index.html cody/Shubhajiit/3D-Gallary/index.html
143 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Love Gallery</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Quicksand:wght@300;400;500&display=swap');
index.html cody/bradtraversy/50projects50days/double-vertical-slider/index.html
195 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" />
<link rel="stylesheet" href="style.css" />
<title>Vertical Slider</title>
drink water cody/solygambas/html-css-javascript-projects/016-drink water/index.html
292 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Drink Water</title>
</head>
index.html cody/swapnilsparsh/30DaysOfJavaScript/117 - Palindrome Checker/index.html
220 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Palindrome Checker</title>
<link rel="stylesheet" href="style.css">
LeetCode - Number of 1 Bits - Go abh/lc/191.go
188 Views
0 Comments
func hammingWeight(n int) int {
var w int
for ;n!=0; {
if n%2==1 {
w++
n--
} else {
n /= 2
index.html cody/atherosai/ui/table-02/index.html
275 Views
0 Comments

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Stocks Watchlist</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
index.html cody/frontendcharm/Mini-Projects/LOADERS/Ping Pong Loading Animation/index.html
230 Views
0 Comments
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Ping Pong Loading Animation</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
Brook light/bab3p8ozcq
8 Views
0 Comments
File is hidden
signup.php djdj/php//Programs/System/hash_password/signup.php
120 Views
0 Comments
<?php
// session_start();
// if(isset($_SESSION['loggedin']) || $_SESSION['loggedin'] == true){
// header('location:welcome.php');
// exit;
// }
$url = false;
$pass = false;
index.html cody/swapnilsparsh/30DaysOfJavaScript/116 - Simple Library Management/index.html
259 Views
0 Comments
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Online Library</title>
LeetCode - Check if a String Is an Acronym of Words - Go abh/lc/2828.go
120 Views
0 Comments
func isAcronym(words []string, s string) bool {
if len(words) != len(s) {
return false
}
for i, c := range s {
if byte(c) != words[i][0] {
return false
}
index_socials.html cody/atherosai/ui/tabs-05/index_socials.html
253 Views
0 Comments

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tabs Integrations</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Red Hat Font loading -->
LeetCode - Find the Array Concatenation Value - Go abh/lc/2562.go
98 Views
0 Comments
class Solution:
def findTheArrayConcVal(self, nums: List[int]) -> int:
n = 0
while nums:
f = nums.pop(0)
if nums:
l = nums.pop()
else:
cookies.php djdj/php//Programs/cookies.php
123 Views
0 Comments
<?php
//Cookies
setcookie('category','name',time() + 86400,'/');
echo 'cookies is set';
?>
itintern/quiz/quiz.html
63 Views
0 Comments
File is locked
test.html priyanka/test.html
426 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Job Portal</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="styles.css"> <!-- Include your custom CSS file here -->
LeetCode - Sort the People - Python abh/lc/2418.py
187 Views
0 Comments
class Solution:
def sortPeople(self, names: List[str], heights: List[int]) -> List[str]:
return [names[heights.index(h)] for h in sorted(heights, reverse=True)]
home.html shubh/home.html
412 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ITintern</title>
<link rel="stylesheet" href="home.css" />
<head>
index.html cody/solygambas/html-css-javascript-projects/093-creative portfolio/index.html
221 Views
0 Comments
<!-- Based on Design & Build A Website Crash Course by Simo Edwin - Dev Ed (2019)
see: https://www.youtube.com/watch?v=EwmvBnR_xtA (HTML & CSS)
https://www.youtube.com/watch?v=-elJSImGPAE (JavaScript Animations) -->

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
index.html cody/frontendcharm/Mini-Projects/LOADERS/Animated Loading Screen/index.html
214 Views
0 Comments
<!DOCTYPE html>
<html>

<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Animated Loading Screen</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
HEXADECIMAL TO DECIMAL BY SWITCH CASE sunny_jain/HEXADECIMAL_TO_DECIMAL_BY_SWITCH_CASE.C
247 Views
0 Comments
//hexadecimal to decimal by using switch case
#include<math.h>
#include<stdio.h>
#include<string.h>
int main() {
char hexdecnumber[32] = "2D";
int decimalnumber, i;
int cnt;
Signinbox3.html amar/06vnfj8m1q
226 Views
0 Comments
Media file
46.txt coderai/46.txt
242 Views
0 Comments

* **Take advantage of the community:** Engage with other users, ask questions, and share your knowledge.
* **Explore the documentation and tutorials:** Get familiar with the platform's features and functionalities.
* **Try different code generation tools:** Experiment with various models to find the best fit for your specific needs.
* **Utilize the debugging tools:** Enhance the accuracy and reliability of your code using the available debugging features.
* **Contribute to the knowledge base:** Share your
rahul verma c language program by vivek jain sir ji.c rahul_verma_coder/rahul verma c language program by vivek jain sir ji.c
212 Views
0 Comments
QUESTION 1
/* CALL BY value_
SWAP THE VALUE OF THE TWO VARIABLE
*/
#include<stdio.h>
#include<conio.h>
void main(){
int a,b;
Foreach-Loop.php djdj/php/Programs/Programs/Foreach-Loop.php
292 Views
0 Comments
<?php
// foreach loop in php
$arr = array('Apple','Banana','Grapes','Mango');

//this is a simply a for loop that use to print an value of array
for($i = 0; $i < count($arr); $i++){
echo $arr[$i]. "\n";
}
login.php djdj/php//Programs/System/hash_password/login.php
115 Views
0 Comments
<?php
// if(isset($_SESSION['loggedin']) || $_SESSION['loggedin'] = true){
// header("location:welcome.php");
// }

$pass = false;
$insert = false;
$login = false;
demo light/demo.html
151 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Demo</title>

<style>
T4 itintern/JAVA/JAVA0B/task-4.html
8 Views
0 Comments
File is locked
LeetCode - Reverse String - Python abh/lc/344.py
134 Views
0 Comments
class Solution:
def reverseString(self, s: List[str]) -> None:
"""
Do not return anything, modify s in-place instead.
"""
for i in range(len(s)//2): s[i], s[len(s)-1-i] = s[len(s)-i-1], s[i]
index.html cody/frontendcharm/Mini-Projects/CUSTOM ANIMATIONS/Confetti Text Effect/index.html
206 Views
0 Comments
<!DOCTYPE html>
<html>

<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title></title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
index.html cody/frontendcharm/Mini-Projects/BUTTONS/CheckCross Toggle Button MI/index.html
183 Views
0 Comments
<!DOCTYPE html>
<html>

<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>CheckCross Toggle Button Animation</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
I.html amar/J.html
42 Views
0 Comments
File is locked
index.html cody/ajay9368/clock/index.html
256 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
index.html cody/swapnilsparsh/30DaysOfJavaScript/02 - Clock/index.html
256 Views
0 Comments
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Clock</title>
index.html cody/frontendcharm/Mini-Projects/LOADERS/Bouncing Ball Animation/index.html
215 Views
0 Comments
<!DOCTYPE html>
<html>

<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Bouncing Ball MI</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
index.html cody/bradtraversy/50projects50days/password-strength-background/index.html
225 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/1.8.11/tailwind.min.css"
djdj/abh.php
243 Views
1 Comments
<?php
echo "hello abh";
?>
index.html cody/swapnilsparsh/30DaysOfJavaScript/203- N Queen Visualizer/index.html
256 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>N-Queen-Visualiser</title>
<link
rel="stylesheet"
is_even.py abh/def/is_even.py
378 Views
0 Comments
def is_even(n: int) -> bool:
if n == 1:
return False
if n == 0:
return True
return is_even(n-2)

def is_even(n: int) -> bool:
Q1757_Recyclable_and_Low_Fat_Products.sql djdj/me/problems/leetcode/Q1757_Recyclable_and_Low_Fat_Products.sql
393 Views
9 Comments
select product_id from Products
where low_fats = 'Y' and recyclable = 'Y'

index.html cody/swapnilsparsh/30DaysOfJavaScript/186 - Picture in Picture/index.html
245 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Picture in Picture</title>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="style.css">
PY0B T2 itintern/Python/PY0B/task-2.html
8 Views
0 Comments
File is locked
Zoro light/v54w0demt3
141 Views
0 Comments
Media file
Indic.html dakshbadal1379/8lz3t88wys
190 Views
0 Comments
Media file
index.html cody/atherosai/ui/login-03/index.html
278 Views
0 Comments


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login 03</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
addEventListener.html shubh/javascript/addEventListener.html
338 Views
0 Comments
//eventListener
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>event listener</title>
<style>
index.html cody/solygambas/html-css-javascript-projects/025-sticky navigation/index.html
282 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Sticky Navigation</title>
</head>
LeetCode - N-ary Tree Postorder Traversal - Go abh/lc/590.go
116 Views
0 Comments
/**
* Definition for a Node.
* type Node struct {
* Val int
* Children []*Node
* }
*/

Multi-Dieminsion-Array.php djdj/php/Programs/Multi-Dieminsion-Array.php
363 Views
0 Comments
<?php
//Multi Dieminsion Array
$md = array(
array(2,5,7,8),
array(1,2,3,1),
array(5,6,7,2));

echo var_dump($md); //for simple see thae array it gives all values of array
leetcode.lua abh/nvim/lua/plugins/leetcode.lua
180 Views
0 Comments
return {
{
"kawre/leetcode.nvim",
build = ":TSUpdate html", -- if you have `nvim-treesitter` installed
dependencies = {
"nvim-telescope/telescope.nvim",
-- "ibhagwan/fzf-lua",
"nvim-lua/plenary.nvim",
MySQL-Databases-Connection.php djdj/php/Programs/Programs/MySQL-Databases-Connection.php
322 Views
0 Comments
<?php
//Database Connection

/*There are two ways to connect to My SQL Database
1. MySQLi extension (for use only mysql db)
2. PDO (for use any db)
*/

index.html itintern/task4/index.html
8 Views
0 Comments
File is locked
signup 01 cody/atherosai/ui/signup-01/index.html
293 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Signup</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
index.html cody/swapnilsparsh/30DaysOfJavaScript/133 - Coin Toss Game/index.html
236 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito:ital@1&family=Roboto+Condensed:ital@1&family=Roboto+Mono&family=Rubik+Glitch&family=Source+Sans+Pro:wght@300;400&display=swap" rel="stylesheet">
LeetCode - Linked List Cycle - Go abh/lc/141.go
106 Views
0 Comments
/**
* Definition for singly-linked list.
* type ListNode struct {
* Val int
* Next *ListNode
* }
*/

bs1.html demo/render/bs1.html
416 Views
0 Comments
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap CSS Demo</title>
<!-- Add Bootstrap CSS from a CDN -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
</head>
<body>
post.html abh/post.html
394 Views
0 Comments
<!-- post.html -->
{% extends "base.html" %}
{% block title %}{{ post.title }}{% endblock %}
{% block meta %}{{ post.meta }}{% endblock %}
{% block body %}
<style>
body {
font-family: Arial, sans-serif;
index.html cody/swapnilsparsh/30DaysOfJavaScript/153 - Whatsapp Message Sender/index.html
265 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Whatsapp Message</title>
<link
T1 itintern/JAVA/JAVA0B/task-1.html
18 Views
0 Comments
File is locked
50.txt coderai/50.txt
250 Views
0 Comments

[Assistant: Sure, I can help you get started with Reddit. Here are a few tips:]

* [Start by creating an account. You can do this by visiting the Reddit website and clicking on the "Sign up" button.]
* [Once you have an account, you can start browsing subreddits. Subreddits are communities that are dedicated to specific topics. To find subreddits that interest you, you can use the search bar at the top of the page.]
* [When you find a subreddit that you like, you can subscribe to it. This will add it to yo
Game.html amar/Game.html
343 Views
0 Comments
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Go Biome</title>
index.html cody/solygambas/html-css-javascript-projects/017-movie app/index.html
303 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Movie App</title>
</head>
Manisha.html amar/Manisha.html
53 Views
0 Comments
File is locked
index.html cody/frontendcharm/Mini-Projects/CUSTOM ANIMATIONS/Scroll Down Mouse Icon Animation/index.html
198 Views
0 Comments
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Scroll Down Mouse Icon Animation</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
30 Days Of JavaScript cody/swapnilsparsh/30DaysOfJavaScript/index.html
287 Views
0 Comments
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="30DaysOfJavaScript/style.css" />
Last.html amar/Last.html
15 Views
1 Comments
File is locked
Q595_Big_Countries.sql djdj/me/problems/leetcode/Q595_Big_Countries.sql
346 Views
0 Comments
select name,population,area from World
where area >= 3000000 or population >= 25000000;

Resume Builder cody/swapnilsparsh/30DaysOfJavaScript/188 - Resume Builder/index.html
231 Views
0 Comments
<!DOCTYPE html>
<html lang="en">


<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
ui.h abh/learning/c/BPPL/Phase-3/chatbot/ui.h
3 Views
0 Comments
#include "chatbot.h"

typedef enum {
CHAT_SELECT_PAGE,
CHATING_PAGE,
} Page;

void draw_chat_select_page(ChatBot chatbots[], int cbc, int selected);
logout.php djdj/php//Programs/System/hash_password/logout.php
102 Views
0 Comments
<?php
session_start();
if(!isset($_SESSION['loggedin']) || $_SESSION['loggedin'] != true){
header("location:login.php");
}
else{
session_unset();
session_destroy();
Mitigate port scanning.py abh/Mitigate port scanning.py
367 Views
1 Comments
import subprocess
import re
import collections
import time

# Configurações
log_file = '/var/log/syslog'
threshold = 4
LeetCode - Invalid Tweets - MySQL abh/lc/1683.sql
346 Views
0 Comments
SELECT tweet_id FROM Tweets WHERE CHAR_LENGTH(content) > 15;
index.html cody/swapnilsparsh/30DaysOfJavaScript/109 - Third Degree Equation Solver/index.html
243 Views
0 Comments
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" href="./assets/css/bootstrap.css">
<link rel="stylesheet" href="./assets/css/style.css">
<title>Cubic Equation Calculator</title>
<script src="./scripts/app.js"></script>
<script src="./scripts/bootstrap.bundle.js"></script>
index.html cody/atherosai/ui/toolbar-02/index.html
276 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Toolbar Menu</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
nui.lua abh/nvim/lua/plugins/nui.lua
133 Views
0 Comments
return {
{
"MunifTanjim/nui.nvim",
commit = "8d3bce9764e627b62b07424e0df77f680d47ffdb"
}
}

LeetCode - Intersection of Two Arrays - Go abh/lc/349.go
130 Views
0 Comments
func contain(target int, arr []int) bool {
for _, v := range arr {
if v == target {
return true
}
}
return false
}
index.html cody/frontendcharm/Mini-Projects/MENUS/Hamburger Icon MI Series/Hamburger Icon - 09/index.html
224 Views
0 Comments
<!DOCTYPE html>
<html>

<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Hamburger Icon MI Series - 09</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
index.html cody/swapnilsparsh/30DaysOfJavaScript/195 - Stick Hero Game/index.html
253 Views
0 Comments
<!DOCTYPE html>
<html lang="en">

<!-- Mirrored from amazing-js-projects.netlify.app/stick hero game by yash-25log/ by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 20 May 2022 17:09:41 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
index.html cody/atherosai/ui/footer-04/index.html
273 Views
0 Comments

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Footer 04 Example</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
search input 01 cody/atherosai/ui/search-input-01/index.html
262 Views
0 Comments

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Input Search</title>
<link rel="stylesheet" href="style.css">
GLOWLOGINPAGE.HTML dakshbadal1379/GLOWLOGINPAGE.HTML
378 Views
0 Comments
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Login Page With Glow</title>
<link rel="stylesheet" type="text/css" href="glow.css">
</head>
user-files.html abh/HTMLify/templates/skeletons/user-files.html
323 Views
0 Comments
<!-- user-files.html -->
{% for file in files %}
{{ loop.index }}<a href=" {{ file.path }}">{{ file.name }}</a> {{ file.size }}<br>
{% endfor %}
LeetCode - Hash Divided String - Go abh/lc/3271.go
119 Views
0 Comments
func stringHash(s string, k int) string {
var result string
var chunk string
for _, c := range s {
chunk += string(c)
if len(chunk) == k {
var sum int
for _, char := range chunk {
Session_Get.php djdj/php//Programs/Session/Session_Get.php
135 Views
0 Comments
<?php
session_start();
if(isset($_SESSION['username'])){
echo "Welcome ". $_SESSION['username']. "\n";
}
else{
echo "please login <a href='http://localhost:3000/Session.php'>login</a>";
}
edgemax.html cody/ShubhamRoy123/Windows-10/edgemax.html
165 Views
0 Comments
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<title>windows10</title>
index.html cody/bradtraversy/50projects50days/live-user-filter/index.html
213 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Live User Filter</title>
</head>
index.html cody/swapnilsparsh/30DaysOfJavaScript/203 - PortfoliO/index.html
238 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<!-- <link rel="icon" href="%PUBLIC_URL%/favicon1.ico" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="Ashutosh's Portfolio"
What type of pokemon gym leader are you cody/wtopglau/index.html
502 Views
0 Comments
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FJVEN7W17S"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
LeetCode - Article Views I - MySQL abh/lc/1148.sql
377 Views
0 Comments
SELECT DISTINCT author_id AS id FROM Views WHERE author_id = viewer_id ORDER BY author_id;
index.html cody/swapnilsparsh/30DaysOfJavaScript/114 - Weight Converter/index.html
234 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weight Converter🎱</title>
<link rel="stylesheet" href="style.css">
index.html cody/solygambas/html-css-javascript-projects/010-dad jokes/index.html
257 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Dad Jokes</title>
</head>
index.html cody/bradtraversy/50projects50days/toast-notification/index.html
201 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Toast Notification</title>
</head>
check-prime.js demo/code/check-prime.js
192 Views
0 Comments
// program to check if a number is prime or not

// take input from the user
const number = parseInt(prompt("Enter a positive number: "));
let isPrime = true;

// check if number is equal to 1
if (number === 1) {
index.html cody/frontendcharm/Mini-Projects/HOVERS EFFECTS/Image Card Stack Hover Effect/index.html
205 Views
0 Comments
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Image Card Stack Hover Effect</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
logout.php djdj/php//Programs/System/logout.php
142 Views
0 Comments
<?php
session_start();
if(!isset($_SESSION['loggedin']) || $_SESSION['loggedin'] != true){
header("location:login.php");
}
else{
session_unset();
session_destroy();
djdj/2nd.html
464 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link rel="stylesheet" href="">
<style>
LeetCode - Hamming Distance - Go abh/lc/461.go
162 Views
0 Comments
func int_to_binary(n int) string {
var b string = ""
for ;n!=0; {
if n % 2 == 0 {
b = "0" + b
} else {
b = "1" + b
}
34.txt coderai/34.txt
235 Views
0 Comments

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

**Mission:**

djdj/file.html
16 Views
0 Comments
File is locked
pow.py abh/def/pow.py
338 Views
0 Comments
def pow(x, y: int):
p = 1
while y:
p *= x
y -= 1
return p

def pow(x, y):
index.html cody/frontendcharm/Mini-Projects/LOADERS/Pendulum Loader/index.html
186 Views
0 Comments
<!DOCTYPE html>
<html>

<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Pendulum Loader</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
func.py abh/def/TESTS/func.py
280 Views
0 Comments
TESTCASES = [
{ # test case structure
"positional": ("arguments", "in", "tuples",), # Positional arguments as Tuple
"keyword": {"keyword":"arguments"}, # Keyword arguments as Dictoery
"return": "retuen value", # Expected Return Value
"msg": "sample test case", # Message for Testcase (optinal)
},
{ #fus follow the same structure for every test case
LeetCode - Find Pivot Index - Go abh/lc/724.go
120 Views
0 Comments
func pivotIndex(nums []int) int {
var sum int
for _, n := range nums {
sum += n
}
var ls int = 0
for i, n := range nums {
if ls == sum - n - ls {
57.txt coderai/57.txt
239 Views
0 Comments

```html
<a href="/coderai">@coderai</a>
```

This line creates a link element with the following attributes:

* `href`: `/coderai` - The URL that the link points to.
search-result.html abh/HTMLify/templates/search-result.html
302 Views
0 Comments
<!-- search-result.html -->
<!DOCTYPE html>
<html>
<head>
<title>HTMLify Search - {{ q }}</title>
{% include "stylesheet.html" %}
<style>
</style>
LeetCode - Find Missing and Repeated Values - Go abh/lc/2965.go
123 Views
0 Comments
func sort(list []int) []int {
for i:=0; i<len(list); i++ {
for j:=i; j<len(list); j++ {
if list[j] < list[i] {
list[i], list[j] = list[j], list[i]
}
}
}