Skip to content

Instantly share code, notes, and snippets.

View MohamedRajabMohammed's full-sized avatar

Mohamed Rajab Mohammed MohamedRajabMohammed

View GitHub Profile
function createTimer() {
clearInterval(interval);
count = 0;
numbersArea.style.transform = 'translateY(0)'
// other code goes here...
// interval = setInterval(() => {...
}
// create the interval that creates the timer
function createTimer() {
interval = setInterval(() => {
// 1. increment our count
count++;
// 2. calculate the offset and apply it
const offset = height * count;
// grab parts of our HTML
const countdownArea = document.querySelector('.countdown');
const numbersArea = document.querySelector('.numbers');
const resetBtn = document.querySelector('.reset');
// create an interval and counter
let interval;
let count = 0;
// calculate the height of our numbers
@MohamedRajabMohammed
MohamedRajabMohammed / countdown.css
Created July 21, 2020 23:49
Positioning the Countdown and Numbers
.countdown {
position: relative;
display: block;
text-indent: -9999px;
overflow: hidden;
margin-left: 6px;
}
.numbers {
position: absolute;
/_ button styles are here _/
button {
background: white;
border-radius: 5px;
border: none;
padding: 15px 30px;
font-size: 24px;
font-family: 'Muli';
display: block;
text-transform: uppercase;
<div>
<button class="next">
<span class="icon">👉</span>
Next Episode Starts in
<span class="countdown">
10
<span class="numbers">
<span>10</span>
<span>9</span>
<span>8</span>
import db
import scraper
import time
URL = "https://www.amazon.in/dp/B077Q42J32/"
def track():
details = scraper.get_product_details(URL)
result = ""
if details is None:
{
'asin': 'B077Q42J32',
'details': [
{
'name': 'Nokia 8.1 (Iron, 4GB RAM, 64GB Storage)',
'price': 19139.0,
'deal': False,
'url': 'https://www.amazon.in/dp/B077Q42J32',
'date': datetime.datetime(2019, 8, 7, 9, 51, 35, 648000)
},
def get_product_history(asin):
new = db["products"]
try:
find = new.find_one({"asin": asin}, {"_id": 0})
if find:
return find
except Exception as identifier:
print(identifier)
return None
def add_product_detail(details):
new = db["products"]
ASIN = details["url"][len(details["url"])-10:len(details["url"])]
details["date"] = datetime.datetime.utcnow()
try:
new.update_one(
{
"asin":ASIN