How Can You Monitor Employee Productivity Without Being a Bad Boss?

So, you want to monitor your employees’ productivity without coming across as the bad boss? This can be tough because you have to find the right balance when it comes to monitoring employee productivity. 

On one hand, you don’t want to be a bad boss that constantly leans over your employees’ shoulders, watching their every move. On the other hand, you want to make sure that your team is productive and successfully meeting deadlines. After all, it’s their job to meet deadlines successfully, and it’s part of your job to ensure work is being completed on schedule and to specifications.

3 Best Practices To Make Cloud Migration Easier

Cloud migration. It’s a term that comes up in most enterprise conversations at least once. While the term represents the practice of moving from on-premises infrastructure to cloud infrastructure, what is meant by “cloud migration” has evolved. Cloud migration is no longer as simple as moving from on-prem servers to AWS EC2. It could include moving to managed databases or API gateways, or maybe you need AWS for some workloads and Azure for others. Perhaps you’re a financial or public sector organization, and you need a private cloud. Or maybe you need to meet special regulatory requirements.

In this article, we’re going to look at three best practices for making cloud migration easier for your enterprise:

Best Cheap Mechanical Keyboard You Can Buy: 8 Top Options Compared

Of all the keyboard categories that we’ve featured in our roundup of the top mechanical keyboards overall, the best cheap mechanical keyboard section has been increasingly emerging as the readers’ favorite. But, that’s not to say the rest of the sections are missing out on the action. Rather, it turns out that many of the people who are interested in other keyboard categories happen to also be budget-minded.

Collective #706












Yaade

Yaade is an open-source, self-hosted, collaborative API development environment.

Check it out





Nitric

Nitric is a framework for rapid development of cloud-native and serverless applications.

Check it out



How We Built r/Place

A super interesting article on how Reddit’s Place was built, a collaborative canvas on which a single user could only place a single tile every five minutes.

Read it



Range

A fun and creative way to use the range slider 🙂 Made by Hakim El Hattab.

Check it out







The post Collective #706 appeared first on Codrops.

php query not working, no error in sql

hi, i have some problem with my php code. when i run the php, the page keep loading and no output displayed. here is my code:

    $dayBeforeNew = $_GET['daybefore'];
    $dayAfterNew = $_GET['dayafter'];        
    $sql = "SELECT reference.LOCID, reference.Region, Sitename, (SELECT `Data Total Traffic` from 4g_statistic where reference.LOCID = 4g_statistic.LOCID AND 4g_statistic.Day = $dayBeforeNew) as `pre.Data Total Traffic`, (SELECT `L_25_VoLTE Traffic (Erlang)` from 4g_statistic where reference.LOCID = 4g_statistic.LOCID AND 4g_statistic.Day = $dayAfterNew) as `pre.L_25_VoLTE Traffic (Erlang)` FROM reference";
    $res = mysqli_query($conn, $sql) or die(mysqli_error($conn));
    while($row = mysqli_fetch_array($res))
    {
    ?>

        <tr>
          <td><?php echo $i; $i++; ?></td>      
          <td><?php echo $row['LOCID']; ?></td>
          <td><?php echo $row['Sitename']; ?></td>  
          <td><?php echo $row['Region']; ?></td>

          <td><?php echo $row['`pre.Data Total Traffic`']; ?></td>      
          <td><?php echo $row['`pre.L_25_VoLTE Traffic (Erlang)`']; ?></td>
        </tr>

        <?php 
    } 

i guess the problem is in the sql, because there are select in select statement. but i don't know how to solve it..