guest post from SoftPedia.com

The Pomodoro technique is designed to improve one’s focus by alternating work sessions with short brakes. PomoDoneApp makes use of this concept, while also integrating with various task management services.

Create an account and start connecting services to make them easily accessible

PomoDoneApp is connected to an account-based service, so you cannot access the app’s functionalities without providing your credentials. Note that you can register for an account free of charge, but access to some functions will be restricted.

Worth mentioning is that, if you get the PomoDoneApp via the Mac App Store — Humble Rise, you will receive a three months Supporter Plan. However, after that period, you will have to pay a monthly fee to be able to continue using the service without any restrictions.

Task management solution that encourages activity analysis and team communication

PomoDoneApp offers you the option to add new tasks and store them locally or on the web, but also allows you to connect with other task management services. The procedure can be performed only via a web browser, and the access can be revoked at any time.

The best part is that PomoDoneApp can also integrate with iCalendar or Slack, which means that you can analyze your performance in calendar view, or let the other team members know when you are working.

Navigate between tasks and organize your working sessions any way you like

Within the PomoDoneApp main window, you can choose to start working on any assignment defined in one of the connected management services. What’s more, you get to decide the length both for the work session (5/15/25 minutes) and for the break (5/10/15 minutes).

PomoDoneApp sports both visual and audio alerts that let you know wherever you need to take a break or start working again. You can have a single task active at a time while navigating through your jobs collection or setting up new assignments is quite intuitive.

Time management tool that integrates with task organizing services or team communication solutions

Bottom line, PomoDoneApp brings to the table a beautiful environment where you can both keep track of your tasks, and use the Pomodoro technique to increase your productivity level.

PomoDoneApp can connect to various task management services, allows you to analyze your performance in calendar view, and can send status updates to your Slack team.

Furthermore, you get to launch working sessions or switch to break mode via the status bar, or make any of the timers autostart, which is extremely unobtrusive.

Download PomoDone App for free.

 

Websites serve two kinds of resources: dynamic and static. Static resources require no processing. So the goal is to store and serve them as efficiently as possible. Many websites, small and enterprise-level alike, have begun using cloud hosting as a solution for serving static files. Cloud hosting is relatively inexpensive, which is an advantage, but file serving from a cloud has some inherent disadvantages too.

Advantages

Reduced Bandwidth and Storage Cost

The biggest advantage of cloud hosting to store and serve static files is that it’s generally cheaper and often considerably so. This is especially important concerning bandwidth, because a dedicated cloud service can significantly beat the bandwidth costs for downloads offered by most traditional webhosts.

Greater data accessibility

The other great benefit of remote hosting of these files is the wide accessibility. This is especially important as the modern worker becomes more and more mobile. With a cloud solution, you have instant mobility, and you have secure accessibility since the static files are contained separate from the primary network.

Files are not parked locally

This item is somewhat of a double-edged sword, so you’ll notice that it’s listed as both a pro and a con. By parking files on an Internet service, you pass on a great deal of the responsibility. For instance, the cloud service is responsible for the data redundancy, and that makes storage a cheaper proposition because it removes many of the secondary costs.

Disadvantages

Files are not parked locally.

While most cloud services do offer some guarantees, none guarantee 100 percent data availability and protection. For many sites, that means having their own redundancy layer. It may still be worth it due to the cost of serving bandwidth online casino go, but it is an importing aspect of storage cost that needs to be considered.

Less Control

When using a third-party cloud, you have to conform to the rules and structure of that service. Because of this, you inherently have less control. The business won’t have root access, and it won’t have all of the hands-on management options that it would have if the resources were stored on a private server.

Lesser Security

Storing files on a third-party server that provides wide access will be inherently less secure than if you store them on a private server or even a hosted webserver. If solely serving public resources, this lesser security may be a non-issue, but some businesses will use the cloud hosting to serve private data.

In practice, static does not mean unchanging

Despite the label “static”, such resources often do change. How often is an important consideration. If a resource is updated and re-uploaded on a regular basis, that re-upload may be an unnecessary cost. In that case, it may be better to store the resource locally, which would not incur that expense.

Conclusion

Cloud hosting for serving static files is generally an excellent option for small websites that are serving non-sensitive data. For larger businesses that are serving static files not meant for public consumption, a third-party solution might sacrifice too much control and security to be worthwhile.

 

Most important (and complex) problem is to position some container in the vertical center of long page (with scroller) in IE6.

This is an ultimate solution (at least I think so) and I have to say HUGE THANKS to Vadim Makeev aka Pepelsbey for urgent and completely satisfactory help.

This is code fragment from working site and I have no time to simplify it to some model but it should be helpful.
Task: semitransparent layer on whole page au casinos online and some notification container in the middle of page (fixed width and height):
Whatever.

Continue reading »

 

Correct CSS:

#someid div {color: blue;}
#someid div:first-child {color: red;}
#someid > div {color: green;}
#someid div div {padding-left: 2em;}
/*
just to show some indend and separate direct children to nested ones
*/

IE6 CSS:

<!--[if IE 6]>
<style type="text/css">
/*
FIRST CHILD AND NESTED CHILDRED:
1st one for :first-child
2nd one for all other directly nested childred
*/
#someid div {
  color: expression(this.previousSibling == null ? 'red' : (this.parentNode.id == 'someid') ? 'green' : '-' )
}
</style>
<![endif]-->

:first-child and nested children (for IE6) working example

 

Some time ago I used to think this problem can’t be correctly resolved without tables.
Imagine, you have a list of elements (each element’s width is unknown – read: variable) that should be blocks (for example you have to add background on hover or make any other helpful things you can’t handle with inline elements).
This list should be centered for some reason (designer’s fancy, do you know any other reason?)…

I thought it is 1 of short list problems that can’t be correctly resolved with no tables. But, huh, solution is simple enough.

Example of centered floating list

There are 2 examples: with UNORDERED LIST (UL/LI) and without it (just a few A tags). Dotted border is helpful tip to understand the idea.
Works in IE6,IE7, O9, FF2, N8, S3 – more tests are welcome.

Enjoy.