// nav bar scroll effect const scrollLimit = 150; document.addEventListener('DOMContentLoaded', () => { goToURL(window.location.pathname); }); window.addEventListener('popstate', _ => { goToURL(window.history.state); }); window.onscroll = () => { // check if scrolled past limit if so add scrolled class to change background of nav if (document.body.scrollTop >= scrollLimit || document.documentElement.scrollTop >= scrollLimit) { document.querySelector('nav').classList.add('scrolled'); } else { document.querySelector('nav').classList.remove('scrolled'); } }; /** * goToURL tries to go to the specified URL if not shows the error page (not yet implemented) * @param {string} url of the page */ function goToURL(url) { // Get the current URL and split it into an array let urlArray = url.split('/'); if (localStorage.getItem('cookiePopup') === 'accepted') { document.querySelector('#cookiePopup').classList.add('hidden'); } if (url === '/blog/' || url === '/blog') { loadHomeContent(); // window.history.pushState(null, null, url); return; } // Check if the URL is a post page if (urlArray[2] === 'post') { // Create a new URL with the dynamic part loadIndividualPost(urlArray[urlArray.length - 1]).catch(err => console.log(err)); return; } if (urlArray[2] === 'category') { // Create a new URL with the dynamic part if (urlArray[3]) { loadPostsByCategory(urlArray[urlArray.length - 1]); return; } loadAllCategories().catch(err => console.log(err)); return; } if (urlArray[2] === 'search' && urlArray[3]) { // Create a new URL with the dynamic part loadSearchResults(urlArray[urlArray.length - 1]); return; } if (urlArray[2] === 'policy') { if (urlArray[3] === 'privacy') { loadPrivacyPolicy(); return; } if (urlArray[3] === 'cookie') { loadCookiePolicy(); return; } } show404(); } document.querySelector('#searchBtn').addEventListener('click', _ => { let searchTerm = document.querySelector('#searchField').value; if (searchTerm.length > 0) { window.history.pushState(null, null, `/blog/search/${searchTerm}`); document.querySelector('#searchField').value = ''; document.querySelector('#main').innerHTML = ''; goToURL(`/blog/search/${searchTerm}`); } }); document.querySelector('#searchField').addEventListener('keyup', e => { if (e.key === 'Enter') { document.querySelector('#searchBtn').click(); } }); document.querySelector('#cookieAccept').addEventListener('click', _ => { document.querySelector('#cookiePopup').classList.add('hidden'); localStorage.setItem('cookiePopup', 'accepted'); }); /** * Submits the newsletter form */ function submitNewsletter() { fetch(`/api/blog/newsletter/${document.querySelector('#email').value}`, { method: 'POST', headers: { 'Content-Type': 'application/json', }, }).then(res => res.json().then(json => { document.querySelector('#newsletterMessage').classList.remove('hidden'); if (json.message.includes('exists')) { document.querySelector('#newsletterMessage').classList.add('error'); document.querySelector('#newsletterMessage').classList.remove('success'); document.querySelector('#newsletterMessage div').innerHTML = 'You\'ve already signed up you silly goose!'; return; } if (!res.ok) { document.querySelector('#newsletterMessage').classList.add('error'); document.querySelector('#newsletterMessage').classList.remove('success'); document.querySelector('#newsletterMessage div').innerHTML = json.error; return; } document.querySelector('#newsletterMessage div').innerHTML = json.message; document.querySelector('#newsletterMessage').classList.add('success'); })); } /** * Creates a formatted date * @param {string} dateString - the date string * @returns {string} the formatted date */ function createFormattedDate(dateString) { let formattedDate = new Date(dateString); return formattedDate.toLocaleDateString('en-GB', { day: '2-digit', month: 'short', year: 'numeric' }); } /** * Creates a large post element * @param post the post object * @returns {HTMLDivElement} the outer content of the post */ function createLargePost(post) { let outerContent = document.createElement('div'); outerContent.classList.add('outerContent'); let img = document.createElement('img'); img.className = 'banner'; img.src = post.headerImg; img.alt = post.title; outerContent.appendChild(img); let content = document.createElement('div'); content.classList.add('content'); let postContent = document.createElement('div'); postContent.classList.add('postContent'); let categories = ''; post.categories.split(', ').forEach(category => { categories += `${category}`; if (post.categories.split(', ').length > 1) { categories += ', '; } }); if (categories.endsWith(', ')) { categories = categories.substring(0, categories.length - 2); } let dateModifiedString = createFormattedDate(post.dateModified); postContent.innerHTML = `
${post.abstract}
See Post `; content.appendChild(postContent); outerContent.appendChild(content); return outerContent; } /** * Loads the home content */ function loadHomeContent() { fetch('/api/blog/post').then(res => res.json().then(json => { for (let i = 0; i < json.length; i++) { if (json[i].featured === 1) { let featuredPost = document.createElement('section'); featuredPost.classList.add('largePost'); featuredPost.id = 'featuredPost'; let h1 = document.createElement('h1'); h1.innerHTML = 'featured post'; featuredPost.appendChild(h1); let outerContent = createLargePost(json[i]); featuredPost.appendChild(outerContent); document.querySelector('#main').appendChild(featuredPost); } if (i === 1) { let latestPost = document.createElement('section'); latestPost.classList.add('largePost'); latestPost.id = 'latestPost'; let h1 = document.createElement('h1'); h1.innerHTML = 'latest post'; latestPost.appendChild(h1); let outerContent = createLargePost(json[i]); latestPost.appendChild(outerContent); document.querySelector('#main').appendChild(latestPost); } } })); } /** * Gets the latest and featured posts * @returns {PromiseLast Updated: Nov 12, 2023
Thank you for visiting the Privacy Policy of Rohit Pai's Blog. This Privacy Policy explains how I, Rohit Pai, collect, use, and share information about you (“you”, “yours” or “user”) when you access or use my website (“Services”). You are responsible for any third-party data you provide or share through the Services and confirm that you have the third party's consent to provide such data to me.
I collect information that you directly provide to me, such as when you submit a form or send me a message with your information. I may also receive information about you from my partners, including but not limited to distribution partners, data services, and marketing firms. I may combine this information with other information I collect from or about you. In these cases, my Privacy Policy governs the handling of the combined information. I and my partners may collect the information noted in this privacy policy using cookies, web beacons, pixels, and other similar technologies. These technologies are used for authentication, to store your preferences or progress, for analytics, and for advertising and analytics. Cookies are small text files stored on your computer. You can set your browser to reject cookies altogether, to reject my cookies in particular, or to delete cookies. However, this may cause some or all of my Services not to function on your computer or device.
I use information I collect about you to provide, maintain, and improve my Services and other interactions I have with you. For example, I use the information collected to:
I may share your Personal Information in the following situations:
I use advertising and analytics technologies to better understand your online activity on my Services to provide personalized products and services that may interest you. I may allow third-party companies, including ad networks, to serve advertisements, provide other advertising services, and/or collect certain information when you visit my website. Third-party companies may use pseudonymized personal data (e.g., click stream information, browser type, time and date, subject of advertisements clicked or scrolled over) during your visit to this website in order to provide advertisements about goods and services likely to be of interest to you, on this website and others. To learn more about Interest-Based Advertising or to opt-out of this type of advertising, you can visit AboutAds.info/choices or www.networkadvertising.org/choices. Some third-party companies may also use non-cookie technologies, such as statistical IDs. Please keep in mind that your web browser may not permit you to block the use of these non-cookie technologies, and those browser settings that block cookies may have no effect on such techniques. If the third-party company uses the non-cookie technologies for interest-based advertising, you can opt out at www.networkadvertising.org/choices. Please note the industry opt out only applies to use for interest-based advertising and may not apply to use for analytics or attribution. Some websites have “do not track” features that allow you to tell a website not to track you. These features are not all uniform. I do not currently respond to those signals.
I implement commercially reasonable security measures designed to protect your information. Despite my best efforts, however, no security measures are completely impenetrable.
I store the information I collect about you for as long as necessary for the purpose(s) for which I collected it or for other legitimate business purposes, including to meet my legal, regulatory, or other compliance obligations.
Individuals located in certain countries, including the European Economic Area (EEA) and the United Kingdom, have certain statutory rights under the General Data Protection Regulation (GDPR) in relation to their personal data.
To the extent information I collect is associated with an identified or identifiable natural person and is protected as personal data under GDPR, it is referred to in this Privacy Policy as “Personal Data”.
Data Subject Access Requests
Subject to any exemptions provided by law, you may have the right to request:
To access your privacy rights, send me an email at rohit@rohitpai.co.uk.
I will generally process requests within one month. I may need to request specific information from you to help me confirm your identity and/or the jurisdiction in which you reside. If your request is complicated or if you have made a large number of requests, it may take me longer. I will let you know if I need longer than one month to respond.
Legal Bases For Processing Personal Data
I may process your Personal Data under applicable data protection law on the following legal grounds:
My Service is intended for adults ages 18 years and above. I do not knowingly collect personally identifiable information from children. If you are a parent or legal guardian and think your child under 13 has given me information, please email or write to me at the address listed at the end of this Privacy Policy. Please mark your inquiries “COPPA Information Request.”
Rohit Pai may change this Privacy Policy from time to time. I encourage you to visit this page to stay informed. If the changes are material, I may provide you additional notice to your email address or through my Services. Your continued use of the Services indicates your acceptance of the modified Privacy Policy.
You can opt in to receive my marketing emails and/or newsletters by below. I may still send you transactional messages, which include Services-related communications and responses to your questions.
Information I maintain may be stored both within and outside of the United States. If you live outside of the United States, you understand and agree that I may transfer your information to the United States, and that U.S. laws may not afford the same level of protection as those in your country.
If you have questions, comments, or concerns about this Privacy Policy, you may contact me at:
Contact rohit@rohitpai.co.ukI only use functional cookies for the blog which includes PHP Session ID, disqus. a cookie to disable the cookie popup, and maybe share this. I think that these are functional cookies, if you don't, you're welcome to exit the site or tell me by emailing me through the email address below, or the contact form on the contact section of my main website.