 #  Module - CoolClock 

 

- - Joomla! 3
    - Joomla! 4
    - Joomla! 5
    - Joomla! 6

- [ plugin ](/content-tags/plugin)
 
  ![Module - Cool Clock](https://cdn.richeyweb.com/images/articles/mod_coolclock/basic_config.webp)    Show the right time, branded your way - without slowing anything down.

Clocks on websites should feel trustworthy and professional - but too many are stuck in the past: they guess the time, drain phone batteries even when hidden, and look like they belong to another decade. Cool Clock 5 is a complete ground-up rewrite of the classic analog clock concept, built fresh for modern browsers and real-world needs.

  Overview---

Your visitors get dead-accurate time that matches your server, clocks that pause automatically when no one’s looking, and full branding control - so your site looks sharp, stays fast, and never embarrasses you.

## Proof

 



Elegant, right out of the box

Clean lines, smooth sweeping hands, server-accurate time - no fuss, just quality.

 

 



Or make Cool Clock uniquely yours

Same great base, now with a RicheyWeb SVG logo placed naturally behind the hands - your brand integrated in seconds.

 

 

One glance shows the whole team across timezones - always correct, always professional.

 



 

 



 

 



 

 


## How It Works

Cool Clock draws a smooth analog clock directly in the browser, like digital paint on canvas.  
It pulls the real time from your server (not whatever the visitor’s device thinks), adds your logo or text behind the hands just like a real wall clock, and only animates when someone can actually see it.

That means beautiful motion when it matters, silence and zero battery drain when it doesn’t - simple, efficient, and way more polished than the old approaches.

## Features

- Invisible efficiency - Stops animating the moment it scrolls off screen, saving battery and keeping your site lightning-fast\\
- Server-accurate time - Ignores visitor device clocks that can be wrong; always shows the true time
- Any timezone you need - Display offices or clients in different cities with correct offsets and labels
- Brand it your way - Place text, emoji, image, or SVG logo behind the hands - looks like it belongs
- 27+ skins + visual editor - Start with a classic look or build your own live in the admin - no coding required
- AM/PM option - Add clean digital readout when you want it, without ruining the analog feel
- Responsive &amp; smooth - Scales perfectly on phones, tablets, retina - 60fps only when visible
 
## Frequently Asked Questions:

Will this slow my site?Nope! This new version is tiny, pauses off-screen, and smarter than the old versions based on Simon Baird's CoolClock.



Is the time accurate?Yes! Cool Clock pulls time from server, not visitor's clock that might be wrong.



Hard to set up/customize?Install in 2 minutes, visual editor lets you tweak live, no coding unless you want JSON fun.



Works with my Joomla version?The Joomla 3 version is still available for download. Joomla 4-6 are supported by Cool Clock version 5 and up.

## Download

[  Module - CoolClock 5.0.16398](/extension-repository/module-coolclock/mod_coolclock-5.0.1)

[  Report a Bug](/bugs) [  Documentation](/software/documentation/module-coolclock)

 

   Technical Details---

Under the Hood: Technical Details on ModernClock v2.0.0

Damn, this rewrite is a beast - I took Simon Baird's 2008 canvas masterpiece (shoutout to the OG CoolClock for inspiring the analog vibe) and rebuilt it from scratch in pure vanilla JavaScript. No dependencies, no bloat, just modern browser APIs doing heavy lifting. The original was solid for its time, but it ran on setInterval loops that chewed CPU constantly, didn't handle visibility or resizing gracefully, and lacked real-world features like accurate syncing or branding. This version? It's lean, performant, and packed with 2026-ready tricks that make it feel alive without killing resources. Let's break it down.

### Core Architecture

- Pure Canvas Rendering with requestAnimationFrame: Every tick uses rAF for buttery-smooth 60fps animation - only when visible and needed. Original used fixed-interval timers that redrew even in background tabs; here, we throttle to actual visibility, dropping CPU usage to near-zero off-screen. Draw order is optimized: clear → background/face → logo (behind hands for that real-clock depth) → indicators → hands → center dot. No overdraw waste.
- Instance Management: Static Map tracks all clocks by canvas ID. Easy to create, update, or destroy multiple on a page - great for Joomla modules. Auto-init scans for data attributes or Joomla options to spin up instances without manual calls.
- Responsive Design Built-In: Canvas auto-scales to container size using aspect-ratio CSS and ResizeObserver (polyfill-friendly). DPR-aware for retina sharpness. Original was fixed-size only; this adapts on fly, no redraw lag during window resizes.
 
### Performance Optimizations

- IntersectionObserver Integration: Pauses animation loop when clock scrolls out of view. Massive win for long pages or mobiles - original ran forever, draining batteries. We check DOM presence too, so hidden tabs/accordions don't waste cycles.
- Debounce-Free Resizing: ResizeObserver triggers instant canvas updates without manual debouncing. Scale factor recalcs ensure pixel-perfect hands at any size.
- Offscreen Efficiency: No workers needed yet (kept it simple), but the draw loop is so tight it handles 60fps on low-end devices. Tested with multiple instances: negligible impact vs. original's constant polling.
 
### Time Accuracy Features

- NTP-Like Sync: Fetches from reliable APIs (timeapi.io, worldtimeapi.org) or custom Date header URLs (e.g., your server). Calculates offset from local time, caches in cookies for 24h. Retries with backoff on fails - original relied on client Date(), which drifts or lies. This keeps global teams in sync without external libs.
- Timezone Offsets: gmtOffset param shifts to any zone (e.g., LA -8, Dallas -6, NY -5). Combines with sync for dead-accurate multi-clock displays.
- Smooth vs. Ticking Seconds: Toggle smoothSecondHand for fluid motion (adds ms/1000 to seconds) - original was ticking-only, felt jerky.
 
### Customization and Branding

- Logo System: Draw text/emoji/symbol, image URLs (with CORS handling), or raw SVG (base64-encoded for safety) behind the hands. Position, scale, opacity, rotation - all configurable. Original had zilch; this turns clocks into branded gauges (e.g., company logo + city emoji).
- 27+ Skins + Custom JSON: Preserved classics like swissRail/chunkySwiss, added modern ones (neon, ocean, luxury). Custom skins via object: define borders, indicators, hands, decorations. Visual editor (not in code, but implied for Joomla) exports JSON for easy tweaks.
- AM/PM Display: Optional text at 6 o'clock position, styled from skin or defaults. Clean integration without cluttering the face.
 
### Events and Extensibility

- Callbacks: onTick for per-second hooks, onNTPSync/onNTPError for time events. Update options live (e.g., switch skins) without full reload.
- Error Handling: Graceful fallbacks - bad logos? Skip. No observer support? Run anyway. Console warns only when needed.
 
Compared to Simon's original: That was ~1k lines of 2008 JS with basic drawing and a few skins - innovative then, but power-hungry and rigid now. This v2 is a full rewrite (zero original code except skin data for nostalgia), clocking in optimized for perf: under 10k minified, no jQuery/proto pollution, modern APIs only. It's not just a clock; it's a framework for analog displays that won't bog down your site.

 

   Reviews---

## 4 Reviews

### Retrieved from JED monthly

#### Complete - Unfiltered

###  The first really configurable clock

#### 2010-09-09 - Jan Mieszczanek

After a long time, I have the clock!  
 This the only one that fits to my site layout - because I can freely configure everything - colors, dimensions, decorations.  
   
 The 6th star could be for possibility of using my own picture as a background (and centered with the clock).

#### Reply

V5+ offers this option

 

###  Need some tuning, otherwise great

#### 2011-06-29 - denis

I've got some conflict on the main page (jquery, I suppose). On other pages worked flawlessly. Took a pick at the js and found out it's based on the script under same name. So I visited the mentioned site (version 2.1 of the script is there) updated the three scripts at module directory e- t voila - no conflict anymore.  
 Also there's some border radius with custom skin, but it's a minor flaw.

#### Reply

v5+ removes the jquery dependency

 

###  Cosmetic That's Functional

#### 2011-10-20 - Catt

I love this module because:  
\- You have the ability to configure your time zone  
\- Changeable skin to fit your theme/template  
\- Easy to install  
   
 Thank you for this module!

 

###  Nice, but...

#### 2013-10-11 - chaosnet

As a single stand alone clock it works very well, however, with no facility to indicate Am or PM it's no use if you're trying to show the time differential across various zones

#### Reply

V5+ supports AM/PM display

 

 





  



- [      email ](mailto:?subject=Module+-+CoolClock&body=https%3A%2F%2Fwww.richeyweb.com%2Fsoftware%2Fjoomla%2Fmodules%2Fmodule-coolclock)
- [      facebook ](https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwww.richeyweb.com%2Fsoftware%2Fjoomla%2Fmodules%2Fmodule-coolclock)
- [      x-twitter ](https://twitter.com/intent/tweet?text=Module+-+CoolClock%3A+https%3A%2F%2Fwww.richeyweb.com%2Fsoftware%2Fjoomla%2Fmodules%2Fmodule-coolclock)
- [      linkedin ](http://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fwww.richeyweb.com%2Fsoftware%2Fjoomla%2Fmodules%2Fmodule-coolclock&title=Module+-+CoolClock&summary=Show+the+right+time%2C+branded+your+way+-+without+sl...)
- [      pinterest ](http://pinterest.com/pin/create/button/?url=https%3A%2F%2Fwww.richeyweb.com%2Fsoftware%2Fjoomla%2Fmodules%2Fmodule-coolclock&media=https%3A%2F%2Fcdn.joomla.org%2Fimages%2Fjoomla-org-og.jpg&description=Module+-+CoolClock)
 


 

   [  Next article: Module - MicroBread  Module - MicroBread  ](/software/joomla/modules/module-microbread)  

##### We Value Your Privacy

 

We use cookies to enhance your experience and for traffic analysis. By continuing to visit this site you agree to our use of cookies.

[Privacy Policy](/privacy-policy)

 Details 

###### Google Tag Manager Items

- Ad Storage
- Ad User Data
- Ad Personalization
- Analytics Storage
- Functionality Storage
- Personalization Storage
- Security Storage
 
 

 

 

 

 

 Decline Accept
```json
{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://www.richeyweb.com/#organization","name":"RicheyWeb","url":"https://www.richeyweb.com/","logo":{"@type":"ImageObject","url":"https://www.richeyweb.com/images/logo/richeyweb.svg","contentUrl":"https://www.richeyweb.com/images/logo/richeyweb.svg","width":{"@type":"QuantitativeValue","value":38,"unitCode":"PX"},"height":{"@type":"QuantitativeValue","value":38,"unitCode":"PX"},"@id":"https://www.richeyweb.com/#logo"},"image":{"@id":"https://www.richeyweb.com/#logo"},"sameAs":["https://x.com/ComRicheyweb","https://www.facebook.com/RicheyWebDev/","https://www.youtube.com/channel/UCxnVG8BwOvQRO7hVqNX7T2g","https://community.joomla.org/service-providers-directory/listings/115:richeyweb.html"],"description":"RicheyWeb is a custom software developer specializing in Joomla extensions.","ContactPoint":[{"@type":"ContactPoint","url":"https://www.richeyweb.com/contact-us","telephone":"903-873-8460","contactType":"Owner/Administrator","areaServed":["United States",{"@type":"Country","name":"United States","sameAs":["https://en.wikipedia.org/wiki/United_States","https://www.wikidata.org/wiki/Q30","https://g.co/kg/m/09c7w0"]},"European Union",{"@type":"AdministrativeArea","name":"European Union","sameAs":["https://en.wikipedia.org/wiki/European_Union","https://www.wikidata.org/wiki/Q458","https://g.co/kg/m/0_6t_z8"]},"United Kingdom",{"@type":"Country","name":"United Kingdom","sameAs":["https://en.wikipedia.org/wiki/United_Kingdom","https://www.wikidata.org/wiki/Q145","https://g.co/kg/m/07ssc"]},"Australia",{"@type":"Country","name":"Australia","sameAs":["https://en.wikipedia.org/wiki/Australia","https://www.wikidata.org/wiki/Q408","https://g.co/kg/m/0chghy"]},"Canada",{"@type":"Country","name":"Canada","sameAs":["https://en.wikipedia.org/wiki/Canada","https://www.wikidata.org/wiki/Q16","https://g.co/kg/m/0d060g"]},"Russia",{"@type":"Country","name":"Russia","sameAs":["https://en.wikipedia.org/wiki/Russia","https://www.wikidata.org/wiki/Q159","https://g.co/kg/m/06bnz"]},"China",{"@type":"Country","name":"China","sameAs":["https://en.wikipedia.org/wiki/China","https://www.wikidata.org/wiki/Q148","https://g.co/kg/m/0d05w3"]}],"availableLanguage":"en"},{"@type":"ContactPoint","url":"https://www.richeyweb.com/bugs","telephone":"903-873-8460","contactType":"Technical Support","areaServed":["United States",{"@type":"Country","name":"United States","sameAs":["https://en.wikipedia.org/wiki/United_States","https://www.wikidata.org/wiki/Q30","https://g.co/kg/m/09c7w0"]},"European Union",{"@type":"AdministrativeArea","name":"European Union","sameAs":["https://en.wikipedia.org/wiki/European_Union","https://www.wikidata.org/wiki/Q458","https://g.co/kg/m/0_6t_z8"]},"United Kingdom",{"@type":"Country","name":"United Kingdom","sameAs":["https://en.wikipedia.org/wiki/United_Kingdom","https://www.wikidata.org/wiki/Q145","https://g.co/kg/m/07ssc"]},"Australia",{"@type":"Country","name":"Australia","sameAs":["https://en.wikipedia.org/wiki/Australia","https://www.wikidata.org/wiki/Q408","https://g.co/kg/m/0chghy"]},"Canada",{"@type":"Country","name":"Canada","sameAs":["https://en.wikipedia.org/wiki/Canada","https://www.wikidata.org/wiki/Q16","https://g.co/kg/m/0d060g"]},"Russia",{"@type":"Country","name":"Russia","sameAs":["https://en.wikipedia.org/wiki/Russia","https://www.wikidata.org/wiki/Q159","https://g.co/kg/m/06bnz"]},"China",{"@type":"Country","name":"China","sameAs":["https://en.wikipedia.org/wiki/China","https://www.wikidata.org/wiki/Q148","https://g.co/kg/m/0d05w3"]}],"availableLanguage":"en"}],"knowsAbout":["Computer programming",{"@type":"Thing","name":"Computer programming","sameAs":["https://en.wikipedia.org/wiki/Computer_programming","https://www.wikidata.org/wiki/Q80006","https://g.co/kg/m/01mf_"]},"PHP",{"@type":"Thing","name":"PHP","sameAs":["https://en.wikipedia.org/wiki/PHP","https://www.wikidata.org/wiki/Q59","https://g.co/kg/m/060kv"]},"JavaScript",{"@type":"Thing","name":"JavaScript","sameAs":["https://en.wikipedia.org/wiki/JavaScript","https://www.wikidata.org/wiki/Q2005","https://g.co/kg/m/02p97"]},"arduino","Computer forensics",{"@type":"Thing","name":"Computer forensics","sameAs":["https://en.wikipedia.org/wiki/Computer_forensics","https://www.wikidata.org/wiki/Q878553","https://g.co/kg/m/02wxbd"]},"White hat",{"@type":"Thing","name":"White hat","sameAs":["https://en.wikipedia.org/wiki/White_hat_(computer_security)","https://www.wikidata.org/wiki/Q7995625","https://g.co/kg/m/03ns_5"]},"Search engine optimization",{"@type":"Thing","name":"Search engine optimization","sameAs":["https://en.wikipedia.org/wiki/Search_engine_optimization","https://www.wikidata.org/wiki/Q180711","https://g.co/kg/m/019qb_"]},"Search engine marketing",{"@type":"Thing","name":"Search engine marketing","sameAs":["https://en.wikipedia.org/wiki/Search_engine_marketing","https://www.wikidata.org/wiki/Q846132","https://g.co/kg/m/06mw8r"]},"Digital marketing",{"@type":"Thing","name":"Digital marketing","sameAs":["https://en.wikipedia.org/wiki/Digital_marketing","https://www.wikidata.org/wiki/Q1323528","https://g.co/kg/g/122hcnps"]},"Web hosting service",{"@type":"Thing","name":"Web hosting service","sameAs":["https://en.wikipedia.org/wiki/Web_hosting_service","https://www.wikidata.org/wiki/Q5892272","https://g.co/kg/m/014pz4"]},"Email hosting service",{"@type":"Thing","name":"Email hosting service","sameAs":["https://en.wikipedia.org/wiki/Email_hosting_service","https://www.wikidata.org/wiki/Q5368818","https://g.co/kg/m/09w60m"]},"Internet hosting service",{"@type":"Thing","name":"Internet hosting service","sameAs":["https://en.wikipedia.org/wiki/Internet_hosting_service","https://www.wikidata.org/wiki/Q1210425","https://g.co/kg/m/09w5yw"]},"Virtual hosting",{"@type":"Thing","name":"Virtual hosting","sameAs":["https://en.wikipedia.org/wiki/Virtual_hosting","https://www.wikidata.org/wiki/Q588365","https://g.co/kg/m/024mvh"]},"Web performance",{"@type":"Thing","name":"Web performance","sameAs":["https://en.wikipedia.org/wiki/Web_performance","https://www.wikidata.org/wiki/Q7978612","https://g.co/kg/m/0gfj3f1"]},"Web content management system",{"@type":"Thing","name":"Web content management system","sameAs":["https://en.wikipedia.org/wiki/Web_content_management_system","https://www.wikidata.org/wiki/Q45211","https://g.co/kg/m/0615s2"]},"Content management system",{"@type":"Thing","name":"Content management system","sameAs":["https://en.wikipedia.org/wiki/Content_management_system","https://www.wikidata.org/wiki/Q131093","https://g.co/kg/m/0k23c"]},"General Data Protection Regulation",{"@type":"Thing","name":"General Data Protection Regulation","sameAs":["https://en.wikipedia.org/wiki/General_Data_Protection_Regulation","https://www.wikidata.org/wiki/Q1172506","https://g.co/kg/m/0pk_7xs"]},"SERP",{"@type":"Thing","name":"SERP","sameAs":["https://en.wikipedia.org/wiki/SERP","https://www.wikidata.org/wiki/Q2205811","https://g.co/kg/g/11c5szp7kc"]},"Artificial intelligence",{"@type":"Thing","name":"Artificial intelligence","sameAs":["https://en.wikipedia.org/wiki/Artificial_intelligence","https://www.wikidata.org/wiki/Q11660","https://g.co/kg/m/0mkz"]},"Prompt engineering",{"@type":"Thing","name":"Prompt engineering","sameAs":["https://en.wikipedia.org/wiki/Prompt_engineering","https://www.wikidata.org/wiki/Q108941486","https://g.co/kg/g/11p6kpgt_n"]},"E-learning",{"@type":"Thing","name":"E-learning","sameAs":["https://en.wikipedia.org/wiki/E-learning_(theory)","https://www.wikidata.org/wiki/Q182250","https://g.co/kg/g/122czm1f"]},"Sharable Content Object Reference Model",{"@type":"Thing","name":"Sharable Content Object Reference Model","sameAs":["https://en.wikipedia.org/wiki/Sharable_Content_Object_Reference_Model","https://www.wikidata.org/wiki/Q827811","https://g.co/kg/m/06_40"]},"Experience API",{"@type":"Thing","name":"Experience API","sameAs":["https://en.wikipedia.org/wiki/Experience_API","https://www.wikidata.org/wiki/Q7807728","https://g.co/kg/g/1yw9ktxr8"]},"Joomla",{"@type":"Thing","name":"Joomla","sameAs":["https://en.wikipedia.org/wiki/Joomla","https://www.wikidata.org/wiki/Q13167","https://g.co/kg/m/07qb81"]},"Nginx",{"@type":"Thing","name":"Nginx","sameAs":["https://en.wikipedia.org/wiki/Nginx","https://www.wikidata.org/wiki/Q306144","https://g.co/kg/m/02qft91"]},"MySQL",{"@type":"Thing","name":"MySQL","sameAs":["https://en.wikipedia.org/wiki/MySQL","https://www.wikidata.org/wiki/Q850","https://g.co/kg/m/04y3k"]}],"areaServed":["United States",{"@type":"Country","name":"United States","sameAs":["https://en.wikipedia.org/wiki/United_States","https://www.wikidata.org/wiki/Q30","https://g.co/kg/m/09c7w0"]},"European Union",{"@type":"AdministrativeArea","name":"European Union","sameAs":["https://en.wikipedia.org/wiki/European_Union","https://www.wikidata.org/wiki/Q458","https://g.co/kg/m/0_6t_z8"]},"United Kingdom",{"@type":"Country","name":"United Kingdom","sameAs":["https://en.wikipedia.org/wiki/United_Kingdom","https://www.wikidata.org/wiki/Q145","https://g.co/kg/m/07ssc"]},"Australia",{"@type":"Country","name":"Australia","sameAs":["https://en.wikipedia.org/wiki/Australia","https://www.wikidata.org/wiki/Q408","https://g.co/kg/m/0chghy"]},"Canada",{"@type":"Country","name":"Canada","sameAs":["https://en.wikipedia.org/wiki/Canada","https://www.wikidata.org/wiki/Q16","https://g.co/kg/m/0d060g"]},"Russia",{"@type":"Country","name":"Russia","sameAs":["https://en.wikipedia.org/wiki/Russia","https://www.wikidata.org/wiki/Q159","https://g.co/kg/m/06bnz"]},"China",{"@type":"Country","name":"China","sameAs":["https://en.wikipedia.org/wiki/China","https://www.wikidata.org/wiki/Q148","https://g.co/kg/m/0d05w3"]}],"memberOf":["Mensa International",{"@type":"Organization","name":"Mensa International","sameAs":["https://en.wikipedia.org/wiki/Mensa_International","https://www.wikidata.org/wiki/Q184194","https://g.co/kg/m/0140pf"]},"National Rifle Association",{"@type":"Organization","name":"National Rifle Association","sameAs":["https://en.wikipedia.org/wiki/National_Rifle_Association","https://www.wikidata.org/wiki/Q863259","https://g.co/kg/m/0j6f9"]},"CompTIA",{"@type":"Organization","name":"CompTIA","sameAs":["https://en.wikipedia.org/wiki/CompTIA","https://www.wikidata.org/wiki/Q597534","https://g.co/kg/m/040shq"]},"ISFCE LLC",{"@type":"Organization","name":"ISFCE LLC","sameAs":["https://isfce.com","https://g.co/kg/g/11wxm5r0rg"]}],"hasCredential":[{"@type":"EducationalOccupationalCredential","name":"Joomla 3 Certified Administrator","credentialCategory":"Certification","description":"Administrator Exam is the first available Joomla! certification exam","recognizedBy":{"@type":"Organization","name":"Open Source Matters, Inc.","sameAs":["https://en.wikipedia.org/wiki/Open_Source_Matters,_Inc.","https://g.co/kg/g/11f00wvjhz"]},"url":"https://certification.joomla.org/certified-user-directory/michael-richey","about":["Content management system",{"@type":"Thing","name":"Content management system","sameAs":["https://en.wikipedia.org/wiki/Content_management_system","https://www.wikidata.org/wiki/Q131093","https://g.co/kg/m/0k23c"]},"Web content management system",{"@type":"Thing","name":"Web content management system","sameAs":["https://en.wikipedia.org/wiki/Web_content_management_system","https://www.wikidata.org/wiki/Q45211","https://g.co/kg/m/0615s2"]},"Joomla",{"@type":"Thing","name":"Joomla","sameAs":["https://en.wikipedia.org/wiki/Joomla","https://www.wikidata.org/wiki/Q13167","https://g.co/kg/m/07qb81"]}],"educationalLevel":"expert","image":{"@type":"ImageObject","url":"https://www.richeyweb.com/images/contact/badge.webp","contentUrl":"https://www.richeyweb.com/images/contact/badge.webp","width":{"@type":"QuantitativeValue","value":300,"unitCode":"PX"},"height":{"@type":"QuantitativeValue","value":86,"unitCode":"PX"},"caption":"Joomla 3 Certified Administrator"}},{"@type":"EducationalOccupationalCredential","name":"Certified Computer Examiner","credentialCategory":"Certification","description":"Internationally recognized computer forensics certifiecation","recognizedBy":{"@type":"Organization","name":"ISFCE LLC","sameAs":["https://en.wikipedia.org/wiki/ISFCE_LLC","https://g.co/kg/g/11wxm5r0rg"]},"url":"https://isfce.com/","about":["Digital forensics",{"@type":"Thing","name":"Digital forensics","sameAs":["https://en.wikipedia.org/wiki/Digital_forensics","https://www.wikidata.org/wiki/Q3246940","https://g.co/kg/m/0cnxzfx"]},"Computer forensics",{"@type":"Thing","name":"Computer forensics","sameAs":["https://en.wikipedia.org/wiki/Computer_forensics","https://www.wikidata.org/wiki/Q878553","https://g.co/kg/m/02wxbd"]},"Mobile device forensics",{"@type":"Thing","name":"Mobile device forensics","sameAs":["https://en.wikipedia.org/wiki/Mobile_device_forensics","https://www.wikidata.org/wiki/Q6887097","https://g.co/kg/m/06zp3tp"]},"Network forensics",{"@type":"Thing","name":"Network forensics","sameAs":["https://en.wikipedia.org/wiki/Network_forensics","https://www.wikidata.org/wiki/Q7001032","https://g.co/kg/m/05pb280"]},"Database forensics",{"@type":"Thing","name":"Database forensics","sameAs":["https://en.wikipedia.org/wiki/Database_forensics","https://www.wikidata.org/wiki/Q5227405","https://g.co/kg/m/0cgqsy"]}],"educationalLevel":"expert","image":{"@type":"ImageObject","url":"https://www.richeyweb.com/images/contact/isfce-cce.webp","contentUrl":"https://www.richeyweb.com/images/contact/isfce-cce.webp","width":{"@type":"QuantitativeValue","value":150,"unitCode":"PX"},"height":{"@type":"QuantitativeValue","value":150,"unitCode":"PX"},"caption":"Certified Computer Examiner"}}],"hasOfferCatalog":{"@type":"OfferCatalog","name":"Web Services","itemListElement":[{"@type":"Offer","itemOffered":{"@type":"Service","name":"Hosting"}},{"@type":"Offer","itemOffered":{"@type":"Service","name":"Development"}},{"@type":"Offer","itemOffered":{"@type":"Service","name":"Search Engine Optimization"}}]}},{"@type":"WebSite","@id":"https://www.richeyweb.com/#website","url":"https://www.richeyweb.com/","name":"RicheyWeb","publisher":{"@id":"https://www.richeyweb.com/#organization"},"potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.richeyweb.com/search?q={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string","valueMaxLength":256,"valueMinLength":2,"valuePattern":"^[A-Za-z0-9\\s]+$"}},"creator":{"@id":"https://www.richeyweb.com/#organization"},"copyrightHolder":{"@id":"https://www.richeyweb.com/#organization"}},{"@type":"WebPage","@id":"https://www.richeyweb.com/software/joomla/modules/module-coolclock#webpage","url":"https://www.richeyweb.com/software/joomla/modules/module-coolclock","name":"Module - CoolClock","description":"CoolClock 5, a modern analog clock for Joomla websites with server-accurate time, branding options, and efficient performance.","isPartOf":{"@id":"https://www.richeyweb.com/#website"},"about":{"@id":"https://www.richeyweb.com/#organization"},"inLanguage":"en-GB"},{"@type":"SoftwareApplication","name":"Module - CoolClock","operatingSystem":"Joomla!","applicationCategory":"Joomla Extension","offers":{"@type":"Offer","priceCurrency":"USD"},"about":["Clock face",{"@type":"Thing","name":"Clock face","sameAs":["https://en.wikipedia.org/wiki/Clock_face","https://www.wikidata.org/wiki/Q199301","https://g.co/kg/m/02qhyn"]},"Analog watch",{"@type":"Thing","name":"Analog watch","sameAs":["https://en.wikipedia.org/wiki/Analog_watch","https://www.wikidata.org/wiki/Q485071","https://g.co/kg/m/031pr7"]},"Joomla",{"@type":"Thing","name":"Joomla","sameAs":["https://en.wikipedia.org/wiki/Joomla","https://www.wikidata.org/wiki/Q13167","https://g.co/kg/m/07qb81"]},"Content management system",{"@type":"Thing","name":"Content management system","sameAs":["https://en.wikipedia.org/wiki/Content_management_system","https://www.wikidata.org/wiki/Q131093","https://g.co/kg/m/0k23c"]}],"mentions":["Canvas element",{"@type":"Thing","name":"Canvas element","sameAs":["https://en.wikipedia.org/wiki/Canvas_element","https://www.wikidata.org/wiki/Q657954","https://g.co/kg/m/08p4jf"]},"Animation",{"@type":"Thing","name":"Animation","sameAs":["https://en.wikipedia.org/wiki/Animation","https://www.wikidata.org/wiki/Q11425","https://g.co/kg/g/120p9yhk"]},"Network Time Protocol",{"@type":"Thing","name":"Network Time Protocol","sameAs":["https://en.wikipedia.org/wiki/Network_Time_Protocol","https://www.wikidata.org/wiki/Q217491","https://g.co/kg/m/01535z"]}],"@id":"https://www.richeyweb.com/software/joomla/modules/module-coolclock/#softwareapplication","isPartOf":{"@id":"https://www.richeyweb.com/software/joomla/modules/module-coolclock#webpage"}}]}
```
