View bar-chart.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Grab the bar chart canvas | |
const barChartContext = document | |
.getElementById('js-bar-chart') | |
.getContext('2d'); | |
// Chart configuration | |
const config = { | |
type: 'bar', | |
data: { | |
// Chart data |
View charts.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap'); | |
* { | |
margin: 0; | |
box-sizing: border-box; | |
} | |
:root { | |
--primary-color: #0b0d60; | |
--app-white: #ffffff; |
View complete_todo_list_api_code.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// import express | |
const express = require('express'); | |
const app = express(); | |
//Parse URL-encoded bodies - Allows | |
app.use(express.urlencoded({ extended: true })); | |
app.use(express.json()); | |
// import cors | |
var cors = require('cors'); |
View products.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"id": "1", | |
"title": "Fjallraven - Foldsack No. 1 Backpack, Fits 15 Laptops", | |
"price": 109.95, | |
"description": "Your perfect pack for everyday use and walks in the forest. Stash your laptop (up to 15 inches) in the padded sleeve, your everyday", | |
"category": "men's clothing", | |
"image": "https://fakestoreapi.com/img/81fPKd-2AYL._AC_SL1500_.jpg" | |
}, |
View projectmailSender-2.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Import express into our project | |
const express = require("express"); | |
// Import multer | |
const multer = require("multer"); | |
// Creating an instance of express function | |
const app = express(); | |
// Import dotenv |
View Building the NFT Chain Radio Component
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState, useEffect } from "react"; | |
import Moralis from "moralis"; | |
import { NftSearchBar } from "../components/Nfts/NftSearchBar"; | |
import { NftCardContainer } from "../components/Nfts/NftCardContainer"; | |
export const NftExplore = ({ settheme }) => { | |
// 1. loading state | |
const [loading, setLoading] = useState(false); | |
// 2. The search query state |
View Map.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
import { MapContainer, Marker, Popup, TileLayer } from "react-leaflet"; | |
import { Icon } from "leaflet"; | |
export const Map = () => { | |
const position = [8.1386, 5.1026]; | |
const zoomLevel = 15; | |
const swimmingSpot = new Icon({ | |
iconUrl: "/images/computer-solid.svg", |
View final-projectmailSender.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Import express into our project | |
const express = require("express"); | |
// Import multer | |
const multer = require("multer"); | |
// Creating an instance of express function | |
const app = express(); | |
// Import dotenv |
View projectmailSender-1.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Import express into our project | |
const express = require("express"); | |
// Import multer | |
const multer = require("multer"); | |
// Creating an instance of express function | |
const app = express(); | |
// The port we want our project to run on |