Dashboard Temp Share Shortlinks Frames API

HTMLify your dreams


index.html /cody/bradtraversy/50projects50days/password-generator/index.html
442 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, in
license.md /cody/lassiecoder/mutual-funding-app/server/node_modules/send/node_modules/ms/license.md
40 Views
0 Comments
The MIT License (MIT)

Copyright (c) 2016 Zeit, Inc.

Permission is hereby granted, free of charge, to any person obtaining a co
forest-resized.jpg /cody/atherosai/ui/cards-04/assets/forest-resized.jpg
290 Views
0 Comments
Media file
schema.js /cody/lassiecoder/mutual-funding-app/server/node_modules/mongoose/lib/schema.js
35 Views
0 Comments
'use strict';

/*!
* Module dependencies.
*/

const EventEmitter = require('events').EventEmitter;
const Kareem = require('kar
logout.php /djdj/php//Programs/System/hash_password/logout.php
155 Views
0 Comments
<?php
session_start();
if(!isset($_SESSION['loggedin']) || $_SESSION['loggedin'] != true){
header("location:logi
script.js /cody/solygambas/html-css-javascript-projects/067-expense tracker/script.js
277 Views
0 Comments
const balance = document.getElementById("balance");
const moneyPlus = document.getElementById("money-plus");
const moneyMinus =
Q258_Add_Digits.rs /djdj/me/problems/leetcode/Q258_Add_Digits.rs
609 Views
0 Comments
impl Solution {
pub fn add_digits(num: i32) -> i32 {
if(num==0){
return 0;
}
return (num
Day 122 /djdj/challange/day122.php
31 Views
0 Comments
class Solution(object):
def multiply(self, num1, num2):
num1 = int(num1)
num2 = int(num2)
a = num1 *
style.css /cody/frontendcharm/Mini-Projects/CUSTOM ANIMATIONS/Overlapping Text Effect/style.css
283 Views
0 Comments
html {
color-scheme: dark;
background: #151515;
}

h1 {
text-align: center;
font-size: 16vmin;
_stream_transform.js /cody/lassiecoder/mutual-funding-app/server/node_modules/readable-stream/lib/_stream_transform.js
19 Views
0 Comments
// Copyright Joyent, Inc. and other Node contributors.
//
// Permission is hereby granted, free of charge, to any person obtaini
logout.svg /cody/atherosai/ui/dropdown-menu-01/assets/logout.svg
347 Views
0 Comments
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.749 6C15.749 6.9945
/itintern/WDD/task-2.html
5 Views
0 Comments
File is locked
script.js /cody/bradtraversy/50projects50days/auto-text-effect/script.js
204 Views
0 Comments
const textEl = document.getElementById('text')
const speedEl = document.getElementById('speed')
const text = 'We Love Programmin
meditation.mp3 /cody/swapnilsparsh/30DaysOfJavaScript/138 - Meditation WebApp/assets/audio/meditation.mp3
273 Views
0 Comments
Media file
Readme.md /cody/lassiecoder/mutual-funding-app/server/node_modules/path-to-regexp/Readme.md
78 Views
0 Comments
# Path-to-RegExp

Turn an Express-style path string such as `/user/:name` into a regular expression.

**Note:** This is a legacy
72e61ef7.webp /sticker-archive/stickers/72e61ef7.webp
366 Views
0 Comments
Media file
index.html /cody/swapnilsparsh/30DaysOfJavaScript/98 - Loan Calculator/index.html
512 Views
0 Comments
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initi
implementation.js /cody/Khushigupta8/Hotel-Management-Webpage/node_modules/function-bind/implementation.js
178 Views
0 Comments
'use strict';

/* eslint no-invalid-this: 1 */

var ERROR_MESSAGE = 'Function.prototype.bind called on incompatible ';
var toStr
Create-some-new.php /djdj/php/Programs/Create-some-new.php
898 Views
0 Comments
<?php

$add = false;
$update = false;
$delete = false;
// Connecting to the Db
$servername = "localhost";
index.js /cody/Khushigupta8/Hotel-Management-Webpage/node_modules/define-data-property/index.js
176 Views
0 Comments
'use strict';

var hasPropertyDescriptors = require('has-property-descriptors')();

var GetIntrinsic = require('get-intrinsic');
index.html /cody/swapnilsparsh/30DaysOfJavaScript/106 - Student Grade Calculator/index.html
486 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">

ch12.jpg /cody/swapnilsparsh/30DaysOfJavaScript/83 - Guess Who Game/images/ch12.jpg
264 Views
0 Comments
Media file
script.js /cody/bradtraversy/50projects50days/hoverboard/script.js
144 Views
0 Comments
const container = document.getElementById('container')
const colors = ['#e74c3c', '#8e44ad', '#3498db', '#e67e22', '#2ecc71']
co
index.html /huxn-webdev/HTML-CSS-JavaScript-100-Projects/21. Random Emojies/index.html
136 Views
0 Comments
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta nam
form.html /priyanka/form.html
850 Views
0 Comments

<html>
<head>
<title>frame</title></head>
<form>
<body bgcolor="lightcyan">
Name:<input type="text" Name ="firstname"size
e4496d1a.webp /sticker-archive/stickers/e4496d1a.webp
256 Views
0 Comments
Media file
style.css /cody/swapnilsparsh/30DaysOfJavaScript/67 - Currency Converter/style.css
202 Views
0 Comments
* {
box-sizing: border-box;
}
body {

font-family: Arial, Helvetica, sans-serif;
display: flex;
flex-direct
Signup.js /cody/lassiecoder/mutual-funding-app/client/src/component/screens/Signup.js
13 Views
0 Comments
import React, {useState} from 'react'
import {Link, useHistory} from 'react-router-dom'
import Materialize from 'materialize-css
char_frequency.py /abh/def/char_frequency.py
560 Views
0 Comments
def char_frequency(string):
freq = {}
for c in string:
freq[c] = freq.get(c,0)+1
return freq

First Design /djdj/Home/1.html
335 Views
0 Comments
<iframe src="https://planner5d.onelink.me/stDT/tkluh4yr" style="width:100%;height:100%;border:none;" allowfullscreen></iframe>
readme /cody/swapnilsparsh/30DaysOfJavaScript/127 - Armstrong Checker/readme
451 Views
0 Comments


header_desktop.dart /cody/iCriptSnappie/flutter_portfolio/lib/widgets/header_desktop.dart
232 Views
0 Comments
import 'package:flutter/material.dart';
import 'package:my_portfolio/constants/colors.dart';
import 'package:my_portfolio/consta