Universal Time Embeds
Generate lightweight, high-performance world clocks, countdowns, and business status badges. Add them to your developer docs, company wikis, Notion workspaces, or landing pages with zero configuration.
Configure Settings
Select modes and customize outputs
Embed Code snippet
<iframe src="https://silotent.online/time/widgets?mode=clock&theme=dark&city=New+York&tz=America%2FNew_York" width="100%" height="160" style="border:none;border-radius:16px;overflow:hidden;background:transparent;" title="Silotent Temporal Widget" scrolling="no"></iframe>
Copy this line of code and paste it directly into your HTML, Notion, Webflow, WordPress, or GitBook editor. No CSS compilation required.
Live Frame Preview
⚡ This shows the active frame ticking in real-time.
🌍 Standard IANA adjustments and day shifts are validated automatically.
Slack Status Automation
Synchronize remote workspace statuses
Want to keep your Slack profile updated with your current timezone status automatically? Use our cron scheduler script with Slack's user profiles API:
# Sync Slack Status at 9:00 AM & 5:00 PM local time
0 9 * * 1-5 curl -X POST -H "Authorization: Bearer xoxp-slack-token" \
-H "Content-type: application/json" \
--data '{"profile": {"status_text": "Active & Working (New York)", "status_emoji": "💻"}}' \
https://slack.com/api/users.profile.set
0 17 * * 1-5 curl -X POST -H "Authorization: Bearer xoxp-slack-token" \
-H "Content-type: application/json" \
--data '{"profile": {"status_text": "OOO / Resting", "status_emoji": "🌙"}}' \
https://slack.com/api/users.profile.setMake sure to replace xoxp-slack-token with your personal Slack User Token (found in your Slack Developer app settings).