Bing vs. Google

Image: 

I took the test and the result was google.

Read OSI Pi Data with C# .NET

Dynamic Dashboards

These first four Dashboards were built to work for IE8+ using Jquery, Ajax, and PHP.




These last two dashboards are C# .NET 3.5 applications.


Find unused tables in MSSQL

  1. SELECT
  2. t.name AS 'Table',
  3. SUM(i.user_seeks + i.user_scans + i.user_lookups)
  4. AS 'Total accesses',
  5. SUM(i

Updated Mobile Website

mobile_site

I have finally made a mobile version of my website. It has been optimized for ios.

Hello, Luna Beta 1

Developers and testers, today we are happy to announce the first beta release of elementary OS Luna. We've been working hard the past year and a half to create the next generation of elementary, and it begins with this beta.

What’s New

Luna is our greatest undertaking yet, and along with it have come many new apps, features and development libraries. By integrating and innovating with the latest technologies, we’re building a platform that free software developers can be excited about.

Pantheon



Pantheon is our new desktop environment and shell. It consists of the greeter, panel, app launcher, dock, window manager, settings app, and theme. Our primary focus during our development of Pantheon has been to provide a clean but powerful stage for great apps. That means a shell that fades into the background when not in use and consumes very few system resources. But it also means building a desktop that has opportunities for tight integration and offering system services.

Our login screen, Pantheon Greeter, is now built on LightDM. It features smooth graphics and animation with Clutter, displays the time and date with beautiful typography, and has built-in accessibility.

JQuery Drag N Drop Schedule Maker

I realize the demo has a bug and I plan on fixing it when I have time.<--DEMO-->
<--DEMO-->

Java Date/Time Demo

The Java API provides many classes for working with times and dates. The following program will print out the current time here and the time in Los Angeles.

Java Multithreading Example

Step 1

Implement a traffic light object with a turnGreen(int roadNumber) method. When a car is at the intersection, the road the car is on will call this method and pass its number. A call to the turnGreen method can be viewed as a request for the traffic light to turn green so a waiting car can proceed through the intersection. For example, if a car on road 1 is waiting at the intersection, road number 1 calls the turnGreen method, and the method should print out:

Light turned green by road 1
Waiting for road 1 car to clear intersection
10 9 8 7 6 5 4 3 2 1 0
Use a loop to print a countdown of the waiting period from 10 to 0. During each iteration of the loop, request that the Thread sleep for at least 10 milliseconds. This delay represents the time that it takes for a car to proceed through the intersection.

Step 2

A road is a simple queue. The first car in the road will call turnGreen and be removed. After waiting a short amount of time (for example, 250 milliseconds), the next car in the road will call turnGreen, until the road is empty.

Implement a RoadRunnable class. Part of the class code has been provided for you:

MSSQL using C# and Charting Libraries

  1. using System.Data.SqlClient;
  2. using System.Windows.Forms.DataVisualization.Charting;
  3. ...
  4. System.Data.SqlClient.SqlConnection conn = new System.Data.SqlClient.

Pages

Subscribe to Chris House RSS