From https://dribbble.com/shots/7030667-Lightning-Pre-loader-animation
A Pen by Aaron Iker on CodePen.
| function getCacheSize(data, queries) { | |
| const n = data.length; | |
| const q = queries.length; | |
| const events = []; | |
| // TODO: add validations against constraints for inputs | |
| // Create events for data insertions and expirations | |
| for (let i = 0; i < n; i++) { | |
| const [startTime, ttl] = data[i]; |
| import { API_BASE_URL } from '@/constants' | |
| export interface HttpResponse<T> extends Response { | |
| parsedBody?: T | |
| } | |
| type PostPathGenerator = (basePath: string) => string | |
| export type HttpClient = <T>(req: RequestInfo) => Promise<HttpResponse<T>> |
| ### Keybase proof | |
| I hereby claim: | |
| * I am kunoacc on github. | |
| * I am kunoacc (https://keybase.io/kunoacc) on keybase. | |
| * I have a public key ASA8QM3uaE1-1sqBgEVGhs11D4GNw5LQcK97z9Ooc_fPewo | |
| To claim this, I am signing this object: |
| <div class="container"> | |
| <div class="row"> | |
| <div class="col-sm-6 col-md-4 col-md-offset-4"> | |
| <h1 class="text-center login-title">Sign in to continue to Bootsnipp</h1> | |
| <div class="account-wall"> | |
| <img class="profile-img" src="https://lh5.googleusercontent.com/-b0-k99FZlyE/AAAAAAAAAAI/AAAAAAAAAAA/eu7opA4byxI/photo.jpg?sz=120" | |
| alt=""> | |
| <form class="form-signin"> | |
| <input type="text" class="form-control" placeholder="Email" required autofocus> | |
| <input type="password" class="form-control" placeholder="Password" required> |