Skip to content

Instantly share code, notes, and snippets.

View menosketiago's full-sized avatar

Tiago Almeida menosketiago

View GitHub Profile
@menosketiago
menosketiago / pause-tab-privacy-policy.txt
Last active April 10, 2026 15:26
Privacy policy for the Pause Tab Chrome extension
Privacy Policy for Pause Tab
Effective Date: April 10, 2026
1. Data Collection:
The "Pause Tab" extension does not collect, store, or transmit any personal information, browsing history, or user data to any external servers. All operations, including the pause overlay and countdown timer, happen locally within your browser.
2. Permissions:
activeTab & scripting: Used solely to display the pause overlay on the specific tab you choose to pause.
@menosketiago
menosketiago / css-tilt-shift
Created December 10, 2019 17:30
CSS Tilt-shift
picture {
position: relative;
width: 90vw;
height: auto;
margin: 10vh;
&::after {
content: '';
position: absolute;
top: 0;
@menosketiago
menosketiago / designers-guide.css
Last active April 16, 2019 18:04
Demo CSS for The Designers Guide to the Galaxy (of Code)
/* CSS for the demo page of The Designers Guide to the Galaxy (of Code)
Read the first episode on this Medium article series at http://bit.ly/2TYFqVz
Find the HTML at http://bit.ly/2ZdxjDq
*/
/* Import our space themed font */
@import url('https://fonts.googleapis.com/css?family=Titillium+Web');
html {
-webkit-box-sizing: border-box; /* Safari <= 5 */
@menosketiago
menosketiago / designers-guide.html
Last active April 14, 2019 18:35
A demo HTML page for The Designers Guide to the Galaxy (of Code)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta lang="en-US">
<title>The Designers Guide to the Galaxy (of Code)</title>
<link rel="stylesheet" href="http://bit.ly/2KzCR88">
</head>
@menosketiago
menosketiago / designers-guide-nocss.html
Last active April 14, 2019 17:57
A demo HTML page for The Designers Guide to the Galaxy (of Code)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta lang="en-US">
<title>The Designers Guide to the Galaxy (of Code)</title>
</head>
<body>
<!-- Here is our main header that is used across all the pages of our website -->
@menosketiago
menosketiago / test.html
Created March 22, 2019 18:49
A very basic HTML example
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Page title</title>
</head>
<body>
<h1>Hello world!</h1>
</body>
</html>
Personal Atom settings and styles