Skip to content

Instantly share code, notes, and snippets.

View dsebastien's full-sized avatar

Sebastien Dubois dsebastien

View GitHub Profile

Discovered today

  • [[The greatest lie we tell ourselves is "I have time"]]
  • [[[Why solopreneurs are missing out when not taking or making notes and using PKM]]
  • [[When we write something down (physically or digitally) we are converting a thought about the world from our brains into material which can be interacted with, both later by ourselves and by others]]
  • [[Nick Seitz]]
  • [[Depending on how information is stored, linked, and utilized, we will get either more or less use out of that information]]
  • [[You have to earn complexity]]
  • [[Linking ideas together helps us remember and (re)use those]]
  • [[Knowledge is emergent]]
  • [[Take small bites every day]]
---
tags:
- permanent_notes
- business
- solopreneurship
- pkm
- ideas
---
# Why solopreneurs are missing out when not taking or making notes and using PKM
  • Why solopreneurs are missing out when not taking/making notes (i.e., using PKM)
  • Lose opportunities for personal and business development
  • Not thinking ahead as well as they could be
  • Taking notes helps a ton to organize your thoughts, be strategic about the future, be more realistic/grateful about the past, and focused on what needs to be done now/next
  • What do to?
    • Clearly document and articulate your goals, as well as a vision for your future and your company's (this year, next year, within 3/5/10 years)
    • Take daily notes to track your progress
    • Perform periodic reviews to look back and understand what went well/what didn't
---
tags:
- quotes
- life
- uncertainty
- personal_development
---
> The best thing you can do to get ahead in life is to realize you’re not special and to learn how to deal with all the uncertainty life throws at you

Discovered today

  • The greatest lie we tell ourselves: "I have time"
  • Why solopreneurs are missing out when not taking/making notes (i.e., using PKM)
    • Lose opportunities for personal and business development
    • Not thinking ahead as well as they could be
    • Taking notes helps a ton to organize your thoughts, be strategic about the future, be more realistic/grateful about the past, and focused on what needs to be done now/next
    • What do to?
      • Clearly document and articulate your goals, as well as a vision for your future and your company's (this year, next year, within 3/5/10 years)
      • Take daily notes to track your progress
  • Perform periodic reviews to look back and understand what went well/what didn't
@dsebastien
dsebastien / gist:5e7ce0acfc51ac7a00ee53e09c0bd02a
Last active May 19, 2023 06:24
Dataview query to display YAML front matter
```dataviewjs
const frontmatter = Object.entries(dv.current().file.frontmatter).map((obj) => {
obj[0] = obj[0][0].toUpperCase() + obj[0].substr(1);
return obj;
}).filter(obj => obj[0] != "Tags");
dv.table(frontmatter.keys(), frontmatter);
```
Week 1:
Monday: Rest
Tuesday: 3 miles at an easy pace
Wednesday: 4 miles at an easy pace
Thursday: 3 miles, including 4 x 30-second intervals at a faster pace with 1-minute recovery between each interval
Friday: Rest
Saturday: 5 miles at an easy pace
Sunday: Rest or 30 minutes of cross-training (such as cycling or swimming)
@dsebastien
dsebastien / gist:caf7ad77bdb604db285af0fef0eee43a
Last active January 23, 2023 16:19
Obsidian Front Matter
---
location: UK
languages: [en]
website: https://www.rosiesherry.com/
product: https://rosieland.com
twitter: https://twitter.com/rosiesherry
medium: https://medium.com/@rosiesherry
tags:
- people
- contacts
@dsebastien
dsebastien / svelte.config.cjs
Last active December 25, 2022 03:55
Svelte config that loads the postcss config
const sveltePreprocess = require('svelte-preprocess');
module.exports = {
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: sveltePreprocess({
// WARNING: Mandatory for the postcss config (postcss.config.js) and Tailwind to be loaded
postcss: {}, // <------ this is the important part :)
}), // can pass the options here using { }, but we use svelte.preprocess.config.js for that (gives us more context)
};
...
"architect": {
...
"build": {
"builder": "@angular-builders/custom-webpack:browser",
"options": {
"customWebpackConfig": {
"path": "./webpack.config.js",
...
},