Skip to content

Commit

Permalink
Update TIL listing
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Nov 21, 2023
1 parent b2b227c commit 444d60f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

This is a collection of short notes of the things I have learned on a daily basis while working on different technologies. I share these notes as I [learn in public](https://www.learninpublic.org/).

_**103** TILs and counting..._
_**104** TILs and counting..._

- 2023-11-21: [Recursively delete .DS_Store](https://github.com/petermekhaeil/til/blob/master/./learnings/mac-delete-ds-store.md)
- 2023-10-25: [Emulate a focused page in DevTools](https://github.com/petermekhaeil/til/blob/master/./learnings/devtools-emulate-focused-page.md)
- 2023-10-11: [JavaScript Barrel File](https://github.com/petermekhaeil/til/blob/master/./learnings/js-barrel-files.md)
- 2023-09-18: [Nginx Nested Locations](https://github.com/petermekhaeil/til/blob/master/./learnings/nginx-nested-locations.md)
Expand Down
6 changes: 6 additions & 0 deletions feed.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
[
{
"content": "# Recursively delete .DS_Store\n\nDelete all `.DS_Store` found within a directory recursively:\n\n```bash\nfind . -name '.DS_Store' -type f -delete -print\n```\n\n`-print` will also print the path of the file when deleting.",
"date": "2023-11-21",
"path": "mac-delete-ds-store.md",
"title": "Recursively delete .DS_Store"
},
{
"content": "# Emulate a focused page in DevTools\n\nIf you switch focus from the current page to the Chrome DevTools, some overlay elements automatically hide if they are triggered by focus. For example, dropdown menus.\n\nThe Chrome DevTools have a feature to emulate page focus. Press `Ctrl+Shift+P` (or `Cmd+Shift+P` on macOS) and search for \"Emulate a focused page\". You won't lose focus of the page while inspecting the elements.\n\n![Screenshot 2023-10-25 at 10 32 59 PM](https://github.com/petermekhaeil/til/assets/4616064/abd0854f-dac1-43e9-868b-d71496401f7b)",
"date": "2023-10-25",
Expand Down

0 comments on commit 444d60f

Please sign in to comment.