- Weekly Agenda (created on a different day, and embedded with
/Block Reference) - [[Morning Questions]]
- {{[[slider]]}} How many hours of sleep did I get?
- What's one thing top of mind today?
- What's the one thing I need to get done today to make progress?
- Review #[[Index: Questions]] #values
- Agenda
- {{[[TODO]]}} Morning walk #goal-health #habit
- {{[[TODO]]}} Check calendar for scheduled events
- {{[[TODO]]}} Morning focus hour
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
| new MutationObserver(() => { | |
| let filtered = Array.prototype.filter.call( | |
| document.querySelectorAll(".roam-body a"), | |
| (a) => { | |
| return a.hostname && !a.hostname.includes("roamresearch.com"); | |
| } | |
| ); | |
| Array.prototype.forEach.call(filtered, (a) => { | |
| if (a.text == "*") { | |
| a.style.background = `url(https://www.google.com/s2/favicons?sz=16&domain=${a.hostname}) right center no-repeat`; |
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
| /* | |
| Script to take a Remembear password export and turn it into a CSV 1Password will understand. | |
| Tested with 1Password 7 and Remembear 1.4.2. | |
| Note that Remembear makes a mess of the CSV export if you have any multi-line notes. | |
| If you have any of these you'll need to clean those up in the exported CSV before running this script. | |
| It's also not great at marking things in the trash so maybe clear your Remembear trash before exporting. | |
| To run (assumes remembear_export.csv is in the same folder): |
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
| #sudo apt-get remove maven2 | |
| sudo add-apt-repository "deb http://ppa.launchpad.net/natecarlson/maven3/ubuntu precise main" | |
| sudo apt-get update | |
| sudo apt-get install maven3 | |
| #If you encounter this: | |
| #The program 'mvn' can be found in the following packages: | |
| # * maven | |
| # * maven2 |
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
| <html> | |
| <head> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> | |
| <script src="/socket.io/socket.io.js"></script> | |
| <script> | |
| $(document).ready(function() { | |
| var socket = io.connect('http://localhost'); | |
| $('#button').click(function(e){ | |
| socket.emit('click'); | |
| e.preventDefault(); |