Animated hamburger menu. It transforms into a close icon when clicked.
A Pen by Husni Munaya on CodePen.
/* | |
* CloudSim Plus: A modern, highly-extensible and easier-to-use Framework for | |
* Modeling and Simulation of Cloud Computing Infrastructures and Services. | |
* http://cloudsimplus.org | |
* | |
* Copyright (C) 2015-2021 Universidade da Beira Interior (UBI, Portugal) and | |
* the Instituto Federal de Educação Ciência e Tecnologia do Tocantins (IFTO, Brazil). | |
* | |
* This file is part of CloudSim Plus. | |
* |
#!/usr/bin/env python3 | |
import subprocess | |
import time | |
import os | |
import json | |
from datetime import datetime | |
def get_memory_usage(pid): | |
try: |
import { | |
createContext, | |
ReactNode, | |
useContext, | |
useEffect, | |
useState, | |
} from "react"; | |
import { initializeApp, getApps, getApp, FirebaseApp } from "firebase/app"; | |
import { getFirestore, Firestore } from "firebase/firestore/lite"; | |
import { Auth, getAuth, User } from "firebase/auth"; |
#include <stdio.h> | |
#include <math.h> | |
#include <stdlib.h> | |
typedef struct matrix | |
{ | |
size_t size; | |
int** values; | |
} matrix_t; |
#include <stdio.h> | |
int findBinary(int n) | |
{ | |
if (n == 0) | |
{ | |
return 0; | |
} | |
return (n % 2 + 10 * findBinary(n / 2)); |
We do not store any user data. |
[[1.5,2046.5],[1.5,2031.5],[1.5,2016.5],[1.5,2001.5],[1.5,1986.5],[1.5,276.5],[1.5,261.5],[1.5,246.5],[1.5,216.5],[16.5,2046.5],[16.5,2031.5],[16.5,2016.5],[16.5,2001.5],[16.5,1986.5],[16.5,276.5],[16.5,261.5],[16.5,246.5],[16.5,216.5],[31.5,2046.5],[31.5,2031.5],[31.5,2016.5],[31.5,2001.5],[31.5,1986.5],[31.5,276.5],[31.5,261.5],[46.5,2046.5],[46.5,2031.5],[46.5,2016.5],[46.5,2001.5],[46.5,1986.5],[46.5,276.5],[46.5,261.5],[61.5,2046.5],[61.5,2031.5],[61.5,2016.5],[61.5,2001.5],[61.5,1986.5],[61.5,426.5],[61.5,276.5],[61.5,261.5],[76.5,2046.5],[76.5,2031.5],[76.5,2016.5],[76.5,2001.5],[76.5,1986.5],[76.5,291.5],[76.5,276.5],[76.5,261.5],[91.5,2046.5],[91.5,2031.5],[91.5,2016.5],[91.5,2001.5],[91.5,1986.5],[91.5,336.5],[91.5,276.5],[91.5,261.5],[106.5,2046.5],[106.5,2031.5],[106.5,2016.5],[106.5,2001.5],[106.5,1986.5],[106.5,1971.5],[106.5,276.5],[121.5,2046.5],[121.5,2031.5],[121.5,2016.5],[121.5,2001.5],[121.5,1986.5],[121.5,1971.5],[121.5,306.5],[136.5,2046.5],[136.5,2031.5],[136.5,2016.5],[136.5,2001.5],[ |
[ | |
{ | |
"name": "Hartsfield-Jackson Atlanta Intl GA", | |
"icao": "KATL", | |
"coordinates": [ | |
-84.426944, | |
33.640444 | |
], | |
"flights": 95 | |
}, |
A Pen by Roman Milkovic on CodePen.