I hereby claim:
- I am kzaremski on github.
- I am konzski (https://keybase.io/konzski) on keybase.
- I have a public key ASC1UOmG8tcHZQlQGGg8eWnjpkchhLRXrl8ihF2RmKriVwo
To claim this, I am signing this object:
| # export-apple-notes-from-database.py | |
| # Konstantin Zaremski | |
| # December 21, 2024 | |
| # | |
| # DESCRIPTION: | |
| # This script aims to open a NoteStore.sqlite and related database files from | |
| # Apple Notes on MacOS in order to manually extract note contents into standard | |
| # formats for use in backing up and data recovery. It is not feature rich. The | |
| # techniques employed by this script may be eventually integrated into my main | |
| # Apple Notes Exporter MacOS app: |
I hereby claim:
To claim this, I am signing this object:
| -- | |
| -- ** AppleNotesExporter ** | |
| -- -- Easily export Apple notes to standard encoding HTML preserving directory structure | |
| -- | |
| -- Copyright 2022 Konstantin Zaremski | |
| -- | |
| -- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | |
| -- documentation files (the "Software"), to deal in the Software without restriction, including without limitation | |
| -- the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, | |
| -- and to permit persons to whom the Software is furnished to do so, subject to the following conditions: |
| #!/usr/bin/python | |
| #Python 3.7 <= | |
| # Comments and improvements welcome on GitHub! <https://gist.github.com/kzaremski/4d7c02d7fecb0212c0373abc13cb2a47> | |
| ''' | |
| Copyright 2022 Konstantin Zaremski | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| /* | |
| Websocket w/ Callback | |
| Konstantin Zaremski | |
| */ | |
| class WScallback { | |
| constructor() { | |
| this.running = {}; | |
| } |