Skip to main content

Guiding device usage: This App makes it a Snap

If you are a parent you might desire to be aware of what your children are doing on their electronic devices, so that you can provide guidance to help them develop good habits. In that, you would not be alone: "Surveys, including by the Pew Research Center, have found that two-thirds of parents check their children’s digital footprints..."*

Let me cut to the chase. Serafino Software™ is offering a product called Snap Screen™ which will take pictures of what is on your children's displays at somewhat random times and sends them to you to help you be aware of what they are doing so that you can provide guidance to help them develop good habits. This way, they can know that what they are doing could be observed any time Snap Screen™ is running. But, it also saves you time because you won't have to be there watching what they are doing the whole time.

Snap Screen™ does not limit the number of devices to supervise. It supports supervising from the web and currently supports supervising computers. Support for supervising mobile devices is hopefully coming soon.

I know that money doesn't grow on trees, so we are offering the Standard Edition, which supports up to 1,000 screen snaps per month, for free. You can try the app with no obligation, and see how it works for you:

Since I already know you are going to love it ;) you can remove the monthly snap limit and subscribe to the Premium edition for only $5 per month. I feel that's a small price to pay to know you are helping provide guidance about usage of electronic devices for your family.

Once again, here is the web page to get started. Let me know if you have any difficulty. Please connect to start supervising and subscribe to the premium edition now:

Comments

Popular posts from this blog

Reality Checks to Demystify Buzzwords

As an IT insider, I feel I have something valuable to offer nontechnical people in terms of correcting misinformation. Here are a few simple tests for some popular buzzwords in tech. When evaluating a product or service, if you can honestly answer Yes to the reality check question, the buzzword probably truly applies. If the answer is No, it is probably fake. agile Does it make the developers happy? blockchain Does it cut out the middleman? cloud Does it automatically scale? microservice Does it only do one thing? object oriented Is it mostly made of interfaces? RESTful When requests arrive at a certain address, are they ready to use (without parsing)? unit test Does it prevent the tested code from touching anything outside itself?

The Importance of Direction

Which would you say is more important: getting somewhere faster, pushing something harder, or going the right direction? It should be obvious that no matter how much speed or power you use, that won't do any good if you're going the wrong direction. It could also be pointed out that early in a journey, even a small change in direction makes a big difference in where you end up. Therefore, we should make sure we have our direction correct, as the first priority.

How (Not) to Handle Different Exceptions

Came across this sample from a certain multi-billion-dollar company, purporting to show how to implement exception handling. I slightly changed a few cosmetic details to make it anonymous. try { // ... } catch (GeneralException e) { if (e instanceof SpecificExceptionA){ // ... } else if (e instanceof SpecificExceptionB){ // ... } } This is a true actual story--you can't make this stuff up. Yeah, I thought it was pretty hilarious; so I felt like I had to share it.