Dashboard Temp Share Shortlinks Frames API

HTMLify your dreams


mingw-get-setup.exe /djdj/mingw-get-setup.exe
409 Views
0 Comments
Media file
index.html /cody/bradtraversy/50projects50days/feedback-ui-design/index.html
342 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, in
ncr.py /abh/def/ncr.py
502 Views
0 Comments
def ncr(n, r):
numerator = 1
denominator = 1
for i in range(r):
numerator *= n - i
denominator *= i
Weather checker /amar/Weather.html
433 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, init
gasp.mp3 /cody/bradtraversy/50projects50days/sound-board/sounds/gasp.mp3
138 Views
0 Comments
Media file
LeetCode - Maximum Strong Pair XOR I - Go /abh/lc/2932.go
281 Views
0 Comments
func abs(n int) int {
if n < 0 {
return n*-1
}
return n
}
func maximumStrongPairXor(nums []int) int {
4.png /cody/swapnilsparsh/30DaysOfJavaScript/208 - Pig Dice Game/assets/4.png
146 Views
0 Comments
Media file
black-pawn.png /cody/69PercentFat/Js-Chess/img/black-pawn.png
168 Views
0 Comments
Media file
float_parser.js /cody/lassiecoder/mutual-funding-app/server/node_modules/bson/lib/bson/float_parser.js
1 Views
0 Comments
// Copyright (c) 2008, Fair Oaks Labs, Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, wit
Create-some-new.php /djdj/php//Programs/Create-some-new.php
154 Views
0 Comments
<?php

$add = false;
$update = false;
$delete = false;
// Connecting to the Db
$servername = "localhost";
index.html /cody/atherosai/ui/socials-02/index.html
440 Views
0 Comments

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Social Buttons</title>
<meta
is_perfect_square.py /abh/def/is_perfect_square.py
458 Views
0 Comments
def is_perfect_square(n):
sqrt = int(n ** 0.5)
return sqrt * sqrt == n

index.html /cody/frontendcharm/Mini-Projects/MENUS/Hamburger Icon MI Series/Hamburger Icon - 12/index.html
397 Views
0 Comments
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<ti
bg.jpeg /cody/swapnilsparsh/30DaysOfJavaScript/94 - Windows 11 Clone/bg.jpeg
140 Views
0 Comments
Media file
index.html /cody/frontendcharm/Mini-Projects/LOADERS/Spinning Torus Knot Using Three.js/index.html
411 Views
0 Comments
<!DOCTYPE html>
<html>

<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>S
LeetCode - Count the Digits That Divide a Number - Python /abh/lc/2520.py
322 Views
0 Comments
class Solution:
def countDigits(self, num: int) -> int:
return len(list(filter(lambda n:not num%n,[int(n)for n in
Sticker Wall /sticker-archive/wall.html
165 Views
0 Comments
<script>
fetch("./stickers.json")
.then(res => res.json())
.then(data => {
// shuffle
for (let i = data.
calculating-factorial.cpp /demo/code/calculating-factorial.cpp
630 Views
0 Comments
#include <iostream>
using namespace std;

int factorial(int n) {
if (n <= 1)
return 1;
return n * factoria
README.md /cody/lassiecoder/mutual-funding-app/server/node_modules/merge-descriptors/README.md
9 Views
0 Comments
# Merge Descriptors

[![NPM Version][npm-image]][npm-url]
[![NPM Downloads][downloads-image]][downloads-url]
[![Build Status][tr
maincard2.jpg /cody/swapnilsparsh/30DaysOfJavaScript/69 - Food Delivery Site/maincard2.jpg
168 Views
0 Comments
Media file
package.json /cody/Khushigupta8/Hotel-Management-Webpage/node_modules/mime-types/package.json
146 Views
0 Comments
{
"name": "mime-types",
"description": "The ultimate javascript content-type utility.",
"version": "2.1.35",
"contributo
is_perfect_square.py /abh/def/TESTS/is_perfect_square.py
796 Views
0 Comments
TESTCASES = [
{
"positional": (2,),
"keyword": {},
"return": False,
"msg": "",
},
{
validate_collection.js /cody/lassiecoder/mutual-funding-app/server/node_modules/mongodb/lib/operations/validate_collection.js
4 Views
0 Comments
'use strict';

const CommandOperation = require('./command');

class ValidateCollectionOperation extends CommandOperation {
co
4.png /djdj/djupraity/djsangeet/4.png
471 Views
0 Comments
Media file
logo_1.png /cody/swapnilsparsh/30DaysOfJavaScript/104 - Catch Me If You Can/img/logo_1.png
135 Views
0 Comments
Media file
email.svg /cody/atherosai/ui/login-03/assets/email.svg
304 Views
0 Comments
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-at" width="24" height="24" viewBox="0 0 24 24" strok
b0bcdb10.webp /sticker-archive/stickers/b0bcdb10.webp
110 Views
0 Comments
Media file
app_icon_128.png /cody/PrakharDoneria/Tic-Tac-Toe-Flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png
136 Views
0 Comments
Media file
style.css /cody/swapnilsparsh/30DaysOfJavaScript/188 - Resume Builder/css/style.css
171 Views
0 Comments
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-image: linear-gradient(rgb(3, 3, 3),rgb(56,
index.html /cody/vishal-dcode/Button Ink Effect/index.html
141 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge"
utils.tsx /cody/atherosai/ui/react-examples/lib/utils.tsx
332 Views
0 Comments
export const get = (obj: Record<string, any>, path: string, def?: any): any => {
if (obj == null) {
return def;
}