This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$grid-gutter: 20px; | |
$grid-columns: 12; | |
$grid-size-names: xxs, xs, sm, md, lg; | |
$grid-size: 0, 480px, 720px, 900px, 1080px; | |
$xs: 480px; | |
$sm: 720px; | |
$md: 900px; | |
$lg: 1080px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Checklist (remove before placing PR) | |
[ ] Specs (if applicable) | |
[ ] Documentation (if applicable) | |
[ ] Visual (Screenshot / GIF / mp4) of new feature (if applicable) | |
## PR Description: | |
**JIRA Issue**: [EXAMPLE-XXX](https://EXAMPLE.atlassian.net/browse/EXAMPLE-XXX) | |
`this` containing `that` was emitting errors. That has now been fixed :) | |
## Changelog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="/Users/remylagerweij/.oh-my-zsh" | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, | |
# to know which specific one was loaded, run: echo $RANDOM_THEME | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" version="2.0"> | |
<channel> | |
<title>Podcast Title</title> | |
<atom:link href="https://www.mypodcastfeed.com/feed/podcast/" rel="self" type="application/rss+xml" /> | |
<link>https://www.podcasturl.com</link> | |
<description>Podcast description</description> | |
<lastBuildDate>Fri, 19 Jan 2018 01:45:39 +0000</lastBuildDate> | |
<language>en-US</language> | |
<copyright /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let people_list = []; | |
(function(){ | |
const person_naam = '.actor-name'; | |
const person_title = '.subline-level-1'; | |
const person_location = '.subline-level-2'; | |
const person_job_function = '.mt2.t-12.t-black--light.t-normal.search-result__snippets-black'; | |
function getAttribute(person, attribute){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* needs some finalisation for implementation, but basicly accepts 2 divs, .spinner-wrapper with the .spinner chile within it. */ | |
.spinner-wrapper{ | |
&::before{ | |
content:""; | |
position:absolute; | |
background:linear-gradient(112deg, #9894c8, #373570); | |
width:300px; | |
height:300px; | |
left:50%; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@use 'sass:math' | |
$darken-value: 5% | |
$darkest-value: 10% | |
$lighten-value: 5% | |
$lightest-value: 10% | |
$primary: #1684c3 | |
$secondary: #443731 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async function getClientIp() { | |
try { | |
const response = await fetch('https://api.ipify.org?format=json'); | |
const data = await response.json(); | |
console.log(data.ip); | |
} catch (error) { | |
console.error('Error fetching the IP address:', error); | |
} | |
} |