Skip to content

Instantly share code, notes, and snippets.

View gigiskarlett's full-sized avatar
👩‍💻
Catch me coding or traveling the world, I only do things I love xx

Gigi Skarlett gigiskarlett

👩‍💻
Catch me coding or traveling the world, I only do things I love xx
View GitHub Profile
@gigiskarlett
gigiskarlett / .js
Created May 22, 2020 05:03
Boiler Plate
<!DOCTYPE html>
<html lang="en">
<head>
<title>learn git with gigi codes</title>
<link rel="stylesheet" type="text/css" href="main.css" />
</head>
<body>
<form name="signup" action="/signup">
<div>
<label for="username">Username</label>
@gigiskarlett
gigiskarlett / Noirecoco.text
Created February 20, 2019 22:23
Noirecoco mission statement
Noire Coco was created by a beach lover who’s always on the search for swimwear for her next vacation.
I’ve always struggled on finding a nice swimwear and it seems that at times I stumbled upon having too many or too little options for pieces that I didn’t really like.
I wanted to create a page where finding a beautiful swimsuit for a reasonable price wouldn’t be a search down hundreds of pages.
I wanted to make beautiful swimwear with reasonable prices accessible to every women who finds
herselfer always on a quest when trying to find swimwear.
@gigiskarlett
gigiskarlett / Redux drills II
Created February 12, 2019 03:13
Redux drills II
https://glitch.com/edit/#!/kind-mandolin?path=src/index.js:10:5
https://glitch.com/edit/#!/decisive-advantage?path=src/components/interest-calculator.js:17:2
@gigiskarlett
gigiskarlett / Redux drills
Last active February 11, 2019 21:11
Redux drills
https://glitch.com/edit/#!/quiver-milkshake?path=src/reducers/index.js:10:17
https://glitch.com/edit/#!/phase-roadway?path=src/reducers/index.js:20:34
// Boring.
function abbrevName(name) {
[first, last] = name.toUpperCase().split(' ');
return first[0] + '.' + last[0];
}
// Chain them method calls!
function abbrevName(name) {
return name.toUpperCase()
@gigiskarlett
gigiskarlett / problem.md
Created February 5, 2019 21:31 — forked from Grae-Drake/problem.md
Recursive length of an array

Recursive length of an array

Write a recursive function to return the length of an array or list of integers without using array.length (JS) or the built-in len() function (Python).

The function signature you should use is:

function recursiveLen(arr, len = 0) {
  // Your code here.
}
@gigiskarlett
gigiskarlett / _problem.md
Created February 5, 2019 21:30 — forked from Grae-Drake/_problem.md
Find palindromes in a sentence

Find palindromes in a sentence

Given a string, write an algorithm to see how many words in the string are palindromes, then output the palindromes.

Input: 'Dad gave mom a Tesla as a racecar'

Output: ['Dad', 'mom', 'racecar']

@gigiskarlett
gigiskarlett / Communication drills II.text
Last active February 5, 2019 05:34
Communication drills II
https://glitch.com/edit/#!/tide-experience?path=src/components/surprise.js:23:5
https://glitch.com/edit/#!/lavish-icecream?path=src/components/output.js:1:0
@gigiskarlett
gigiskarlett / Component Drills II.txt
Last active February 5, 2019 05:33
Component Drills II
https://glitch.com/edit/#!/precious-library?path=src/components/navigation-bar.js:8:20
https://glitch.com/edit/#!/secret-catsup-1?path=src/components/address-book.js:26:2
https://glitch.com/edit/#!/rare-crocodile?path=src/components/surprise-button.js:4:35
@gigiskarlett
gigiskarlett / Communication drills.text
Last active February 5, 2019 06:05
Communication drills
https://glitch.com/edit/#!/unequaled-ocarina?path=src/components/surprise-button.js:4:43
https://glitch.com/edit/#!/chrome-seat?path=src/components/number-input.js:7:46