If you're using a high-end bluetooth headset on your Macbook Pro it's likely your mac is using an audio codec which favors battery efficiency over high quality. This results in a drastic degradation of sound, the SBC codec is the likely culprit, read more about it here.
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
| <!DOCTYPE html> | |
| <head> | |
| <!--Little CSS fade in --> | |
| <style> | |
| .fade-in{ | |
| -webkit-animation: fade-in 2s ease; | |
| -moz-animation: fade-in ease-in-out 2s both; | |
| -ms-animation: fade-in ease-in-out 2s both; | |
| -o-animation: fade-in ease-in-out 2s both; |
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
| <section class="blank" style="height: 300px; background-color: rgb(4, 3, 35); position: relative;"> | |
| </section> | |
| <section id="sensory-experience" class="pinned-section" style="height: 3001px; background-color: rgb(4, 3, 35); position: relative;"> | |
| <div style="top: 0px; left: 0px; position: sticky; width: 100%; height: 895px; will-change: transform; overflow: hidden;"> | |
| <div class="flex flex-col items-center justify-center w-full h-screen bg-cover" style="background-image: linear-gradient(rgb(4, 3, 35) 50%, rgba(4, 3, 35, 0));"> | |
| <div class="relative w-[460px] sm:w-[932px] md:w-[784px] lg:w-[1054px] xl:w-[1540px] mb-[5px] md:mb-[20px] lg:mb-[-10px] xl:mb-[-20px]" style="transform: translate(0px, 89.5px);"> | |
| <img id="img1" class="absolute top-0 left-0 z-0 w-full backface-visible max-w-none" src="https://gmedia.playstation.com/is/image/SIEPDC/section2b-header-image-1?qlt=87,1&resMode=bilin&fmt=jpg&scl=1" data-di-id="4e55d033-b29a919" alt="A virtuális valóság játékainak új generációja"> |
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
| <section id="sound-section" class="pinned-section" style="height: 5401px; background-color: rgb(216, 220, 231); position: relative;"> | |
| <div style="top: 0px; left: 0px; position: sticky; width: 100%; height: 896px; will-change: transform; overflow: hidden visible;"> | |
| <div class="relative w-full h-full overflow-hidden"> | |
| <div class="absolute top-0 left-0 flex items-start justify-center w-full h-full"> | |
| <div class="relative w-full h-screen " id="vid_container_magávalragadó3dhangzás" style="height: 100%;"><video class="absolute top-0 object-cover w-screen h-screen transform -translate-x-1/2 left-1/2" loop="" id="vid_el_magávalragadó3dhangzás" style="height: 100%;" playsinline="" preload="auto" poster="https://gmedia.playstation.com/is/image/SIEPDC/section4b-video-poster?qlt=87,1&resMode=bilin&fmt=jpg&scl=1" aria-label="" title="Magával ragadó 3D hangzás"> | |
| <source src="https://gmedia.playstation.com/is/content/SIEPDC/global_pdc/en/hardware/psvr2/channel-specific-content/pdc/ |
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
| ———————————————————————————————————————————————————————————————————————————————————————————————————— | |
| BBEDIT/TEXTWRANGLER REGULAR EXPRESSION GUIDE MODIFIED 2016/02/29 17:26 | |
| ———————————————————————————————————————————————————————————————————————————————————————————————————— | |
| NOTES: | |
| The PCRE engine (Perl Compatible Regular Expressions) is what BBEdit and TextWrangler use. | |
| Items I'm unsure of are marked '# PCRE?'. The list while fairly comprehensive is not complete. |
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
| function onOpen() { | |
| var menuEntries = [ {name: "Create Diary Doc from Sheet", functionName: "createDocFromSheet"}]; | |
| var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
| ss.addMenu("Fitness Diaries", menuEntries); | |
| } | |
| function createDocFromSheet(){ | |
| var templateid = "1O4afl8SZmMxMFpAiN16VZIddJDaFdeRBbFyBtJvepwM"; // get template file id | |
| var FOLDER_NAME = "Fitness Diaries"; // folder name of where to put completed diaries | |
| // get the data from an individual user |
