August 31, 2008

Online Casino Reports

Everheard of onlinecasinoreports.com? Basically their site is to improve gamblers’ lives by giving them helpful services, media broadcasts, do’s and don’ts guide, sharing community and many more features.

Their website also has this online news and reviews in a high quality video format. Which has weely news videos and headlines, interviews and tips for the players. They also have reviews of online casinos bingo sites, sport betting and more and can be viewed in a video format. This website also has blogs, forum discussions and sharing options. And most importantly this website also has free online gaming for gamblers. And by joining their website you can also receive their online casino bonuses.

This website has been in service since 1997, its has been 11 years. As time pass by they also changed, as we have now morphed from web portal to sharing community. This means that they know what they are doing, they are the Pro’s in this kind of business. They have grown and has become the most popular online gambling and online gaming community.

In addition to news coverage from across the industry, we provide valuable resources and services, including real-time jackpot meters, rich-media gambling guides and lessons, an active discussion forum, personal spaces with blogs and tag clouds and other terrific features. We set up the Online Casino Reports blog so that we will have another channel to talk to you and tell you about the site’s features, products and technology, to share our vision and editorial stand on matters relating to gambling, and report special promotions.

 

Why dont you check the site now! www.onlinecasinoreports.com/

August 29, 2008

Internet Casino


The biggest, safest and coolest casino is in town! I got stumbled on this casino website named http://www.online-casinos.com, this website offers you the most excellent, secured, honest, high ranked reviews of online slots casinos. If you are looking for a fun playing, user-friendly & informative internet casinos, that’s exactly what this site offers you.

Basically, their goal is to allow players to play this game with confidence and know the do’s and don’ts and giving the gamers a possibility to win. If you are new to this game this website has all the things that you need namely the Graphic User Interface instruction and guidance to advance strategies.

And if you are still having second thoughts on playing the game, you could just play their free casino games. Their website will update you with anything that’s new in their website, just subscribe to their RSS feed and that’s it, news would be sent to your email address.

So, why don’t you check the website out!

Operating System : Non-Preemptive Shortest Job First(SJF)


CORRECTION FOR LAST SESSION:

 Example of Non-Preemptive SJF

 

Process            Arrival Time                 Burst Time

P1                                0.0                               7

P2                                2.0                               4

P3                                4.0                               1

P4                                5.0                               4

COMPUTATION FOR:

Average waiting time = (0 + 6 + 3 + 7)/4  = 4

            Note:

            1) Waiting Time P1 = 0 —— means it did not wait

            2) Waiting Time P2 = 6 ——- because it total waiting time based on the Gant Chart is 8 ms. But remember, it arrived 2 ms from the start of the CPU catering all processes, so  2 ms should be deducted from 8 ms, making it 6 ms only its waiting time.

            3) Waiting Time P3 = 3 —— based on the Gant Chart, it would appear 7 ms its waiting time, but remember it arrives 4 ms from the start of the CPU catering all processes, so  4 ms should be deducted from 7 ms, making it 3 ms only its waiting time.

            4) Waiting Time P4 = 7 —— based on the Gant Chart, it would appear 12 ms its waiting time, but remember it arrives 5 ms from the start of the CPU catering all processes, so  5 ms should be deducted from 12 ms, making it 7 ms only its waiting time.

Therefore,

AWT = P1 + P2 +P3 + P4 = (0 + 6 + 3 + 7)/4  = 4 ms

August 10, 2008

Zenni’s $8 glasses

Need the right glasses or you want it to be more fashionable. I just surfed a website which can offer you all the things the you need to pimp up an eyeglass, whether its the glass, frames, color and most of all the style.

Using the latest modern materials, manufacturing and marketing systems we bring our product direct from our factories to you. No Middlemen,no retail overhead,and practically no advertising budget,(we leave it to you, our satisfied customers to spread the word,), we do not pay for or sell expensive, or even inexpensive, brand names, but only our own manufactured brand ZENNI.

Eyeglasses are definitely a personal fashion and style item, and to that end we strive to provide a fashionable and stylish product. More importantly, we feel prescription eyeglasses are a health item necessity for most wearers, and to that end we take considerable pride in being able to bring to all a very high quality product of great durability, safety and comfort at truly reasonable and affordable prices.  

Visit the site here : Incredible Stylish New Frames From Zenni Zenni Optical was on FOX news! Zenni Optical $ 8 Rx Eyeglasses

August 7, 2008

CFM Inserting Values to the Database Table

Cold Fusion Code:

Inserting Values to the Database Table.

<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>

<cfif IsDefined(’FORM.submit’)>
<cfquery  datasource="dsSchDb">
INSERT INTO Employee(employee_ID, lastname, firstname, age, address, city, department_ID, salary)
VALUES(#FORM.employee_ID#, ‘#FORM.lastname#’, ‘#FORM.firstname#’, #FORM.age#, ‘#FORM.address#’, ‘#FORM.city#’, #FORM.department_ID#, #FORM.salary#)
</cfquery>
<cfoutput>#FORM.lastname#, #FORM.firstname# Has Been Successfully Added….</cfoutput>
</cfif>

<form name = "name" method="post" action="">
<table width="100%" border="1">
  <tr>
    <td>Employee ID</td>
    <td><input name="employee_ID" type="text"></td>
  </tr>
  <tr>
    <td>Last Name</td>
    <td><input name="lastname" type="text"></td>
  </tr>
  <tr>
    <td>First Name</td>
    <td><input name="firstname" type="text"></td>
  </tr>
  <tr>
    <td>Age</td>
    <td><input name="age" type="text"></td>
  </tr>
  <tr>
    <td>Address</td>
    <td><input name="address" type="text"></td>
  </tr>
  <tr>
    <td>City</td>
    <td><input name="city" type="text"></td>
  </tr>
  <tr>
  <td>

Department
</td>
  <td>
 
  <select name = "department_id">
  <cfquery name = "qDept" datasource="dsSchDb">
  SELECT department_id, name
  From Department
  ORDER BY name
  </cfquery>
  <cfoutput query = "qDept">
  <option value = ‘#qDept.department_id#’>#qDept.name#</option>
  </cfoutput></select>  
 
  </tr>
  <tr>
    <td>Salary</td>
    <td><input name="salary" type="text"></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td><input name="submit" type="submit" value="Submit"></td>
  </tr>
</table>
</form>

</body>
</html>