Skip to content

Instantly share code, notes, and snippets.

View f-honcharenko's full-sized avatar
🤡

Filipp Honcharenko f-honcharenko

🤡
  • Orbital
  • Ukraine / France
  • LinkedIn in/lifipp
View GitHub Profile
<h1>Privacy Policy</h1>
<p>Last updated: February 05, 2026</p>
<p>This Privacy Policy describes Our policies and procedures on the collection, use and disclosure of Your information when You use the Service and tells You about Your privacy rights and how the law protects You.</p>
<p>We use Your Personal Data to provide and improve the Service. By using the Service, You agree to the collection and use of information in accordance with this Privacy Policy. This Privacy Policy has been created with the help of the <a href="https://www.termsfeed.com/privacy-policy-generator/" target="_blank">Privacy Policy Generator</a>.</p>
<h2>Interpretation and Definitions</h2>
<h3>Interpretation</h3>
<p>The words whose initial letters are capitalized have meanings defined under the following conditions. The following definitions shall have the same meaning regardless of whether they appear in singular or in plural.</p>
<h3>Definitions</h3>
<p>For the purposes of this Privacy Policy:</p>
<ul>
@f-honcharenko
f-honcharenko / git-hook-post-checkout.sh
Last active April 3, 2026 03:30
This Bash script dynamically updates the VS Code `settings.json` file with the current Git branch name. It ensures that any previous dynamically added instructions are removed before appending the new branch name. This is useful for tools like GitHub Copilot Chat to generate commit messages based on the active branch.
#!/bin/bash
# Run the custom script whenever a branch is checked out
"/Users/$USER/Library/Application Support/Code/User/update-copilot-branch-instructions.sh"
# Check if the custom script executed successfully
if [ $? -eq 0 ]; then
# If the script was successful, print the success message
echo "Successfully updated Copilot commit message generation instructions with the current Git branch name."
else