Skip to content

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Sep 24, 2025

Bumps tar-fs from 2.1.1 to 2.1.4.

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [tar-fs](https://github.com/mafintosh/tar-fs) from 2.1.1 to 2.1.4.
- [Commits](mafintosh/tar-fs@v2.1.1...v2.1.4)

---
updated-dependencies:
- dependency-name: tar-fs
  dependency-version: 2.1.4
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 24, 2025
Copy link

@jabari-max jabari-max left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Creating and Managing Branches in Git

Branching in Git allows you to work on different versions of your project independently. Here’s how to create, switch, merge, and rebase branches using essential Git commands.

1. Create a Branch

To create a new branch:

git branch <branch-name>

Example:

git branch feature/login

2. Switch Between Branches

You can switch branches using:

git checkout <branch-name>

Or, in newer versions of Git:

git switch <branch-name>

Example:

git checkout feature/login
# or
git switch feature/login

3. Create and Switch to a Branch

Create a new branch and switch to it immediately:

git checkout -b <branch-name>
# or
git switch -c <branch-name>

Example:

git checkout -b feature/signup
# or
git switch -c feature/signup

4. List Branches

To see all branches in your repository:

git branch

5. Merge Branches

To merge changes from one branch (e.g., feature/login) into your current branch (e.g., main):

git checkout main
git merge feature/login

6. Rebase Branches

Rebasing applies your changes on top of another branch’s history:

git checkout feature/login
git rebase main

This moves the feature/login branch to begin on the tip of main, replaying your commits.

7. Delete a Branch

After merging, you may want to delete a branch:

git branch -d <branch-name>

Example:

git branch -d feature/login

Summary Table

Action Command Example
Create branch git branch feature/login
Switch branch git checkout feature/login
Create & switch git checkout -b feature/signup
List branches git branch
Merge into current branch git merge feature/login
Rebase onto another branch git rebase main
Delete branch git branch -d feature/login

Reference

For more details, see the Git Branching documentation.

@jabari-max
Copy link

<title>Multi-Timezone Digital Clock</title> <style> body { font-family: 'Segoe UI', Arial, sans-serif; background: #222; color: #fff; text-align: center; padding-top: 40px; } .clock-container { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; } .clock { background: #333; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.2); padding: 24px 32px; min-width: 220px; } .tz-title { font-size: 1.2em; margin-bottom: 12px; color: #00d8ff; } .tz-time { font-size: 2.3em; letter-spacing: 2px; } </style>

World Timezone Digital Clock

<script> // Define the time zones to display const timeZones = [ { label: "UTC", zone: "UTC" }, { label: "New York", zone: "America/New_York" }, { label: "London", zone: "Europe/London" }, { label: "Tokyo", zone: "Asia/Tokyo" }, { label: "Sydney", zone: "Australia/Sydney" } ]; // Create clock elements const container = document.getElementById('clockContainer'); timeZones.forEach(tz => { const clockDiv = document.createElement('div'); clockDiv.className = 'clock'; clockDiv.innerHTML = `
${tz.label}
--:--:--
`; container.appendChild(clockDiv); }); // Update clocks every second function updateClocks() { timeZones.forEach(tz => { const now = new Date(); const timeStr = now.toLocaleTimeString('en-US', { hour: '2-digit', minute: '2-digit', second: '2-digit', hour12: false, timeZone: tz.zone, }); document.getElementById('clock-' + tz.zone.replace(/[^\w]/g, '')).textContent = timeStr; }); } updateClocks(); setInterval(updateClocks, 1000); </script>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant