Dashboard Temp Share Shortlinks Frames API

HTMLify your dreams


LeetCode - Number Complement - Python /abh/lc/476.py
477 Views
0 Comments
class Solution:
def findComplement(self, num: int) -> int:
b = bin(num)[2:]
b = b.replace("0", "2")

Day 24 /djdj/challange/day24.sql
142 Views
0 Comments
# Write your MySQL query statement below
SELECT w1.id
FROM Weather w1
JOIN Weather w2
ON DATEDIFF(w1.recordDate, w2.recordDate
bangalorevenue2.jpg /ahmads_codes/Marriage Hall Booking/bangalorevenue2.jpg
166 Views
0 Comments
Media file
LeetCode - Number of Lines To Write String - Go /abh/lc/806.go
468 Views
0 Comments
func numberOfLines(widths []int, s string) []int {
var line, lw int
line = 1
for _, c := range s {
w :=
index.html /cody/solygambas/html-css-javascript-projects/013-random choice picker/index.html
580 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, in
is_consonant.py /abh/def/is_consonant.py
611 Views
0 Comments
def is_consonant(char):
consonants = [
"b", "c", "d", "f", "g", "h",
"j", "k", "l", "m", "n", "p",
"
inspector-log.js /cody/lassiecoder/mutual-funding-app/server/node_modules/debug/src/inspector-log.js
32 Views
0 Comments
module.exports = inspectorLog;

// black hole
const nullStream = new (require('stream').Writable)();
nullStream._write = () => {
jio-phone-wallpaper /amar/0.png
383 Views
0 Comments
Media file
arrow.png /huxn-webdev/HTML-CSS-JavaScript-100-Projects/29. Select Menu/images/arrow.png
33 Views
0 Comments
Media file
LeetCode - Maximum Score After Splitting a String - Python /abh/lc/1422.py
594 Views
0 Comments
class Solution:
def maxScore(self, s: str) -> int:
maxscore = 0
for i in range(1, len(s)):
l
F_Drum.wav /cody/swapnilsparsh/30DaysOfJavaScript/92 - Casio/Music_Note/F_Drum.wav
354 Views
0 Comments
Media file
size.dart /cody/iCriptSnappie/flutter_portfolio/lib/constants/size.dart
346 Views
0 Comments
const double kMinDesktopWidth = 600.0;
const double kMedDesktopWidth = 800.0;
write_a_function.py /djdj/me/problems/hackerrank/write_a_function.py
627 Views
0 Comments
def is_leap(year):
leap = False
return leap

year = int(input())
print(is_leap(year))

package.json /cody/lassiecoder/mutual-funding-app/server/node_modules/forwarded/package.json
152 Views
0 Comments
{
"name": "forwarded",
"description": "Parse HTTP X-Forwarded-For header",
"version": "0.1.2",
"contributors": [
"Do
index.js /cody/lassiecoder/mutual-funding-app/server/node_modules/etag/index.js
36 Views
0 Comments
/*!
* etag
* Copyright(c) 2014-2016 Douglas Christopher Wilson
* MIT Licensed
*/

'use strict'

index.html /learnearn-fun/HTML-Projects/Survey Form/index.html
310 Views
0 Comments
<link rel= stylesheet href="styles.css"/>
<div class="container">
<header class="header">
<h1 id="title" class="text-cente
item-2.jpeg /cody/swapnilsparsh/30DaysOfJavaScript/85 - Menu Filter/images/item-2.jpeg
349 Views
0 Comments
Media file
index.js /cody/swapnilsparsh/30DaysOfJavaScript/111 - BMI Calculator/index.js
310 Views
0 Comments
function calc() {
let num1 = Number(document.querySelector("#num1").value); // reads the value of the input type text
le
package.json /cody/lassiecoder/mutual-funding-app/server/node_modules/statuses/package.json
61 Views
0 Comments
{
"name": "statuses",
"description": "HTTP status utility",
"version": "1.5.0",
"contributors": [
"Douglas Christoph
pngegg (1).png /djdj/ITintern/Akhilkap124/task3/assets/pngegg (1).png
289 Views
0 Comments
Media file
README.md /cody/lassiecoder/mutual-funding-app/server/node_modules/regexp-clone/README.md
215 Views
0 Comments
#regexp-clone
==============

Clones RegExps with flag and `lastIndex` preservation.

```js
const regexpClone = require('regexp-
typing - Copy (2).png /cody/MuthuPandi-1963/Typing_Prowess/typing - Copy (2).png
324 Views
0 Comments
Media file
index.js /cody/lassiecoder/mutual-funding-app/server/node_modules/regexp-clone/test/index.js
40 Views
0 Comments

const assert = require('assert')
const clone = require('../');

describe('regexp-clone', function(){
function hasEqualSource
README.md /cody/Khushigupta8/Hotel-Management-Webpage/node_modules/etag/README.md
482 Views
0 Comments
# etag

[![NPM Version][npm-image]][npm-url]
[![NPM Downloads][downloads-image]][downloads-url]
[![Node.js Version][node-version
Zoro /light/v54w0demt3
685 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, in
style.css /cody/atherosai/ui/dropdown-menu-05/style.css
244 Views
0 Comments
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

:root {
--primary: #000000;
--backgroun
565e45e8.webp /sticker-archive/stickers/565e45e8.webp
405 Views
0 Comments
Media file
app_icon_32.png /cody/PrakharDoneria/Tic-Tac-Toe-Flutter/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png
312 Views
0 Comments
Media file
app.js /huxn-webdev/HTML-CSS-JavaScript-100-Projects/100. Wikipedia Clone/app.js
106 Views
0 Comments
const searchForm = document.getElementById("search-form");
const searchInput = document.getElementById("search-input");
const se
Day 19 /djdj/challange/day19.sql
154 Views
0 Comments
/*
https://leetcode.com/problems/second-highest-salary/
*/

# Write your MySQL query statement below
select
(select distinct
tokens.c /abh/learning/c/BPPL/Phase-2/command_parser/tokens.c
357 Views
0 Comments
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include "tokens.h"

Variable *Variables =
app.js /cody/vishal-dcode/Testimonial Box Switcher/app.js
154 Views
0 Comments
const testimonialsContainer = document.querySelector(".testimonials-container");
const testimonial = document.querySelector(".te