This file contains hidden or 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
/** | |
* Custom breakpoints | |
* | |
*/ | |
@custom-media --desktop-XL screen and (max-width: 1920px); | |
@custom-media --desktop-L screen and (max-width: 1440px); | |
@custom-media --desktop-M screen and (max-width: 1280px); | |
@custom-media --desktop-S screen and (max-width: 1080px); | |
@custom-media --desktop-XS screen and (max-width: 900px); |
This file contains hidden or 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
#!bin/bash | |
while true; do | |
firefox=$(ps aux | grep -v grep | grep -ci "firefox") | |
safari=$(ps aux | grep -v grep | grep -ci "safari") | |
opera=$(ps aux | grep -v grep | grep -ci "opera") | |
brave=$(ps aux | grep -v grep | grep -ci "brave") | |
chrome=$(ps aux | grep -v grep | grep -ci "chrome") | |
if [ $firefox -gt 0 ] | |
then |
This file contains hidden or 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
const crypto = require('crypto') | |
const url = require('url') | |
const fs = require('fs') | |
const http = require('http') | |
const express = require('express') | |
const {google} = require('googleapis') | |
const successView = require('./success_view') | |
const errorView = require('./error_view') | |
const googleCredentials = require('./google_client_id.json') |
This file contains hidden or 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
const https = require('https'); | |
const querystring = require('querystring'); | |
/** | |
* Pass the data to send as `event.data`, and the request options as | |
* `event.options`. For more information see the HTTPS module documentation | |
* at https://nodejs.org/api/https.html. | |
* | |
* Will succeed with the response body. | |
*/ |
OlderNewer