Skip to content

Commit

Permalink
chore: init
Browse files Browse the repository at this point in the history
  • Loading branch information
taskylizard committed Aug 8, 2024
0 parents commit 4d7b8e7
Show file tree
Hide file tree
Showing 6 changed files with 32,015 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/run_make_fmhy_bookmarks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Run make_fmhy_bookmarks.py

on:
schedule:
- cron: '0 0 * * 1' # This means the action will run every Monday at midnight UTC
workflow_dispatch: # Allows the workflow to be run manually from the GitHub UI

jobs:
run_script:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x' # Specify the Python version you need

- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run make_fmhy_bookmarks.py
run: python make_fmhy_bookmarks.py

- name: Commit changes
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git add fmhy_in_bookmarks.html
git add fmhy_in_bookmarks_starred_only.html
git commit -m 'Update fmhy_in_bookmarks.html'
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
This repository is programmed to automatically generate browser bookmarks for the link collection FMHY.

Bookmarks are generated as HTML files which can be imported into any web browser.
![](https://i.imgur.com/N2Wfngc.png)

The HTML files are automatically updated weekly with the new changes from FMHY.

## Why?
Web browsers have auto-complete and search functions that are based on bookmarked pages, so its helpful to have interesting sites bookmarked, so you can find them quicker and make sure you are on the right URL.


## How does it look once imported?
![](https://i.imgur.com/h1GfL1W.png)


## How to download the importable HTML files?
![](https://i.imgur.com/e4xN3wy.png)


## How to import them into the browser?
![](https://i.imgur.com/6BpWb1q.png)
Loading

0 comments on commit 4d7b8e7

Please sign in to comment.