Skip to content

Instantly share code, notes, and snippets.

View lucylow's full-sized avatar
🎯

盧露 lucylow

🎯
  • non trivial
  • left as an exercise to the reader
  • X @lowlucy
View GitHub Profile
@lucylow
lucylow / index.pug
Created March 18, 2022 11:23
Settings Page
//- https://dribbble.com/shots/2342992-007-Settings
- var sidebarIcons = ['ion-person-stalker', 'ion-music-note', 'ion-image', 'ion-android-film', 'ion-social-dribbble-outline', 'ion-levels'];
- var navigationItems = ['Profile', 'Password', 'Notifications', 'Sync', 'Advanced'];
- var detailOptionItems = [{src: 'https://upload.wikimedia.org/wikipedia/commons/9/9b/Logo_of_Google_Drive.png', title: 'Google Drive', body: 'Configure to sync design and code files from Google Drive', }, {src: '', title: 'Dropbox Sync', body: 'Configure to sync design and code files from Dropbox', }, {src: 'https://upload.wikimedia.org/wikipedia/en/8/88/Adobe_Creative_Cloud_Logo.png', title: 'Adobe Creative Cloud', body: 'Configure to sync design and code files from Adobe Creative Cloud', }, {src: 'https://upload.wikimedia.org/wikipedia/commons/0/00/Box_cyan.png', title: 'Box', body: 'Configure to sync design and code files from Box', }, {src: 'https://upload.wikimedia.org/wikipedia/en/f/f0/ICloud_logo_%28new%29.png', title: 'iClou
@lucylow
lucylow / index.html
Created April 11, 2021 21:09
Title Text Animation
<section class="container">
<h1>
<span class="title">This is</span>
<span class="title">a long</span>
<span class="title">long title</span>
</h1>
<div class="button">restart</div>
</section>
@lucylow
lucylow / springer-free-maths-books.md
Created June 4, 2019 03:04 — forked from bishboria/springer-free-maths-books.md
Springer made a bunch of books available for free, these were the direct links
@lucylow
lucylow / map.geojson
Last active November 17, 2019 20:39
intheskywithdiamonds.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
// Program searches for a name given a long string. First by finding the first letter of the name, then adding the length of the name to an aaray and inspecting the aaray.
// Variables for long text string, name, and the aaray where answer will be stored
var text = "Hi, my name is Lucy. How are you doing?
var myName ="Lucy";
var hits= [];
// For loop searches the text by first letter of name
for(var i=0;i<text.length;i++){
// Program searches for a name given a long string. First by finding the first letter of the name, then adding the length of the name to an aaray and inspecting the aaray.
// Variables for long text string, name, and the aaray where answer will be stored
var text = "Hi, my name is Lucy.\
How are you doing?
var myName ="Lucy";
var hits= [];
// For loop searches the text by first letter of name
for(var i=0;i<text.length;i++){
// Program searches for a name given a long string. First by finding the first letter of the name, then adding the length of the name to an aaray and inspecting the aaray.
// Variables for long text string, name, and the aaray where answer will be stored
var text = "Hi, my name is Lucy.\
How are you doing?
var myName ="Lucy";
var hits= [];
// For loop searches the text by first letter of name
for(var i=0;i<text.length;i++){