<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2837999643174419543</id><updated>2011-09-03T07:30:28.464+08:00</updated><category term='`21w2'/><category term='Q3 spring'/><title type='text'>HS Technology</title><subtitle type='html'>Code, Chips, Gadgets and Dreams.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default?start-index=101&amp;max-results=100'/><author><name>PhillipsInChina</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>113</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-4967741965725898971</id><published>2007-05-29T10:40:00.000+08:00</published><updated>2007-05-29T10:58:06.041+08:00</updated><title type='text'>Finished Logo Project Debugger</title><content type='html'>&lt;a href="http://mfiles.naver.net/6dba5a8c97cba1173f66/data17/2007/5/29/282/hyeon_logo-cth1249.bin"&gt;http://mfiles.naver.net/6dba5a8c97cba1173f66/data17/2007/5/29/282/hyeon_logo-cth1249.bin&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;strong&gt;MAKE SURE THAT YOU RENAME .BIN TO .EXE&lt;/strong&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-4967741965725898971?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/4967741965725898971/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=4967741965725898971&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/4967741965725898971'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/4967741965725898971'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/05/finished-logo-project-debugger.html' title='Finished Logo Project Debugger'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-668776477949858723</id><published>2007-05-28T22:39:00.000+08:00</published><updated>2007-05-29T11:56:26.572+08:00</updated><title type='text'>Paul's Project</title><content type='html'>Public Class Form1 Private Structure LayOutSettings Dim PictureFileName Dim MyCurrentSettingFileName As String End Structure Private MyLayOut As New LayOutSettings&lt;br /&gt;Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown Select Case e.KeyCode Case Keys.Down If e.Control = True Then Label1.Top = (Label1.Top + 10) Else : Me.Opacity = Me.Opacity - 0.1 End If Case Keys.Up If e.Control = True Then Label1.Top = Label1.Top - 10 Else Me.Opacity = Me.Opacity + 0.1&lt;br /&gt;End If Case Keys.Left If e.Control = True Then Label1.Left = Label1.Left - 10 End If Case Keys.Right If e.Control = True Then Label1.Left = Label1.Left + 10 End If End Select End Sub&lt;br /&gt;Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load&lt;br /&gt;Label1.BorderStyle = BorderStyle.None Me.BackColor = Color.White Me.KeyPreview = True&lt;br /&gt;End Sub&lt;br /&gt;Private Sub FontToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles FontToolStripMenuItem.Click FontDialog1.ShowDialog() Label1.Font = FontDialog1.Font&lt;br /&gt;End Sub&lt;br /&gt;Private Sub FontColorToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles FontColorToolStripMenuItem.Click ColorDialog1.ShowDialog() Label1.ForeColor = ColorDialog1.Color End Sub&lt;br /&gt;Private Sub Label1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label1.Click Form2.show() End Sub&lt;br /&gt;Private Sub SolidToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SolidToolStripMenuItem.Click Label1.BorderStyle = BorderStyle.FixedSingle End Sub&lt;br /&gt;Private Sub NoneToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles NoneToolStripMenuItem.Click Label1.BorderStyle = BorderStyle.None End Sub&lt;br /&gt;Private Sub SolidToolStripMenuItem1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SolidToolStripMenuItem1.Click Me.FormBorderStyle = Windows.Forms.FormBorderStyle.Sizable End Sub&lt;br /&gt;Private Sub NoneToolStripMenuItem1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles NoneToolStripMenuItem1.Click Me.FormBorderStyle = Windows.Forms.FormBorderStyle.None End Sub&lt;br /&gt;Private Sub TransparencyColorToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TransparencyColorToolStripMenuItem.Click ColorDialog1.ShowDialog() Me.TransparencyKey = ColorDialog1.Color End Sub&lt;br /&gt;Private Sub LoadPictureToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles LoadPictureToolStripMenuItem.Click OpenFileDialog1.ShowDialog() MyLayOut.PictureFileName = OpenFileDialog1.FileName Me.BackgroundImage = System.Drawing.Image.FromFile(MyLayOut.PictureFileName)&lt;br /&gt;End Sub&lt;br /&gt;Private Sub ExitToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ExitToolStripMenuItem.Click Me.Close() End Sub&lt;br /&gt;Private Sub NewToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles NewToolStripMenuItem.Click Dim oForm As New Form1 oForm.Show() End Sub&lt;br /&gt;Private Sub SaveToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SaVeToolStripMenuItem.Click SaveFileDialog1.ShowDialog() SaveMySettings(SaveFileDialog1.FileName) ' SaveFileDialog1.ShowDialog() ' MyLayOut.MyCurrentSettingFileName = SaveFileDialog1.FileName() ' If MyLayOut.MyCurrentSettingFileName &lt;&gt; "" Then ' 'Dim sContents As String&lt;br /&gt;' ' IO.File.WriteAllText(MyLayOut.MyCurrentSettingFileName, sContents) ' IO.File.WriteAllText(MyLayOut.MyCurrentSettingFileName, MyLayOut.TextLeft &amp; vbNewLine &amp;amp;amp; MyLayOut.TextTop &amp; vbNewLine &amp;amp; MyLayOut.TextWidth &amp; vbNewLine &amp;amp; MyLayOut.TextHeight &amp; vbNewLine &amp;amp; MyLayOut.TextText &amp; vbNewLine &amp;amp; MyLayOut.TextFont &amp; vbNewLine &amp;amp; MyLayOut.TextBorder &amp; vbNewLine &amp;amp; MyLayOut.FormLeft &amp; vbNewLine &amp;amp; MyLayOut.FormTop &amp; vbNewLine &amp;amp; MyLayOut.FormWidth &amp; vbNewLine &amp;amp; MyLayOut.FormHeight &amp; vbNewLine &amp;amp; MyLayOut.FormColor &amp; vbNewLine &amp;amp; MyLayOut.FormBorder &amp; vbNewLine &amp;amp; MyLayOut.OpacityLevel &amp; vbNewLine &amp;amp; MyLayOut.TransparencyColor &amp; vbNewLine &amp;amp;amp; MyLayOut.PictureFileName &amp; vbNewLine &amp;amp; Label1.ForeColor.A &amp; vbNewLine &amp;amp; Label1.ForeColor.R &amp; vbNewLine &amp;amp; Label1.ForeColor.G &amp; vbNewLine &amp;amp; Label1.ForeColor.B)&lt;br /&gt;' End If&lt;br /&gt;'End Sub&lt;br /&gt;'Private Sub SaveAsToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SaveAsToolStripMenuItem.Click&lt;br /&gt;' SaveFileDialog1.ShowDialog()&lt;br /&gt;' MyLayOut.MyCurrentSettingFileName = SaveFileDialog1.FileName()&lt;br /&gt;' If MyLayOut.MyCurrentSettingFileName &lt;&gt; "" Then ' IO.File.WriteAllText(MyLayOut.MyCurrentSettingFileName, MyLayOut.TextLeft &amp; vbNewLine &amp;amp;amp; MyLayOut.FormTop &amp; vbNewLine &amp;amp; MyLayOut.TextHeight &amp; vbNewLine &amp;amp; MyLayOut.TextWidth &amp; vbNewLine &amp;amp; MyLayOut.FormLeft &amp; vbNewLine &amp;amp; MyLayOut.FormTop &amp; vbNewLine &amp;amp; MyLayOut.FormWidth &amp; vbNewLine &amp;amp; MyLayOut.FormHeight &amp; vbNewLine &amp;amp; MyLayOut.TextText &amp; vbNewLine &amp;amp; MyLayOut.TextFont &amp; vbNewLine &amp;amp; MyLayOut.TextColor &amp; vbNewLine &amp;amp; MyLayOut.TextBorder &amp; vbNewLine &amp;amp; MyLayOut.FormLeft &amp; vbNewLine &amp;amp; MyLayOut.FormTop &amp; vbNewLine &amp;amp; MyLayOut.FormWidth &amp; vbNewLine &amp;amp; MyLayOut.FormHeight &amp; vbNewLine &amp;amp; MyLayOut.FormColor &amp; vbNewLine &amp;amp; MyLayOut.FormBorder &amp; vbNewLine &amp;amp; MyLayOut.OpacityLevel &amp; vbNewLine &amp;amp; MyLayOut.TransparencyColor &amp; vbNewLine &amp;amp; MyLayOut.PictureFileName) ' End If End Sub&lt;br /&gt;Private Sub BorderToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BorderToolStripMenuItem.Click&lt;br /&gt;End Sub&lt;br /&gt;Private Sub MoveAmountToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MoveAmountToolStripMenuItem.Click&lt;br /&gt;End Sub&lt;br /&gt;Private Sub FileToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles FileToolStripMenuItem.Click 'MyLayOut.TextLeft = Label1.Left 'MyLayOut.TextTop = Label1.Top 'MyLayOut.TextWidth = Label1.Width 'MyLayOut.TextHeight = Label1.Height ''MyLayOut.TextMoveAmount = "" 'MyLayOut.TextText = Label1.Text 'MyLayOut.TextFont = Label1.Font.Name 'MyLayOut.TextColor = Label1.ForeColor.Name 'MyLayOut.TextBorder = Label1.BorderStyle&lt;br /&gt;'MyLayOut.FormLeft = Me.Left 'MyLayOut.FormTop = Me.Top 'MyLayOut.FormWidth = Me.Width 'MyLayOut.FormHeight = Me.Height ''MyLayOut.FormMoveAmount = "" 'MyLayOut.FormColor = Me.BackColor.Name 'MyLayOut.FormBorder = Me.FormBorderStyle&lt;br /&gt;'MyLayOut.OpacityLevel = Me.Opacity 'MyLayOut.TransparencyColor = Me.TransparencyKey.Name&lt;br /&gt;End Sub&lt;br /&gt;Private Sub OpenToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OpenToolStripMenuItem.Click OpenFileDialog1.ShowDialog() ReadMySettings(OpenFileDialog1.FileName) ' Dim sFile As String ' Dim aFields ' Dim b As Byte ' Dim MyColor1 As New Color&lt;br /&gt;' OpenFileDialog1.ShowDialog() ' sFile = System.IO.File.ReadAllText(OpenFileDialog1.FileName) ' aFields = Split(sFile, vbNewLine)&lt;br /&gt;' Label1.Left = aFields(0) ' Label1.Top = aFields(1) ' Label1.Width = aFields(2) ' Label1.Height = aFields(3) ' 'lblText Movement ' Label1.Text = aFields(4) ' Label1.Font = New Font(CStr(aFields(5)), 55, FontStyle.Italic, GraphicsUnit.Point, b) ' Label1.BorderStyle = 0&lt;br /&gt;' Me.Left = aFields(7) ' Me.Top = aFields(8) ' Me.Width = aFields(9) ' Me.Height = aFields(10) ' 'Me Movement ' 'Me.BackColor = aFields(11) ' Me.FormBorderStyle = aFields(12)&lt;br /&gt;' Me.Opacity = aFields(13) ' 'Me.TransparencyKey = aFields(14) ' If aFields(15) &lt;&gt; "" Then ' ' Me.BackgroundImage = aFields(15) ' End If ' MyColor1.FromArgb(aFields(16), aFields(17), aFields(18), aFields(19)) ' Label1.ForeColor = MyColor1 End Sub Private Sub ReadMySettings(ByVal sPathFile As String)&lt;br /&gt;'Dim sPathFile As String = Application.StartupPath &amp; "MyData.txt" Dim aContents Dim sFileName As String aContents = IO.File.ReadAllText(sPathFile).Split(vbNewLine)&lt;br /&gt;Me.Left = aContents(0) Me.Top = aContents(1) Me.Width = aContents(2) Me.Height = aContents(3)&lt;br /&gt;Me.BackColor = Color.FromArgb(aContents(4), aContents(5), aContents(6), aContents(7)) Me.TransparencyKey = Color.FromArgb(aContents(8), aContents(9), aContents(10), aContents(11))&lt;br /&gt;Label1.BackColor = Color.FromArgb(aContents(12), aContents(13), aContents(14), aContents(15)) Label1.ForeColor = Color.FromArgb(aContents(16), aContents(17), aContents(18), aContents(19)) Label1.Left = aContents(20) Label1.Top = aContents(21) Label1.Text = aContents(22) Label1.Font = New Font(CStr(aContents(23)), CSng(aContents(24)), CLng(aContents(25)), CLng(aContents(26)), CByte(aContents(27))) Label1.AutoSize = True 'Me.BackgroundImage = System.Drawing.Image.FromFile(aContents(28)) 'sFileName = CStr(aContents(28)) 'Dim aSplit 'Dim aSplit2 'aSplit = Split(sFileName, ":") 'aSplit2 = Split(aSplit(1), "S")&lt;br /&gt;'sFileName = Replace(aContents(28), aSplit2(0), "\") 'MsgBox(sFileName) 'MsgBox("\") Dim aSplit aSplit = Split(aContents(28), "C") MsgBox(aSplit(0)) sFileName = "C" &amp;amp; aSplit(1) MsgBox("a" &amp; aContents(28))&lt;br /&gt;Me.BackgroundImage = System.Drawing.Image.FromFile(sFileName) MsgBox("Finished", MsgBoxStyle.Information) End Sub Private Sub SaveMySettings(ByVal sPathFileName As String)&lt;br /&gt;'Dim sPathFile As String = Application.StartupPath &amp;amp; "MyData.txt" Dim sContents As String&lt;br /&gt;sContents = Me.Left &amp; vbNewLine sContents = sContents &amp;amp; Me.Top &amp; vbNewLine sContents = sContents &amp;amp; Me.Width &amp; vbNewLine sContents = sContents &amp;amp; Me.Height &amp; vbNewLine&lt;br /&gt;sContents = sContents &amp;amp; Me.BackColor.A &amp; vbNewLine sContents = sContents &amp;amp; Me.BackColor.R &amp; vbNewLine sContents = sContents &amp;amp; Me.BackColor.G &amp; vbNewLine sContents = sContents &amp;amp; Me.BackColor.B &amp; vbNewLine&lt;br /&gt;sContents = sContents &amp;amp; Me.TransparencyKey.A &amp; vbNewLine sContents = sContents &amp;amp; Me.TransparencyKey.R &amp; vbNewLine sContents = sContents &amp;amp; Me.TransparencyKey.G &amp; vbNewLine sContents = sContents &amp;amp; Me.TransparencyKey.B &amp; vbNewLine&lt;br /&gt;sContents = sContents &amp;amp; Label1.BackColor.A &amp; vbNewLine sContents = sContents &amp;amp; Label1.BackColor.R &amp; vbNewLine sContents = sContents &amp;amp; Label1.BackColor.G &amp; vbNewLine sContents = sContents &amp;amp; Label1.BackColor.B &amp; vbNewLine&lt;br /&gt;sContents = sContents &amp;amp; Label1.ForeColor.A &amp; vbNewLine sContents = sContents &amp;amp; Label1.ForeColor.R &amp; vbNewLine sContents = sContents &amp;amp; Label1.ForeColor.G &amp; vbNewLine sContents = sContents &amp;amp; Label1.ForeColor.B &amp; vbNewLine&lt;br /&gt;sContents = sContents &amp;amp; Label1.Left &amp; vbNewLine sContents = sContents &amp;amp; Label1.Top &amp; vbNewLine sContents = sContents &amp;amp; Label1.Text &amp; vbNewLine&lt;br /&gt;sContents = sContents &amp;amp; Label1.Font.Name &amp; vbNewLine sContents = sContents &amp;amp; Label1.Font.Size &amp; vbNewLine sContents = sContents &amp;amp; Label1.Font.Style &amp; vbNewLine sContents = sContents &amp;amp; Label1.Font.Unit &amp; vbNewLine sContents = sContents &amp;amp; Label1.Font.GdiCharSet &amp; vbNewLine sContents = sContents &amp;amp; MyLayOut.PictureFileName&lt;br /&gt;IO.File.WriteAllText(sPathFileName, sContents, System.Text.Encoding.Unicode)&lt;br /&gt;MsgBox("Saved", MsgBoxStyle.Information) End SubEnd Class&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-668776477949858723?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/668776477949858723/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=668776477949858723&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/668776477949858723'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/668776477949858723'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/05/pauls-project.html' title='Paul&apos;s Project'/><author><name>JediMaster</name><uri>http://www.blogger.com/profile/09920627628485725851</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-3541149451352448106</id><published>2007-05-25T16:09:00.000+08:00</published><updated>2007-05-25T16:39:57.120+08:00</updated><title type='text'>Layout application: Simplify saving and retriving settings</title><content type='html'>These two function simplify saving and retriving settings for the Layout application. &lt;br /&gt;You will need to add the code for the picture filename.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;  Private Sub ReadMySettings()&lt;br /&gt;&lt;br /&gt;        Dim sPathFile As String = Application.StartupPath &amp; "MyData.txt"&lt;br /&gt;        Dim aContents&lt;br /&gt;&lt;br /&gt;        aContents = IO.File.ReadAllText(sPathFile).Split(vbNewLine)&lt;br /&gt;&lt;br /&gt;        Me.Left = aContents(0)&lt;br /&gt;        Me.Top = aContents(1)&lt;br /&gt;        Me.Width = aContents(2)&lt;br /&gt;        Me.Height = aContents(3)&lt;br /&gt;&lt;br /&gt;        Me.BackColor = Color.FromArgb(aContents(4), aContents(5), aContents(6), aContents(7))&lt;br /&gt;        Me.TransparencyKey = Color.FromArgb(aContents(8), aContents(9), aContents(10), aContents(11))&lt;br /&gt;&lt;br /&gt;        Label1.BackColor = Color.FromArgb(aContents(12), aContents(13), aContents(14), aContents(15))&lt;br /&gt;        Label1.ForeColor = Color.FromArgb(aContents(16), aContents(17), aContents(18), aContents(19))&lt;br /&gt;        Label1.Left = aContents(20)&lt;br /&gt;        Label1.Top = aContents(21)&lt;br /&gt;        Label1.Text = aContents(22)&lt;br /&gt;        Label1.Font = New Font(CStr(aContents(23)), CSng(aContents(24)), CLng(aContents(25)), CLng(aContents(26)), CByte(aContents(27)))&lt;br /&gt;        Label1.AutoSize = True&lt;br /&gt;&lt;br /&gt;        MsgBox("Finished", MsgBoxStyle.Information)&lt;br /&gt;&lt;br /&gt;    End Sub&lt;br /&gt;    Private Sub SaveMySettings()&lt;br /&gt;&lt;br /&gt;        Dim sPathFile As String = Application.StartupPath &amp; "MyData.txt"&lt;br /&gt;        Dim sContents As String&lt;br /&gt;&lt;br /&gt;        sContents = Me.Left &amp; vbNewLine&lt;br /&gt;        sContents = sContents &amp; Me.Top &amp;amp; vbNewLine&lt;br /&gt;        sContents = sContents &amp; Me.Width &amp;amp; vbNewLine&lt;br /&gt;        sContents = sContents &amp; Me.Height &amp;amp; vbNewLine&lt;br /&gt;&lt;br /&gt;        sContents = sContents &amp; Me.BackColor.A &amp;amp; vbNewLine&lt;br /&gt;        sContents = sContents &amp; Me.BackColor.R &amp;amp; vbNewLine&lt;br /&gt;        sContents = sContents &amp; Me.BackColor.G &amp;amp; vbNewLine&lt;br /&gt;        sContents = sContents &amp; Me.BackColor.B &amp;amp; vbNewLine&lt;br /&gt;&lt;br /&gt;        sContents = sContents &amp; Me.TransparencyKey.A &amp;amp; vbNewLine&lt;br /&gt;        sContents = sContents &amp; Me.TransparencyKey.R &amp;amp; vbNewLine&lt;br /&gt;        sContents = sContents &amp; Me.TransparencyKey.G &amp;amp; vbNewLine&lt;br /&gt;        sContents = sContents &amp; Me.TransparencyKey.B &amp;amp; vbNewLine&lt;br /&gt;&lt;br /&gt;        sContents = sContents &amp; Label1.BackColor.A &amp;amp; vbNewLine&lt;br /&gt;        sContents = sContents &amp; Label1.BackColor.R &amp;amp; vbNewLine&lt;br /&gt;        sContents = sContents &amp; Label1.BackColor.G &amp;amp; vbNewLine&lt;br /&gt;        sContents = sContents &amp; Label1.BackColor.B &amp;amp; vbNewLine&lt;br /&gt;&lt;br /&gt;        sContents = sContents &amp; Label1.ForeColor.A &amp;amp; vbNewLine&lt;br /&gt;        sContents = sContents &amp; Label1.ForeColor.R &amp;amp; vbNewLine&lt;br /&gt;        sContents = sContents &amp; Label1.ForeColor.G &amp;amp; vbNewLine&lt;br /&gt;        sContents = sContents &amp; Label1.ForeColor.B &amp;amp; vbNewLine&lt;br /&gt;&lt;br /&gt;        sContents = sContents &amp; Label1.Left &amp;amp; vbNewLine&lt;br /&gt;        sContents = sContents &amp; Label1.Top &amp;amp; vbNewLine&lt;br /&gt;        sContents = sContents &amp; Label1.Text &amp;amp; vbNewLine&lt;br /&gt;&lt;br /&gt;        sContents = sContents &amp; Label1.Font.Name &amp;amp; vbNewLine&lt;br /&gt;        sContents = sContents &amp; Label1.Font.Size &amp;amp; vbNewLine&lt;br /&gt;        sContents = sContents &amp; Label1.Font.Style &amp;amp; vbNewLine&lt;br /&gt;        sContents = sContents &amp; Label1.Font.Unit &amp;amp; vbNewLine&lt;br /&gt;        sContents = sContents &amp; Label1.Font.GdiCharSet &amp;amp; vbNewLine&lt;br /&gt;&lt;br /&gt;        IO.File.WriteAllText(sPathFile, sContents)&lt;br /&gt;&lt;br /&gt;        MsgBox("Saved", MsgBoxStyle.Information)&lt;br /&gt;    End Sub&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-3541149451352448106?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/3541149451352448106/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=3541149451352448106&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3541149451352448106'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3541149451352448106'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/05/layout-application-simplify-saving-and.html' title='Layout application: Simplify saving and retriving settings'/><author><name>PhillipsInChina</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-9037137703730325315</id><published>2007-05-24T12:51:00.000+08:00</published><updated>2007-05-24T12:53:35.897+08:00</updated><title type='text'>Window Application</title><content type='html'>Lily Baik&lt;br /&gt;&lt;br /&gt;Public Class Form1&lt;br /&gt;Private Structure Layoutsettings&lt;br /&gt;Dim PictureFileName As String&lt;br /&gt;Dim TextHeight As String&lt;br /&gt;Dim TextWidth As String&lt;br /&gt;Dim TextTop As String&lt;br /&gt;Dim TextLeft As String&lt;br /&gt;Dim TextMoveAmount As String&lt;br /&gt;Dim TextText As String&lt;br /&gt;Dim TextFont As String&lt;br /&gt;Dim TextColor&lt;br /&gt;Dim TextBorder As String&lt;br /&gt;Dim FormLeft As String&lt;br /&gt;Dim FormTop As String&lt;br /&gt;Dim FormWidth As String&lt;br /&gt;Dim FormHeight As String&lt;br /&gt;Dim FormMoveAmount As String&lt;br /&gt;Dim FormColor&lt;br /&gt;Dim FormBorder As String&lt;br /&gt;Dim OpacityLevel As String&lt;br /&gt;Dim TransparencyColor&lt;br /&gt;Dim PicturePathFile As String&lt;br /&gt;Dim MyCurrentSettingFile As String&lt;br /&gt;End Structure&lt;br /&gt;Private mylayout As New Layoutsettings&lt;br /&gt;&lt;br /&gt;Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown&lt;br /&gt;Select Case e.KeyCode&lt;br /&gt;Case Keys.Down&lt;br /&gt;If e.Control = True Then&lt;br /&gt;Label1.Top = (Label1.Top + 10)&lt;br /&gt;Else : Me.Opacity = Me.Opacity - 0.1&lt;br /&gt;End If&lt;br /&gt;Case Keys.Up&lt;br /&gt;If e.Control = True Then&lt;br /&gt;Label1.Top = Label1.Top - 10&lt;br /&gt;Else&lt;br /&gt;Me.Opacity = Me.Opacity + 0.1&lt;br /&gt;End If&lt;br /&gt;Case Keys.Left&lt;br /&gt;If e.Control = True Then&lt;br /&gt;Label1.Left = Label1.Left - 10&lt;br /&gt;End If&lt;br /&gt;Case Keys.Right&lt;br /&gt;If e.Control = True Then&lt;br /&gt;Label1.Left = Label1.Left + 10&lt;br /&gt;End If&lt;br /&gt;End Select&lt;br /&gt;End Sub&lt;br /&gt;Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load&lt;br /&gt;Label1.BorderStyle = BorderStyle.None&lt;br /&gt;Me.BackColor = Color.White&lt;br /&gt;Me.KeyPreview = True&lt;br /&gt;End Sub&lt;br /&gt;Private Sub FontToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles FontToolStripMenuItem.Click&lt;br /&gt;FontDialog1.ShowDialog()&lt;br /&gt;Label1.Font = FontDialog1.Font&lt;br /&gt;End Sub&lt;br /&gt;Private Sub FontColorToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles FontColorToolStripMenuItem.Click&lt;br /&gt;ColorDialog1.ShowDialog()&lt;br /&gt;Label1.ForeColor = ColorDialog1.Color&lt;br /&gt;End Sub&lt;br /&gt;Private Sub SolidToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SolidToolStripMenuItem.Click&lt;br /&gt;Label1.BorderStyle = BorderStyle.FixedSingle&lt;br /&gt;End Sub&lt;br /&gt;Private Sub NoneToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles NoneToolStripMenuItem.Click&lt;br /&gt;Label1.BorderStyle = BorderStyle.None&lt;br /&gt;End Sub&lt;br /&gt;Private Sub SolidToolStripMenuItem1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SolidToolStripMenuItem1.Click&lt;br /&gt;Me.FormBorderStyle = Windows.Forms.FormBorderStyle.Sizable&lt;br /&gt;End Sub&lt;br /&gt;Private Sub NoneToolStripMenuItem1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles NoneToolStripMenuItem1.Click&lt;br /&gt;Me.FormBorderStyle = Windows.Forms.FormBorderStyle.None&lt;br /&gt;End Sub&lt;br /&gt;Private Sub TransparencyColorToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TransparencyColorToolStripMenuItem.Click&lt;br /&gt;ColorDialog1.ShowDialog()&lt;br /&gt;Me.TransparencyKey = ColorDialog1.Color&lt;br /&gt;End Sub&lt;br /&gt;Private Sub OpenFileDialog1_FileOk(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles OpenFileDialog1.FileOk&lt;br /&gt;End Sub&lt;br /&gt;Private Sub LoadpictureToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles LoadpictureToolStripMenuItem.Click&lt;br /&gt;OpenFileDialog1.ShowDialog()&lt;br /&gt;mylayout.PictureFileName = OpenFileDialog1.FileName&lt;br /&gt;Me.BackgroundImage = System.Drawing.Image.FromFile(mylayout.PictureFileName)&lt;br /&gt;End Sub&lt;br /&gt;Private Sub NewToolStripMenuItem1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles NewToolStripMenuItem1.Click&lt;br /&gt;Dim oForm As New Form1&lt;br /&gt;oForm.Show()&lt;br /&gt;End Sub&lt;br /&gt;'Private Sub SaveToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SaveToolStripMenuItem.Click&lt;br /&gt;' mylayout.TextLeft = Label1.Left&lt;br /&gt;' mylayout.TextTop = Label1.Top&lt;br /&gt;' mylayout.TextWidth = Label1.Width&lt;br /&gt;' mylayout.TextHeight = Label1.Height&lt;br /&gt;' SaveFileDialog1.ShowDialog()&lt;br /&gt;' mylayout.MyCurrentSettingFile = SaveFileDialog1.FileName&lt;br /&gt;&lt;br /&gt;'End Sub.&lt;br /&gt;Private Sub SaveToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SaveToolStripMenuItem.Click&lt;br /&gt;SaveFileDialog1.ShowDialog()&lt;br /&gt;mylayout.MyCurrentSettingFile = SaveFileDialog1.FileName()&lt;br /&gt;mylayout.TextLeft = Label1.Left&lt;br /&gt;mylayout.TextTop = Label1.Top&lt;br /&gt;mylayout.TextWidth = Label1.Width&lt;br /&gt;mylayout.TextHeight = Label1.Height&lt;br /&gt;mylayout.TextMoveAmount = ""&lt;br /&gt;mylayout.TextText = Label1.Text&lt;br /&gt;mylayout.TextFont = Label1.Font.Name&lt;br /&gt;mylayout.TextColor = Label1.ForeColor&lt;br /&gt;mylayout.TextBorder = Label1.BorderStyle&lt;br /&gt;mylayout.FormLeft = Me.Left&lt;br /&gt;mylayout.FormTop = Me.Top&lt;br /&gt;mylayout.FormWidth = Me.Width&lt;br /&gt;mylayout.FormHeight = Me.Height&lt;br /&gt;mylayout.FormMoveAmount = ""&lt;br /&gt;mylayout.FormColor = Me.BackColor&lt;br /&gt;mylayout.FormBorder = Me.FormBorderStyle&lt;br /&gt;mylayout.OpacityLevel = Me.Opacity&lt;br /&gt;mylayout.TransparencyColor = Me.TransparencyKey&lt;br /&gt;mylayout.PicturePathFile=Me.BackgroundImage.&lt;br /&gt;If mylayout.MyCurrentSettingFile &lt;&gt; "" Then&lt;br /&gt;IO.File.WriteAllText(mylayout.MyCurrentSettingFile, Label1.Text &amp; mylayout.TextWidth &amp;amp; mylayout.TextTop &amp; mylayout.TextLeft &amp;amp; mylayout.TextHeight &amp;amp; mylayout.PictureFileName)&lt;br /&gt;End If&lt;br /&gt;End Sub&lt;br /&gt;Private Sub MoveAmountToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MoveAmountToolStripMenuItem.Click&lt;br /&gt;End Sub&lt;br /&gt;End Class&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-9037137703730325315?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/9037137703730325315/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=9037137703730325315&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/9037137703730325315'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/9037137703730325315'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/05/window-application.html' title='Window Application'/><author><name>LP4eva</name><uri>http://www.blogger.com/profile/05987785484086912053</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-4269530649452026638</id><published>2007-05-24T12:36:00.001+08:00</published><updated>2007-05-24T12:36:57.501+08:00</updated><title type='text'>setting and getting a color object</title><content type='html'>'setting a color object using Alpha, Red, Blue, Green arguments&lt;br /&gt;        Label1.BackColor = Color.FromArgb(255, 212, 11, 123)&lt;br /&gt;&lt;br /&gt;        'getting a color object  Alpha, Red, Blue, Green arguments&lt;br /&gt;        Dim MyColor As Color = Color.FromArgb(255, 212, 11, 123)&lt;br /&gt;        Me.TransparencyKey = MyColor&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-4269530649452026638?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/4269530649452026638/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=4269530649452026638&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/4269530649452026638'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/4269530649452026638'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/05/setting-and-getting-color-object.html' title='setting and getting a color object'/><author><name>PhillipsInChina</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-7695210513888645501</id><published>2007-05-23T14:19:00.001+08:00</published><updated>2007-05-23T14:34:16.897+08:00</updated><title type='text'>DianaJung</title><content type='html'>&lt;a href="http://rapidshare.com/files/32873424/project_________.zip.html" target="_blank"&gt;http://rapidshare.com/files/32873424/project_________.zip.html&lt;/a&gt;&lt;a href="http://rapidshare.com/files/32872275/dianajung.zip.html" target="_blank"&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This conversion is written in Visual Basic .net.&lt;br /&gt;Yoou wil need .Net2.0 to run this program^^&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;amp;displaylang=en&lt;/a&gt; &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;amp;displaylang=en"&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-7695210513888645501?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/7695210513888645501/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=7695210513888645501&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7695210513888645501'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7695210513888645501'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/05/httprapidshare.html' title='DianaJung'/><author><name>jjungnang</name><uri>http://www.blogger.com/profile/04350249646790615419</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-1506412652528689443</id><published>2007-05-22T14:59:00.000+08:00</published><updated>2007-05-23T14:38:25.317+08:00</updated><title type='text'>Converter</title><content type='html'>Written using Visual Basic .net.&lt;br /&gt;&lt;br /&gt;You will need .NET 2.0 to run the program.&lt;br /&gt;&lt;br /&gt;"Converter" only works in a windows computer.&lt;br /&gt;&lt;br /&gt;If you have .NET, download "Converter.zip" only&lt;br /&gt;&lt;br /&gt;Converter:&lt;br /&gt;&lt;a href="http://rapidshare.com/files/32873945/Converter.zip.html" target="_blank"&gt;http://rapidshare.com/files/32873945/Converter.zip.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;If the program doesn't work, try downloading .NET 2.0 from microsoft.NET Framework 2.0: &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;amp;displaylang=en&lt;/a&gt; By John Cho&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-1506412652528689443?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/1506412652528689443/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=1506412652528689443&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/1506412652528689443'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/1506412652528689443'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/05/converter.html' title='Converter'/><author><name>Life Is Good</name><uri>http://www.blogger.com/profile/03512329762380639681</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-4455748253991941171</id><published>2007-05-22T14:56:00.001+08:00</published><updated>2007-05-23T14:32:35.098+08:00</updated><title type='text'>joanna lee</title><content type='html'>&lt;a href="http://rapidshare.com/files/32873470/conversion2.zip.html" target="_blank"&gt;http://rapidshare.com/files/32873470/conversion2.zip.html&lt;/a&gt;&lt;br /&gt;made by&lt;br /&gt;-joanna lee&lt;br /&gt;&lt;br /&gt;"conversion"&lt;br /&gt;&lt;br /&gt;this program will only work in a windows computer&lt;br /&gt;if the program doesn't work,&lt;br /&gt;then try downloading .net2 from microsoft&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;amp;displaylang=en&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-4455748253991941171?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/4455748253991941171/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=4455748253991941171&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/4455748253991941171'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/4455748253991941171'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/05/blog-post.html' title='joanna lee'/><author><name>joanna</name><uri>http://www.blogger.com/profile/07485944182540675269</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-3789046930280637579</id><published>2007-05-22T14:33:00.000+08:00</published><updated>2007-05-23T14:40:06.857+08:00</updated><title type='text'>Exchanging Machine</title><content type='html'>&lt;p&gt;Written using Visual Basic .net.&lt;/p&gt;&lt;p&gt;You will need .NET 2.0 to run the program.&lt;/p&gt;&lt;p&gt;Exchange Machine.exe at: &lt;a href="https://ssl.rapidshare.com/cgi-bin/collectorszone.cgi?savedfiles=1&amp;forbiddenfiles=0"&gt;https://ssl.rapidshare.com/cgi-bin/collectorszone.cgi?savedfiles=1&amp;amp;forbiddenfiles=0&lt;/a&gt;&lt;/p&gt;&lt;p&gt;.Net 2.0 :&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;amp;displaylang=en&lt;/a&gt; &lt;/p&gt;&lt;p&gt;By Jacky Chen&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-3789046930280637579?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/3789046930280637579/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=3789046930280637579&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3789046930280637579'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3789046930280637579'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/05/exchanging-machine.html' title='Exchanging Machine'/><author><name>minotour79</name><uri>http://www.blogger.com/profile/09154549064706987281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-5564567091741307277</id><published>2007-05-21T14:57:00.000+08:00</published><updated>2007-05-21T15:03:27.510+08:00</updated><title type='text'>Conversion Tool</title><content type='html'>Written using Visual Basic .net.&lt;br /&gt;You will need .NET 2.0 to run the program.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://rapidshare.com/files/32491987/ConversionTool.zip.html"&gt;Download Program&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en"&gt;Download .NET Framework 2.0 from Microsoft&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;- by. Minsung&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-5564567091741307277?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/5564567091741307277/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=5564567091741307277&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5564567091741307277'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5564567091741307277'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/05/conversion-tool.html' title='Conversion Tool'/><author><name>英雄</name><uri>http://www.blogger.com/profile/08646170553588255533</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-7316526378076939393</id><published>2007-04-25T13:04:00.000+08:00</published><updated>2007-04-25T13:05:21.144+08:00</updated><title type='text'>BlackBerry Inside Windows Mobile By Paul Lee</title><content type='html'>Until a couple of weeks ago, I was a BlackBerry user--then I switched to a Palm Treo 750 running Windows Mobile. Both devices have their advantages--and now it looks like we may get the best of both worlds.&lt;br /&gt;BlackBerry manufacturer RIM announced yesterday that it's working on software that would essentially &lt;a href="http://www.internetnews.com/wireless/article.php/3673621" target="_blank"&gt;turn Windows Mobile 6-based devices into BlackBerries&lt;/a&gt;. In other words, folks who ran this software on a WM6 phone would get versions of the BlackBerry e-mail, calendar, and other applications, and could sync wirelessly with their companies' BlackBerry servers.&lt;br /&gt;The details here are still sketchy, but if the BB-on-Windows apps do the job well, it could be a boon to anyone who works in a company that's standardized on BlackBerries but who wants a wider range of handsets to choose from. (There are already plenty of ways to get BlackBerry-style functionality on a Windows phone, including Microsoft's own mobile push server software for Exchange and Good Technology's server and client applications.)&lt;br /&gt;All in all, I don't think this'll be that huge a deal--in part because RIM already released a software/service package called BlackBerry Connect that lets non-BlackBerries connect to the BlackBerry service, and it doesn't seem to have changed the world. (The Windows Mobile version isn't offered by any U.S. carrier that I know of; the Palm OS one is available for Palm-based Treos from Cingular.)&lt;br /&gt;But maybe I'll be surprised--and I assume that RIM thinks it can sell more server software and service if its stuff works with any BlackBerry and any Windows Mobile phone.&lt;br /&gt;And I might be interested in it myself, if it lets me get my PC World Lotus Notes e-mail and calendar with BlackBerry-like rock-solid reliability on my Treo 750. (At the moment, I'm using Cingular's XpressMail to do the job, and I'm never quite sure whether it's actually going to work or not.)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-7316526378076939393?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/7316526378076939393/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=7316526378076939393&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7316526378076939393'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7316526378076939393'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/04/blackberry-inside-windows-mobile-by.html' title='BlackBerry Inside Windows Mobile By Paul Lee'/><author><name>JediMaster</name><uri>http://www.blogger.com/profile/09920627628485725851</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-8937497389289422042</id><published>2007-04-25T13:03:00.000+08:00</published><updated>2007-04-25T13:05:59.308+08:00</updated><title type='text'>Distant world has comforts of home</title><content type='html'>&lt;a href="http://www.chicagotribune.com/news/local/chi-070424planet,1,6516694.story?coll=chi-news-hed"&gt;http://www.chicagotribune.com/news/local/chi-070424planet,1,6516694.story?coll=chi-news-hed&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Lily Baik&lt;br /&gt;By Jeremy ManierTribune staff reporterPublished April 24, 2007, 10:32 PM CDT European astronomers say they have found the first Earth-sized planet beyond this solar system with temperatures mild enough to allow liquid water—a crucial step toward answering whether our cradle of life is unique in the universe.&lt;br /&gt;The planet circles the star Gliese 581 in the Libra constellation, and at 20 light years away is among the 100 stars closest to Earth. Dubbed Gliese 581c, the planet orbits very close to its star—closer than Mercury is to our sun. But astronomers with the European Southern Observatory say the star is dim enough that average temperatures on the planet would fall in the range of an ordinary Chicago spring day.&lt;br /&gt;If the planet has water—a big unknown—its size and climate could make it habitable, experts said. The planet appears to be about 50 percent larger than Earth and has five times more mass, making it one of the smallest far-off planets ever detected.&lt;br /&gt;The conditions look promising enough that officials with the California-based SETI Institute, which looks for signs of radio communication from alien civilizations, said they hope to give the planet a fresh look this summer. Previous radio observations of Gliese 581 in the 1990s turned up nothing unusual.&lt;br /&gt;But the finding is a milestone in any case because it suggests that Earth-like planets may be common throughout the universe, astronomers said. Our galaxy alone could be home to 100 million habitable planets, if such worlds are as easy to spot as the new study indicates.&lt;br /&gt;"This is a marvelous discovery," said astronomer Geoff Marcy, a principal investigator for the California and Carnegie Planet Search. Marcy's group had been racing the Europeans to find the first potentially Earth-like planet.&lt;br /&gt;Next year NASA plans to launch the Kepler probe, designed to find even more Earth-sized planets outside our solar system. That probe will survey thousands of stars in hopes of catching sight of planets that cross in front of them.&lt;br /&gt;As with nearly all such planetary discoveries, astronomers could not observe Gliese 581 directly because it is invisible in the glare of its sun. Instead, the European group led by Stephane Udry and Michael Mayor calculated the planet's presence from its tiny gravitational tug on the star.&lt;br /&gt;The research group released its results Tuesday night and has submitted the work for publication in the journal Astronomy and Astrophysics.&lt;br /&gt;The hunt for far-flung planets has made dizzying progress since 1995, when Mayor and his Swiss colleagues discovered a large extrasolar planet circling a star called 51 Pegasi.&lt;br /&gt;The method they use is straightforward but requires exquisitely precise measurements: Astronomers must scrutinize stars for wobbles caused by the gravity of their planets. Because most planets are tiny compared with the stars they orbit, the wobble can be extremely small.&lt;br /&gt;At first, scientific critics wondered whether the wobbles were merely byproducts of the stars' natural oscillations or resulted from companion stars and not planets. But experts said the techniques have been accepted and are responsible for the discovery of 227 distant planets.&lt;br /&gt;Until the last few years, the only planets found in this way were huge gas giants, similar to Jupiter or even larger. None approached Earth's relatively small size.&lt;br /&gt;To find Gliese 581c, Mayor's group used a cutting-edge planet-seeking instrument at an observatory in La Silla, Chile. The telescope has a device called a spectrograph that can detect small shifts in a star's light as it moves in relation to Earth. When the star edges toward Earth, its light shifts to the blue end of the spectrum; when the star moves away, the light undergoes a red shift.&lt;br /&gt;In the case of Gliese 581c, the planet's pull on the star produced minute shifts in light. The star's movement was as slow as 2 meters per second—about the speed of a person walking in a park.&lt;br /&gt;"We're to the point where we can see if stars are strolling toward us or strolling away from us," said Steve Vogt, a professor of astronomy and astrophysics at the University of California at Santa Cruz and a member of the California-Carnegie planet search team.&lt;br /&gt;Vogt called the achievement "a landmark discovery."&lt;br /&gt;If it is habitable, Gliese 581c would be a bizarre home for life. It orbits so close to the star that its year is about 13 days long, and it is probably locked with one face constantly facing its sun. On the light side of the planet the sun would dominate the sky, but because it is a relatively weak red dwarf star, average temperatures on the planet would range between 32 and 104 degrees Fahrenheit.&lt;br /&gt;No one knows if the planet has water, or even if it has a solid surface. Some experts said the planet could be a smaller version of gaseous planets like Neptune, with a deep atmosphere and little chance for life to take hold. But models of planetary formation suggest that's unlikely, said Bruce Jakosky, a planetary scientist at the University of Colorado.&lt;br /&gt;"We would lean pretty strongly toward the idea that this has to be a rocky object," said Jakosky, who specializes in astrobiology—the study of how life might arise on other planets.&lt;br /&gt;The odds so far suggest the galaxy may be littered with such worlds. Planets have been detected near about 5 percent of the stars at which astronomers have looked, and the discovery of Gliese 581c suggests at least 1 percent of those stars have Earth-like planets. So amid the 200 billion stars of the Milky Way galaxy, some 100 million may have planets that meet the bare requirements for life.&lt;br /&gt;Beyond listening for radio transmissions, learning more about those planets will be difficult. It may be decades or longer before astronomers learn how to cancel out the glare of stars and directly observe far-off planets. And although Gliese 581 is our close neighbor in galactic terms, it would take thousands of years for the fastest modern spacecraft to reach it.&lt;br /&gt;The greatest value of planet hunting may lie beyond science and in the realm of philosophy, said Vogt of UC-Santa Cruz. Peering into the void of space so far away, we're really looking for reflections of our origins.&lt;br /&gt;"This is how I connect with the reason for our being," Vogt said. "Are we really rare, a freak of nature, or are there lots of places like this? I think this helps us get purchase on what this life means, and what's our place in the universe."&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-8937497389289422042?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/8937497389289422042/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=8937497389289422042&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/8937497389289422042'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/8937497389289422042'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/04/distant-world-has-comforts-of-home.html' title='Distant world has comforts of home'/><author><name>LP4eva</name><uri>http://www.blogger.com/profile/05987785484086912053</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-8259012075749736131</id><published>2007-04-23T13:16:00.001+08:00</published><updated>2007-04-23T13:18:53.344+08:00</updated><title type='text'>iRiver’s tiny PMP</title><content type='html'>&lt;a href="http://4.bp.blogspot.com/_pBR7gredByI/RixBmHMdrUI/AAAAAAAAAAM/V7La5kRy41E/s1600-h/clix2-600.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_pBR7gredByI/RixBmHMdrUI/AAAAAAAAAAM/V7La5kRy41E/s320/clix2-600.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5056488604652383554" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Brian Lee&lt;br /&gt;&lt;br /&gt;iRiver’s super slim Clix 2 multimedia player has hit the UK thanks to specialist retailer advancedmp3players.co.uk. The tiny PMP is packed with feature such as video playback and an FM tuner, yet still manages to be ridiculously slim measuring just 13mm at its thickest point.&lt;br /&gt;&lt;br /&gt;The tiny tot’s main claim to fame is that it can show videos on its 2.2inch OLED screen. And the videos it shows aren’t of the usual jerky variety you find on most flash-based PMPs. Oh no, this little fella will show MPEG4 and WMV movies at a smooth 30 frames per second. Naturally it can also pump out tunes in MP3, WMA and OGG formats.&lt;br /&gt;&lt;br /&gt;Navigating the menus should be a breeze as the player retains the D-click system used on the previous model where the front of the screen acts as a four way rocker switch for moving through the menus.  There’s also a built-in FM tuner and you can even setup timed recordings so it’ll automatically grab your favourite radio shows to memory.&lt;br /&gt;&lt;br /&gt;Another neat feature is its support for Flash content downloaded from websites. It even comes with some Flash games as standard.&lt;br /&gt;&lt;br /&gt;More news&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-8259012075749736131?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/8259012075749736131/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=8259012075749736131&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/8259012075749736131'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/8259012075749736131'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/04/irivers-tiny-pmp.html' title='iRiver’s tiny PMP'/><author><name>Yuria</name><uri>http://www.blogger.com/profile/16306955767736954908</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_pBR7gredByI/RixBmHMdrUI/AAAAAAAAAAM/V7La5kRy41E/s72-c/clix2-600.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-4508185227381093409</id><published>2007-04-23T13:16:00.000+08:00</published><updated>2007-04-23T13:17:05.480+08:00</updated><title type='text'>Inventors turn creations into cash</title><content type='html'>Lily Baik&lt;br /&gt;&lt;a href="http://www.cnn.com/2007/TECH/04/20/geneva.inventions.ap/index.html"&gt;http://www.cnn.com/2007/TECH/04/20/geneva.inventions.ap/index.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;GENEVA, Switzerland (AP) -- What do the automatic fish catcher, the easy sushi-maker, and the body-shaping petticoat all have in common? They're creations of some of the world's most innovative minds for the world's laziest bodies.&lt;br /&gt;Hoping to turn their contraptions into capital, some 700 inventors from 42 countries have gathered at the International Exhibition of Inventions to show off gizmos ranging from a multifunction umbrella that contains an anti-mugger alarm to personal armor made of coconut-fiber.&lt;br /&gt;The fair -- the world's largest of its kind -- features some 1,000 new inventions by industrial and commercial companies, independent researchers and even amateurs like one who offers a way to eat spare ribs without burning your fingers.&lt;br /&gt;Solutions for those resistant to exertion seem to be a recurring theme at this year's 35th edition, which runs until Sunday.&lt;br /&gt;One notable invention is the spring-loaded fish hook -- the equivalent of an underwater mouse trap. After attaching the float to the fishing pole, the "sportsman" lowers a lever into the set position. The fish has only to nibble on the bait to trigger the spring and find itself with a dart through the lips. (Caution: Do not bait the hook while the device is cocked, the pamphlet warns).&lt;br /&gt;But isn't that considered cheating?&lt;br /&gt;"Well, it could be," admitted inventor Michael Adcock, the only U.S. entry at the fair. "It's a lazy-man's way of fishing. That way you can drink more beer. That's what more fishermen are really out there for anyway. ... Normally, you've got to be watching the float. With this, you can look away, take a sip, do whatever."&lt;br /&gt;He said the fish catcher is most effective for pan fish such as bream, crappie, bass and catfish.&lt;br /&gt;Once they've nabbed their fresh fish, chefs who like to cut corners might be interested in Easy Sushi, a contraption that resembles a cigarette roller and allows any clumsy cook to whip up a masterful-looking maki in just minutes.&lt;br /&gt;Couch potatoes who are disinclined to diet can turn to custom-made body-shaping underwear.&lt;br /&gt;To parade her product, 47-year-old Taiwanese inventor and designer Pi-Yu Chuang donned one of the stylish body corsets, instantly reducing her waist from 29 to 23 inches (74 to 58 centimeters). The outfit, which costs around $800 (&amp;euro590), encases the torso and legs, is also bust-enhancing and has a handy full bottom snap-on flap.&lt;br /&gt;Mix indolence and the environment and you get the Standby Plug.&lt;br /&gt;According to inventor Karl Dorn's brother Aaron, a television in standby mode still uses up to 85 percent of the power it does when switched on. Leaving a TV on standby 16 hours a day in Britain can cost users an extra £17 ($34) a year, he added. But he claimed the Standby Plug shuts down appliances completely after they go into standby mode, preventing the needless consumption of electricity.&lt;br /&gt;The environment is a hot topic at this year's exhibit and not all entries are aimed at the lazy.&lt;br /&gt;The portable MacStrap, a lightweight emergency power pack for handheld portable appliances such as cell phones, digital cameras, MP3 players and iPods, seems like a must for hikers and campers. Worn outdoors for 35-40 minutes, the MacStrap can power a three-minute cell phone call. About 20 hours are needed to fully charge a phone, says creator Roark McMaster.&lt;br /&gt;A crematable funeral ornamentation called Memopack is another eco-friendly gem.&lt;br /&gt;Made from paper but resembling a standard marble or wood plate, Memopack can be personalized with pictures, drawings, a lock of hair or letters before being placed on the coffin, and can be burned or fully biodegraded.&lt;br /&gt;Inventions can only be entered only once at the Geneva show and must be patented. However, entries are not necessarily tested or screened by national authorities and cover a range from wonderful to wacky.&lt;br /&gt;Some far-out ideas included scented socks; an automatic food distributor for animals that includes a medical check up; and the Q-Grip, a utensil designed to hold hot pieces of meat by the bone.&lt;br /&gt;The PAP Ion Magnetic Inductor -- also known as the Papimi -- claims to increase the efficiency of the body on a cellular level through rapid electromagnetic pulses to help relieve pain. Austrian promoter Gernot Augustin also says he cured his mother of breast cancer with the apparatus.&lt;br /&gt;A 75-member jury will select the best invention and award prizes in 45 other categories on Sunday. The "Oscar of Inventions" is also awarded on the basis of a popular vote from visitors.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-4508185227381093409?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/4508185227381093409/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=4508185227381093409&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/4508185227381093409'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/4508185227381093409'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/04/inventors-turn-creations-into-cash.html' title='Inventors turn creations into cash'/><author><name>LP4eva</name><uri>http://www.blogger.com/profile/05987785484086912053</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-3846896695328397758</id><published>2007-04-23T13:13:00.000+08:00</published><updated>2007-04-23T13:14:48.396+08:00</updated><title type='text'>Ancient Rainforest Revealed in Coal Mine</title><content type='html'>Scientists exploring a mine have uncovered a natural Sistine chapel showing not religious paintings, but incredibly well preserved images of sprawling tree trunks and fallen leaves that once breathed life into an ancient rainforest. Replete with a diverse mix of extinct plants, the &lt;a href="http://www.livescience.com/php/multimedia/imagedisplay/img_display.php?pic=070423_fern_02.jpg&amp;cap=One+of+the+fossils+coating+the+mine%27s+ceiling+was+a+pteridosperm%2C+an+extinct+seed-producing+fern-like+plant.+Credit%3A+Howard+Falcon-Lang" rel="nofollow"&gt;300-million-year-old fossilized forest&lt;/a&gt; is revealing clues about the ecology of Earth’s first &lt;a href="http://www.livescience.com/environment/060321_green_growth.html" rel="nofollow"&gt;rainforests&lt;/a&gt; . The discovery and details of the forest are published in the May issue of the journal Geology. “We’re looking at one instance in time over a large area. It’s literally a snapshot in time of a multiple square mile area,” said study team member Scott Elrick of the Illinois State Geological Survey (ISGS). Forest findOver millions of years as sediments and plant material pile up, layer upon layer, the resulting bands become time indicators with the newest, youngest layer on the top and the oldest layer at the bottom. Typically geologists peel away a vertical slice of rocky material to look at material, including fossils, over a period of time. A coal mine offers a unique view of the past. Instead of a time sequence, illuminated in the layer upon layer of sediments, the roof of an underground mine reveals a large area within one of those sediment layers, or time periods. Miners in Illinois are used to seeing a few plant fossils strewn along a mine’s ceiling, but as they burrowed farther into this one, the sheer density and area covered by such fossils struck them as phenomenal, Elrick said. That’s when they called paleobotanist Howard Falcon-Lang from the University of Bristol in the United Kingdom and William DiMichele, a curator of fossil plants at the Smithsonian National Museum of Natural History. "It was an amazing experience. We drove down the mine in an armored vehicle, until we were a hundred meters below the surface,” Falcon-Lang said. “The fossil forest was rooted on top of the coal seam, so where the coal had been mined away the fossilized forest was visible in the ceiling of the mine.”Forest snapshotHere’s what the miners and other scientists saw underground: Relatively narrow passageways wind through the “cave,” marked off with stout 100-foot-wide pillars to ensure the roof doesn’t collapse. “It’s like in some bizarre Roman temple with tons of Corinthian pillars that are 100 feet across and only six feet tall,” Elrick told LiveScience. “As you’re walking down these passageways you see these pillars of coal on either side of you and above you—imagine an artist’s canvas painted a flat grey and that is sort of what the grey shale above the coal looks like.”The largest ever found, the fossil forest covers an area of about 40 square miles, or nearly the size of San Francisco. This ancient assemblage of flora is thought to be one of the first rainforests on Earth, emerging during the Upper Carboniferous, or Pennsylvanian, time period that extended from about 310 million to 290 million years ago. A reconstruction of the ancient forest showed that like today’s rainforests, it had a layered structure with a mix of plants now extinct: Abundant club mosses stood more than 130-feet high, towering over a sub-canopy of &lt;a href="http://www.livescience.com/php/multimedia/imagedisplay/img_display.php?pic=070423_fern_02.jpg&amp;amp;cap=One+of+the+fossils+coating+the+mine%27s+ceiling+was+a+pteridosperm%2C+an+extinct+seed-producing+fern-like+plant.+Credit%3A+Howard+Falcon-Lang" rel="nofollow"&gt;tree ferns&lt;/a&gt; and an assortment of shrubs and tree-sized horsetails that looked like giant asparagus.Flash freezeThe scientists think a major earthquake about 300 million years ago caused the region to drop below sea level where it was buried in mud. They estimate that within a period of months the forest was buried, preserving it “forever.” “Some of these tree stumps have been covered geologically speaking in a flash,” Elrick said.Because the spatial layout of the forest has been maintained, the scientists can learn about entire plant communities, not just individual plants. "This spectacular discovery allows us to track how the species make-up of the forest changed across the landscape, and how that species make-up is affected by subtle differences in the local environment," Falcon-Lang said.&lt;br /&gt;&lt;br /&gt;David Hyun&lt;br /&gt;URL:&lt;a href="http://news.yahoo.com/s/livescience/20070423/sc_livescience/ancientrainforestrevealedincoalmine;_ylt=AnqOC3Bvt6vHXd_tCJWhz8N7hMgF"&gt;http://news.yahoo.com/s/livescience/20070423/sc_livescience/ancientrainforestrevealedincoalmine;_ylt=AnqOC3Bvt6vHXd_tCJWhz8N7hMgF&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-3846896695328397758?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/3846896695328397758/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=3846896695328397758&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3846896695328397758'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3846896695328397758'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/04/ancient-rainforest-revealed-in-coal.html' title='Ancient Rainforest Revealed in Coal Mine'/><author><name>romopia</name><uri>http://www.blogger.com/profile/06556624145527321585</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-661875105261508742</id><published>2007-04-23T13:11:00.000+08:00</published><updated>2007-04-23T13:14:08.408+08:00</updated><title type='text'>Study: Violent Video Games Don't Make Kids Violent</title><content type='html'>Lily Baik&lt;br /&gt;&lt;a href="http://www.foxnews.com/printer_friendly_story/0,3566,266811,00.html"&gt;http://www.foxnews.com/printer_friendly_story/0,3566,266811,00.html&lt;/a&gt;&lt;br /&gt;Wednesday, April 18, 2007&lt;br /&gt;&lt;br /&gt;  LONDON  —&lt;br /&gt;Players of violent video games believe they are just "exhilarating" escapism which does not desensitize them to real-life mayhem, according to a new survey of one of the entertainment industry's fastest growing sectors.&lt;br /&gt;However, gamers do concede that people "who are already unhinged in some way" may be pushed over the edge if they play violent games obsessively.&lt;br /&gt;Responding to public and political concern about video games, the British Board of Film Classification (BBFC) commissioned the survey, interviewing gamers, parents and industry figures about their effect.&lt;br /&gt;• Click here to visit FOXNews.com's Video Gaming Center.&lt;br /&gt;The Board, which classifies up to 300 games a year, concluded that for gamers, "the violence helps make the play exhilaratingly out of reach of ordinary life."&lt;br /&gt;But it added, "gamers seem not to lose awareness that they are playing a game and do not mistake the game for real life."&lt;br /&gt;Video games tend to polarize opinions, with some games demonized for their graphic portrayals of violence.&lt;br /&gt;But one survey participant insisted they were not all living in a fantasy world that tempted them to turn violent: "I no more feel that I have actually scored a goal than I do that I have actually killed someone. I know it's not real."&lt;br /&gt;Another gamer said "Sometimes when I get really angry, I go upstairs and play some games and it calms me down."&lt;br /&gt;But some young gamers under the age of 15 said they found some of the violence upsetting. Uncomfortable about the level of gore portrayed in the graphics, they admitted to having nightmares.&lt;br /&gt;That prompted BBFC Director David Cooke to urge parents to be vigilant. He said it was vital to ensure children were protected from games with adult content.&lt;br /&gt;The survey canvassed reaction to a wide range of popular games from "Manhunt" and "Grand Theft Auto" to "World of Warcraft."&lt;br /&gt;One "Manhunt" fan admitted, "I was quite addicted to it. You really were sticking an axe in someone and taking a couple of chops to their neck until their head fell off."&lt;br /&gt;As for the attractions of "Grand Theft Auto" games, the survey concluded, "The sex makes a contribution to the exhilarating sense of trashing the tedious constraints of everyday life."&lt;br /&gt;But with fast developing technology, today's "cool" game soon becomes outdated.&lt;br /&gt;"It's like when you have a puppy, everyone wanted to know you. When it grows a year older, they don't want to know," one gamer concluded.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-661875105261508742?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/661875105261508742/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=661875105261508742&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/661875105261508742'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/661875105261508742'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/04/study-violent-video-games-dont-make.html' title='Study: Violent Video Games Don&apos;t Make Kids Violent'/><author><name>LP4eva</name><uri>http://www.blogger.com/profile/05987785484086912053</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-416289375502919502</id><published>2007-04-23T13:10:00.000+08:00</published><updated>2007-04-23T13:17:07.197+08:00</updated><title type='text'>Ruby Tuesday - Your own MIRACLE</title><content type='html'>&lt;FONT size=2&gt;&lt;EMBED src="http://mediafile.paran.com/MEDIA_4277841/BLOG/200704/1177227898_01. Ruby Tuesday - Your Own MIRACLE.mp3" type=audio/x-mpeg loop="true" autostart="true"&gt;&lt;/FONT&gt;&lt;br /&gt;&lt;br /&gt;Your Own MIRACLE - Ruby Tuesday [DJMAX PORTABLE 2 Opening Theme]&lt;br /&gt;Lyrics &amp; Vocal by Christine Jones&lt;br /&gt; &lt;br /&gt;Close your eyes.. Take some time just to center your soul and be at one..&lt;br /&gt;With the sky.. You can fly if you unfurl your wings to face the sun..&lt;br /&gt;In your mind, You will find all the power you need to get things done..&lt;br /&gt;And your dreams.. They can seem like mere shadows of brighter days to come...&lt;br /&gt; &lt;br /&gt;Shoot for the moon!!&lt;br /&gt;If you miss you will still be among the stars..&lt;br /&gt;Don't ever stop!!&lt;br /&gt;If you never give up you are guaranteed to go far..&lt;br /&gt; &lt;br /&gt;Be your very own miracle..&lt;br /&gt; You can win a race standing still.. Go on! (Go on!)&lt;br /&gt; Pick those beautiful feel up from off the floor rise and soar..&lt;br /&gt; Be your very own miracle..&lt;br /&gt; Just believe you can, and you will.. Have faith! (Have faith!)&lt;br /&gt; Every goal that you make is a chain you break to set your spirit free!&lt;br /&gt; &lt;br /&gt;Every page you have turned in this book of your life has led you here..&lt;br /&gt;Every step that you take you grow closer to conquering your fear..&lt;br /&gt; &lt;br /&gt;Dreams can come true!!&lt;br /&gt;but they depend on you and how strong you are..&lt;br /&gt;Don't ever stop!!&lt;br /&gt;If you never give up you are guaranteed to go far..&lt;br /&gt; &lt;br /&gt;Be your very own miracle..&lt;br /&gt; You can win a race standing still.. Go on! (Go on!)&lt;br /&gt; Pick those beautiful feel up from off the floor rise and soar..&lt;br /&gt; Be your very own miracle..&lt;br /&gt; Just believe you can, and you will.. Have faith! (Have faith!)&lt;br /&gt; Every goal that you make is a chain you break to set your spirit free!&lt;br /&gt;&lt;br /&gt;------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;Ruby Tuesday is a music artist who is very famous in Korea, Japan, and other country for making OST musics in Djmax.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-416289375502919502?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/416289375502919502/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=416289375502919502&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/416289375502919502'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/416289375502919502'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/04/ruby-tuesday-your-own-miracle.html' title='Ruby Tuesday - Your own MIRACLE'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-5519911874412879337</id><published>2007-04-23T13:09:00.000+08:00</published><updated>2007-04-23T13:13:05.473+08:00</updated><title type='text'>New Robot Eyes People With Human-Like Eyes By Paul Lee</title><content type='html'>A new breed of robots could soon break free of assembly-line duties to assist human living in myriad ways.&lt;br /&gt;MIT researchers recently demonstrated the capabilities of such a robot, named &lt;a href="javascript:siteSearch("&gt;Domo&lt;/a&gt;, which, like the robot in a recent General Motors ad, can transcend mass-production's repetition.&lt;br /&gt;It is designed to interact with humans and adapt to its environment in ways previously only imagined in science fiction.&lt;br /&gt;&lt;a href="http://www.foxnews.com/technology/innovation/" target="_self"&gt;• Click here for FOXNews.com's Patents and Innovation Center.&lt;/a&gt;&lt;br /&gt;Presently, Domo can identify objects, reach for them and place them on shelves. Unlike an assembly-line robot, Domo can sense its surroundings using a pair of video cameras for eyes; they are connected to 12 computers.&lt;br /&gt;The cameras are built into remarkably human-looking "eyeballs" for a reason, said Domo's developer, &lt;a href="javascript:siteSearch("&gt;Aaron Edsinger&lt;/a&gt;.&lt;br /&gt;"I found that, by making them immediately understandable as eyes, it was very easy to read [Domo's] eye-gaze direction, which is important when working with it," Edsinger said. "They also greatly increase people's comfort level with the robot."&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-5519911874412879337?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/5519911874412879337/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=5519911874412879337&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5519911874412879337'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5519911874412879337'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/04/new-robot-eyes-people-with-human-like.html' title='New Robot Eyes People With Human-Like Eyes By Paul Lee'/><author><name>JediMaster</name><uri>http://www.blogger.com/profile/09920627628485725851</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-7583809197990001254</id><published>2007-04-23T13:07:00.000+08:00</published><updated>2007-04-23T13:11:42.760+08:00</updated><title type='text'>Study: Teens protecting their</title><content type='html'>profiles&lt;a href="http://www.cnn.com/2007/TECH/internet/04/19/internet.youths.ap/index.html"&gt;http://www.cnn.com/2007/TECH/internet/04/19/internet.youths.ap/index.html&lt;/a&gt;Lily Baik&lt;br /&gt;NEW YORK (AP) -- Teens generally don't think twice about including their first names and photos on their personal online profiles, but most refrain from using full names or making their profiles fully public, a new survey finds.&lt;br /&gt;The Pew Internet and American Life Project reported Wednesday that two-thirds of teens with profiles on blogs or social-networking sites have restricted access to their profiles in some fashion, such as by requiring passwords or making them available only to friends on an approved list.&lt;br /&gt;The study comes amid growing concerns about online predators and other dangers on popular online hangouts like News Corp.'s MySpace and Facebook, which encourage their youth-oriented visitors to expand their circles of friends through messaging tools and personal profile pages.&lt;br /&gt;Social-networking sites have responded by offering users more controls over how much they make public and warning them about revealing too much.&lt;br /&gt;According to Pew, fewer than a third of teens with profiles use their last names, and a similar number include their e-mail addresses. Only 2 percent list their cell phone numbers.&lt;br /&gt;But 79 percent have included photos of themselves, with girls more likely to do so. Eighty-two percent use their first names, and half identify their schools.&lt;br /&gt;"Teens are manifesting the tension between wanting to keep themselves safe online and wanting to share themselves with their friends and potentially make new ones," said Amanda Lenhart, a senior research specialist at Pew. "Teens, particularly girls and younger teens, have gotten the message about protecting themselves on social networks, but the fun of these networks is the ability to share yourself with others on them."&lt;br /&gt;Dashiell Feiler, a 16-year-old high school junior, said he keeps his profiles open, but uses at most his first name and last initial. He said people who find him tend to be friends anyway, but he left off his full name as a precaution.&lt;br /&gt;"I just thought I didn't want anybody to figure out where I live," he said.&lt;br /&gt;According to Pew, 45 percent of online teens do not have profiles at all, a figure that contradicts widespread perceptions that the nation's youths are continually on MySpace. Lenhart said younger teens, in particular, tend to stay away, some because they fail to meet a site's minimum age requirements.&lt;br /&gt;Most of the teens with profiles say they use the sites to stay in touch with existing friends. Only half of teens with social-networking profiles say they use the sites to make new friends.&lt;br /&gt;A third of teens online say they have been contacted by strangers, not necessarily through social-networking sites. Of those, 21 percent say they responded to learn more about that person, and 23 percent say they felt scared or uncomfortable by the encounter.&lt;br /&gt;The telephone study of 935 American youths, ages 12 to 17, and their parents was conducted October 23 to November 19 and has a margin of sampling error of plus or minus 4 percentage points.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-7583809197990001254?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/7583809197990001254/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=7583809197990001254&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7583809197990001254'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7583809197990001254'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/04/study-teens-protecting-their.html' title='Study: Teens protecting their'/><author><name>LP4eva</name><uri>http://www.blogger.com/profile/05987785484086912053</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-3277556273682177790</id><published>2007-04-23T13:06:00.002+08:00</published><updated>2007-04-23T13:12:59.880+08:00</updated><title type='text'>U.S. billionaire returns from space trip</title><content type='html'>David Hyun&lt;br /&gt;&lt;br /&gt;KOROLYOV, Russia - An American billionaire who won a junior cosmonaut contest as a child returned Saturday from a dream voyage to the international space station, riding a Russian capsule to a soft landing on the Kazakh steppe&lt;br /&gt;Charles Simonyi, a 58-year-old native of Hungary who helped design Microsoft Word and Excel, smiled and chatted with rescuers who helped him gingerly out of the Soyuz capsule and appeared energized by his $25 million, two-week trip.&lt;br /&gt;The capsule carrying the space tourist, a Russian cosmonaut and a U.S. astronaut touched down after a more than three-hour return trip from the orbital station.&lt;br /&gt;Simonyi looked delighted after rescuers helped him from the rounded capsule, which lay askew on the bleak grassland, and into a chair covered with fur for warmth. He smiled, grinned broadly and spoke animatedly with members of a support crew who greeted him with hugs and handshakes.&lt;br /&gt;He then bit enthusiastically into a green apple — a traditional offering for space crews touching down in Kazakhstan, which is famous for the tasty fruit.&lt;br /&gt;Asked about his first impressions back on Earth, a smiling Simonyi said in Russian, "The sun is shining, the weather is good," in footage broadcast on state television. Simonyi had studied Russian in school in his native Hungary and took another language course in preparation for the flight.&lt;br /&gt;Cosmonaut Mikhail Tyurin looked pale and tired, but soon managed a smile in a video link with Mission Control. "The first thing I felt on Earth was the smell," he told the television network.&lt;br /&gt;Spanish-born U.S. astronaut Michael Lopez-Alegria, the last out of the capsule, sighed with relief, smiled and talked to the support crew as doctors monitored the men's vital signs.&lt;br /&gt;The astronaut set the U.S. record for continuous space flight by spending 215 days in orbit, and set another U.S. record — 10 space walks over his career.&lt;br /&gt;The capsule raced down to Earth after separating from the two other sections of the Soyuz TMA-9 craft following its departure from the station, where one of the final tasks the travelers performed was to move containers with biological experiments from refrigerators on the station into the Soyuz.&lt;br /&gt;Russian space agency chief Anatoly Perminov said all the cosmonauts "feel wonderful."&lt;br /&gt;"But of course, Charles Simonyi feels the best, which is understandable," he said. "He is already giving interviews left and right."&lt;br /&gt;Simonyi arrived at the station on April 9 — also courtesy of a Soyuz, which flew into space atop a Russian rocket from the Russian-leased launch facility in Baikonur, Kazakhstan — along with two other cosmonauts, who will remain on the station for about six months.&lt;br /&gt;Also staying in orbit was Sunita Williams, an American astronaut who arrived in December.&lt;br /&gt;Simonyi amassed the fortune that made his costly voyage possible through his work with computer software, including helping to develop Microsoft Word and Microsoft Excel.&lt;br /&gt;Another household name, his friend&lt;br /&gt;Martha Stewart'  watched his launch from Baikonur and was at Russian Mission Control outside Moscow when the Soyuz docked. She also spoke to him during a video linkup after he boarded the station.&lt;br /&gt;Simonyi followed in the footsteps of Dennis Tito, Mark Shuttleworth, Gregory Olsen and Anousheh Ansari — all "space flight participants" who have traveled to the international space station aboard Russian rockets in trips brokered by U.S.-based Space Adventures Ltd.&lt;br /&gt;Alexei Krasnov, head of the manned missions at the Russian space agency, praised Simonyi's determination, recounting that he won a trip to Moscow to meet with a Soviet cosmonaut as a prize in a space contest at age 13.&lt;br /&gt;"So many years have passed and the dream he had has been fulfilled," Krasnov said. "It costs dearly to realize your life's dream."&lt;br /&gt;&lt;br /&gt;URL:&lt;a href="http://news.yahoo.com/s/ap/20070421/ap_on_sc/russia_space;_ylt=Ap0lISDatAIx15ArnIMAFjWHgsgF"&gt;http://news.yahoo.com/s/ap/20070421/ap_on_sc/russia_space;_ylt=Ap0lISDatAIx15ArnIMAFjWHgsgF&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-3277556273682177790?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/3277556273682177790/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=3277556273682177790&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3277556273682177790'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3277556273682177790'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/04/us-billionaire-returns-from-space-trip.html' title='U.S. billionaire returns from space trip'/><author><name>romopia</name><uri>http://www.blogger.com/profile/06556624145527321585</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-1323745875922347537</id><published>2007-04-23T13:06:00.001+08:00</published><updated>2007-04-23T13:12:16.209+08:00</updated><title type='text'>Free PlayStation 3 .net Announces Industry First Guide That Shows You How to Get PlayStation 3 for Free</title><content type='html'>URL: http://biz.yahoo.com/bw/070420/20070420005728.html?.v=1&lt;br /&gt;Brian Lee&lt;br /&gt;&lt;br /&gt;LOS GATOS, Calif.--(BUSINESS WIRE)--Free PlayStation 3 .net released the industry's first free guide today that shows you how to get your own PlayStation 3 for free. The free PlayStation 3 guide details what industry websites provide the PlayStation 3 for free and how anyone in the world can acquire one without spending a cent.&lt;br /&gt; &lt;br /&gt;Most free PlayStation 3 websites require you to participate in two or more "sponsor offers" before you can receive your free PlayStation 3, resulting in you having to spend up to $200 before you can receive your PlayStation 3. However, Free PlayStation 3.net's new guide shows you how to get the PlayStation 3 for free, without having to participate in any of these sponsor offers.&lt;br /&gt;&lt;br /&gt;Free PlayStation 3 .net has researched and reviewed over fifty free PlayStation 3 web sites and have discovered that a few of them ask you to participate in their sponsor offers, but if you simply ignore their requests and proceed to the end of their sponsor offer pages, you will still get your free PlayStation 3.&lt;br /&gt;&lt;br /&gt;Most visitors to these free PlayStation 3, free Wii, free XBOX 360 and free PSP websites, that decide not to participate in the sponsor offers, never proceed past the sponsor offer pages to the final page where they are asked to confirm their email address one last time and told that their game console will be mailed to them shortly.&lt;br /&gt;&lt;br /&gt;Little do they know that on a few such web sites, that Free PlayStation 3 .net identifies, that simply proceeding to the last page will still result in them receiving their PlayStation 3 for free.&lt;br /&gt;&lt;br /&gt;"Thanks for showing me how to get a free PlayStation 3 and free Wii without having to spend a penny!" said recent website visitor, Ashley Parks of Chicago, Illinois.&lt;br /&gt;&lt;br /&gt;About Free PlayStation 3 .net&lt;br /&gt;&lt;br /&gt;Free PlayStation 3 .net has been helping people acquire the PlayStation 3 for free since May 2005. Learn more at www.FreePlayStation3.net.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-1323745875922347537?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/1323745875922347537/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=1323745875922347537&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/1323745875922347537'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/1323745875922347537'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/04/free-playstation-3-net-announces.html' title='Free PlayStation 3 .net Announces Industry First Guide That Shows You How to Get PlayStation 3 for Free'/><author><name>Yuria</name><uri>http://www.blogger.com/profile/16306955767736954908</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-5347148110821578964</id><published>2007-04-23T13:06:00.000+08:00</published><updated>2007-04-23T13:09:21.186+08:00</updated><title type='text'>Nintendo Wii Still On Top In Console Sales</title><content type='html'>&lt;a href="http://3.bp.blogspot.com/_m9o8RkkSz3E/Riw_YDkEJhI/AAAAAAAAADA/Gbsk60bYz-Y/s1600-h/nds.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5056486164136207890" style="FLOAT: right; MARGIN: 0px 0px 10px 10px; CURSOR: hand" alt="" src="http://3.bp.blogspot.com/_m9o8RkkSz3E/Riw_YDkEJhI/AAAAAAAAADA/Gbsk60bYz-Y/s320/nds.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;url: &lt;a href="http://www.slipperybrick.com/2007/04/nintendo-wii-sales-march/"&gt;http://www.slipperybrick.com/2007/04/nintendo-wii-sales-march/&lt;/a&gt;&lt;br /&gt;Hyeon Chung&lt;br /&gt;&lt;br /&gt;According to a report Thursday by NPD, the Nintendo Wii led the sales of current generation game consoles by once again beating out the Microsoft Xbox 360 and Sony Playstation 3. Nintendo sold 259,000 of the Wii game consoles with their new fangled controller last month, followed up by the Xbox 360 with 199,000 units sold and the PS3 selling 130,000 units. The Nintendo Wii has led unit sales in &lt;a href="http://www.slipperybrick.com/2007/02/wii-sales-january-top/"&gt;January&lt;/a&gt; and &lt;a href="http://www.slipperybrick.com/2007/03/wii-sales-february/"&gt;February&lt;/a&gt;, as well.&lt;br /&gt;This certainly doesn’t mean that Sony and Microsoft aren’t trying, however. Microsoft has been flaunting a new &lt;a href="http://www.slipperybrick.com/2007/03/xbox-360-elite-announced/"&gt;Xbox Elite&lt;/a&gt; with a larger 120GB internal hard drive to entice more customers by holding more media, and Sony has &lt;a href="http://www.slipperybrick.com/2007/04/sony-ends-20gb-ps3/"&gt;abandoned their 20GB PS3&lt;/a&gt; in the US and may be coming out with larger capacity console as well with rumors of an &lt;a href="http://www.slipperybrick.com/2007/04/ps3-getting-bigger/"&gt;80GB PS3&lt;/a&gt; in the near future.&lt;br /&gt;You might have noticed that we had to specify that Nintendo led sales in the CURRENT generation of game consoles. That’s because a little game console from a previous generation called the Sony PS2 selling at around $130 continues to leave all the others in its wake. The Playstation 2 sold 280,000 units in March, making a total of over 38 million units sold since the console was original launched back in Q4 of 2000.According to a report Thursday by NPD, the Nintendo Wii led the sales of current generation game consoles by once again beating out the Microsoft Xbox 360 and Sony Playstation 3. Nintendo sold 259,000 of the Wii game consoles with their new fangled controller last month, followed up by the Xbox 360 with 199,000 units sold and the PS3 selling 130,000 units. The Nintendo Wii has led unit sales in &lt;a href="http://www.slipperybrick.com/2007/02/wii-sales-january-top/"&gt;January&lt;/a&gt; and &lt;a href="http://www.slipperybrick.com/2007/03/wii-sales-february/"&gt;February&lt;/a&gt;, as well.&lt;br /&gt;This certainly doesn’t mean that Sony and Microsoft aren’t trying, however. Microsoft has been flaunting a new &lt;a href="http://www.slipperybrick.com/2007/03/xbox-360-elite-announced/"&gt;Xbox Elite&lt;/a&gt; with a larger 120GB internal hard drive to entice more customers by holding more media, and Sony has &lt;a href="http://www.slipperybrick.com/2007/04/sony-ends-20gb-ps3/"&gt;abandoned their 20GB PS3&lt;/a&gt; in the US and may be coming out with larger capacity console as well with rumors of an &lt;a href="http://www.slipperybrick.com/2007/04/ps3-getting-bigger/"&gt;80GB PS3&lt;/a&gt; in the near future.&lt;br /&gt;You might have noticed that we had to specify that Nintendo led sales in the CURRENT generation of game consoles. That’s because a little game console from a previous generation called the Sony PS2 selling at around $130 continues to leave all the others in its wake. The Playstation 2 sold 280,000 units in March, making a total of over 38 million units sold since the console was original launched back in Q4 of 2000.According to a report Thursday by NPD, the Nintendo Wii led the sales of current generation game consoles by once again beating out the Microsoft Xbox 360 and Sony Playstation 3. Nintendo sold 259,000 of the Wii game consoles with their new fangled controller last month, followed up by the Xbox 360 with 199,000 units sold and the PS3 selling 130,000 units. The Nintendo Wii has led unit sales in &lt;a href="http://www.slipperybrick.com/2007/02/wii-sales-january-top/"&gt;January&lt;/a&gt; and &lt;a href="http://www.slipperybrick.com/2007/03/wii-sales-february/"&gt;February&lt;/a&gt;, as well.&lt;br /&gt;This certainly doesn’t mean that Sony and Microsoft aren’t trying, however. Microsoft has been flaunting a new &lt;a href="http://www.slipperybrick.com/2007/03/xbox-360-elite-announced/"&gt;Xbox Elite&lt;/a&gt; with a larger 120GB internal hard drive to entice more customers by holding more media, and Sony has &lt;a href="http://www.slipperybrick.com/2007/04/sony-ends-20gb-ps3/"&gt;abandoned their 20GB PS3&lt;/a&gt; in the US and may be coming out with larger capacity console as well with rumors of an &lt;a href="http://www.slipperybrick.com/2007/04/ps3-getting-bigger/"&gt;80GB PS3&lt;/a&gt; in the near future.&lt;br /&gt;You might have noticed that we had to specify that Nintendo led sales in the CURRENT generation of game consoles. That’s because a little game console from a previous generation called the Sony PS2 selling at around $130 continues to leave all the others in its wake. The Playstation 2 sold 280,000 units in March, making a total of over 38 million units sold since the console was original launched back in Q4 of 2000.According to a report Thursday by NPD, the Nintendo Wii led the sales of current generation game consoles by once again beating out the Microsoft Xbox 360 and Sony Playstation 3. Nintendo sold 259,000 of the Wii game consoles with their new fangled controller last month, followed up by the Xbox 360 with 199,000 units sold and the PS3 selling 130,000 units. The Nintendo Wii has led unit sales in &lt;a href="http://www.slipperybrick.com/2007/02/wii-sales-january-top/"&gt;January&lt;/a&gt; and &lt;a href="http://www.slipperybrick.com/2007/03/wii-sales-february/"&gt;February&lt;/a&gt;, as well.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This certainly doesn’t mean that Sony and Microsoft aren’t trying, however. Microsoft has been flaunting a new &lt;a href="http://www.slipperybrick.com/2007/03/xbox-360-elite-announced/"&gt;Xbox Elite&lt;/a&gt; with a larger 120GB internal hard drive to entice more customers by holding more media, and Sony has &lt;a href="http://www.slipperybrick.com/2007/04/sony-ends-20gb-ps3/"&gt;abandoned their 20GB PS3&lt;/a&gt; in the US and may be coming out with larger capacity console as well with rumors of an &lt;a href="http://www.slipperybrick.com/2007/04/ps3-getting-bigger/"&gt;80GB PS3&lt;/a&gt; in the near future.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;You might have noticed that we had to specify that Nintendo led sales in the CURRENT generation of game consoles. That’s because a little game console from a previous generation called the Sony PS2 selling at around $130 continues to leave all the others in its wake. The Playstation 2 sold 280,000 units in March, making a total of over 38 million units sold since the console was original launched back in Q4 of 2000.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-5347148110821578964?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/5347148110821578964/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=5347148110821578964&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5347148110821578964'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5347148110821578964'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/04/nintendo-wii-still-on-top-in-console.html' title='Nintendo Wii Still On Top In Console Sales'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_m9o8RkkSz3E/Riw_YDkEJhI/AAAAAAAAADA/Gbsk60bYz-Y/s72-c/nds.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-1512637283986722116</id><published>2007-04-23T13:04:00.000+08:00</published><updated>2007-04-23T13:10:14.410+08:00</updated><title type='text'>Bill Gates says China to remain largest broadband market</title><content type='html'>&lt;a href="http://3.bp.blogspot.com/_m9o8RkkSz3E/Riw-yDkEJgI/AAAAAAAAAC4/5zVUfkh-JaQ/s1600-h/bill.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5056485511301178882" style="FLOAT: right; MARGIN: 0px 0px 10px 10px; CURSOR: hand" alt="" src="http://3.bp.blogspot.com/_m9o8RkkSz3E/Riw-yDkEJgI/AAAAAAAAAC4/5zVUfkh-JaQ/s320/bill.jpg" border="0" /&gt;&lt;/a&gt; url: &lt;a href="http://www.turkishpress.com/news.asp?id=172269"&gt;http://www.turkishpress.com/news.asp?id=172269&lt;/a&gt;&lt;br /&gt;&lt;div&gt;Hyeon Chung&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;China is set to remain the world's largest broadband market after recently overtaking the US, Bill Gates, chairman and co-founder of Microsoft Corp, told a forum in Beijing. &lt;/div&gt;&lt;div&gt;&lt;br /&gt;"China has surpassed the US in the number of broadband users. And once this is the largest market, it will stay the largest market. There's an advantage to having 1.3 billion people," Gates said.&lt;br /&gt;He noted that price constraints for fast, reliable Internet access were falling by the wayside. &lt;/div&gt;&lt;div&gt;&lt;br /&gt;"The price of broadband has been a limiting factor, but competition is bringing the price down," he said. &lt;/div&gt;&lt;div&gt;&lt;br /&gt;According to the state-controlled China Internet Network Information Center, China had 104 million broadband users at the end of last year. &lt;/div&gt;&lt;div&gt;&lt;br /&gt;China, currently a global leader in hardware, would soon become a leader in software, he added.&lt;br /&gt;"Innovation here is really growing at a rapid pace. I give a lot of credit here to the universities. China will be a leader ... it's already true for hardware, but it will also be true for software," Gates said. &lt;/div&gt;&lt;div&gt;&lt;br /&gt;He added that Microsoft had China's affection for mobile communications in mind when it recently signed a joint research deal with China's leading computer maker Lenovo.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-1512637283986722116?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/1512637283986722116/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=1512637283986722116&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/1512637283986722116'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/1512637283986722116'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/04/bill-gates-says-china-to-remain-largest.html' title='Bill Gates says China to remain largest broadband market'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_m9o8RkkSz3E/Riw-yDkEJgI/AAAAAAAAAC4/5zVUfkh-JaQ/s72-c/bill.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-5654362576526547166</id><published>2007-04-03T13:46:00.001+08:00</published><updated>2007-04-03T13:48:03.840+08:00</updated><title type='text'>ISC International Schools In China</title><content type='html'>&lt;p&gt;&lt;a href="http://www.internationalschoolschinaqingdao.com/"&gt;Qingdao MTI International School Qingdao China (USA Domain)&lt;/a&gt; &lt;/p&gt;&lt;p&gt;&lt;a href="http://www.internationalschoolsqingdao.com/"&gt;Qingdao MTI International School Qingdao China (USA Domain)&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.qmischina.com/"&gt;Qingdao MTI International School Qingdao China (China Domain)&lt;/a&gt; &lt;/p&gt;&lt;p&gt;&lt;a href="http://www.iscchengdu.org/"&gt;International School in Chengdu China&lt;/a&gt; &lt;/p&gt;&lt;p&gt;&lt;a href="http://www.syistigers.com/"&gt;International School in Shenyang China&lt;/a&gt; &lt;/p&gt;&lt;p&gt;&lt;a href="http://www.wuhanschool.com/"&gt;International School in Wuhan China&lt;/a&gt; &lt;/p&gt;&lt;p&gt;&lt;a href="http://www.tiseagles.org/"&gt;International School in Tinajin China&lt;/a&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-5654362576526547166?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/5654362576526547166/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=5654362576526547166&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5654362576526547166'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5654362576526547166'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/04/isc-international-schools-in-china_03.html' title='ISC International Schools In China'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-5874033731609218750</id><published>2007-04-03T13:46:00.000+08:00</published><updated>2007-04-03T13:47:22.113+08:00</updated><title type='text'>ISC International Schools in China</title><content type='html'>&lt;p&gt;&lt;a href="http://www.internationalschoolschinaqingdao.com/"&gt;Qingdao MTI International School Qingdao China (USA Domain)&lt;/a&gt; &lt;/p&gt;&lt;p&gt;&lt;a href="http://www.internationalschoolsqingdao.com/"&gt;Qingdao MTI International School Qingdao China (USA Domain)&lt;/a&gt; &lt;/p&gt;&lt;p&gt;&lt;a href="http://www.qmischina.com/"&gt;Qingdao MTI International School Qingdao China (China Domain)&lt;/a&gt; &lt;/p&gt;&lt;p&gt;&lt;a href="http://www.iscchengdu.org/"&gt;International School in Chengdu China&lt;/a&gt; &lt;/p&gt;&lt;p&gt;&lt;a href="http://www.syistigers.com/"&gt;International School in Shenyang China&lt;/a&gt; &lt;/p&gt;&lt;p&gt;&lt;a href="http://www.wuhanschool.com/"&gt;International School in Wuhan China&lt;/a&gt; &lt;/p&gt;&lt;p&gt;&lt;a href="http://www.tiseagles.org/"&gt;International School in Tinajin China&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-5874033731609218750?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/5874033731609218750/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=5874033731609218750&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5874033731609218750'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5874033731609218750'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/04/isc-international-schools-in-china.html' title='ISC International Schools in China'/><author><name>Yuria</name><uri>http://www.blogger.com/profile/16306955767736954908</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-5240446383633383207</id><published>2007-04-03T13:43:00.001+08:00</published><updated>2007-04-03T13:43:35.258+08:00</updated><title type='text'>QMIS Qingdao MTI International School China ISC</title><content type='html'>&lt;a href="http://www.internationalschoolschinaqingdao.com/" &gt;Qingdao MTI International School Qingdao China&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-5240446383633383207?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/5240446383633383207/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=5240446383633383207&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5240446383633383207'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5240446383633383207'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/04/qmis-qingdao-mti-international-school.html' title='QMIS Qingdao MTI International School China ISC'/><author><name>Yuria</name><uri>http://www.blogger.com/profile/16306955767736954908</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-1143416222364336844</id><published>2007-03-22T13:06:00.000+08:00</published><updated>2007-03-22T13:09:34.862+08:00</updated><title type='text'>Apple TV connects your computer to your TV</title><content type='html'>&lt;a href="http://1.bp.blogspot.com/_m9o8RkkSz3E/RgIPhRE7SvI/AAAAAAAAACM/SQFVMQE082E/s1600-h/appletv.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5044611596802542322" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" height="149" alt="" src="http://1.bp.blogspot.com/_m9o8RkkSz3E/RgIPhRE7SvI/AAAAAAAAACM/SQFVMQE082E/s320/appletv.jpg" width="127" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;p&gt;url : &lt;a href="http://news3.xinhuanet.com/english/2007-03/22/content_5881199.htm"&gt;http://news3.xinhuanet.com/english/2007-03/22/content_5881199.htm&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;Hyeon Chung&lt;/p&gt;&lt;br /&gt;&lt;p&gt;Apple TV is a box that can connect computers and TVs without wires. After many delays, Apple TV finally went on sale Wednesday for 300 U.S. dollars.&lt;br /&gt;Apple does have competition in Microsoft's Xbox 360 (400 dollars), which also acts as a bridge between PC and TV, and Netgear's week-old EVA8000 (350 dollars). Xbox 360 also has its own online movie store, and Netgear features an Internet connection for viewing YouTube videos and listening to Internet radio.&lt;br /&gt;A good feature of Apple TV is it's small and quiet compared to the Xbox, but a drawback is it requires a widescreen TV -- preferably an HDTV. It doesn't work with the traditional TVs many people still have.&lt;br /&gt;Apple defends its audience-limiting decision by saying the future is HDTV; Apple is just "skating to where the puck is going to be," as a product manager put it.&lt;br /&gt;Apple TV doesn't come with any cables. You're supposed to supply the one your TV requires (HDMI, component video or HDMI-to-DVI adapter).&lt;br /&gt;Basically, Apple TV is an iPod for your TV. It copies the iTunes library (music, podcasts, TV shows, movies) from one Mac or Windows PC on your wired or wireless home network to its 40-gigabyte hard drive and keeps the copy updated.&lt;br /&gt;The drive holds about 50 hours of video or 9,000 songs; if your iTunes library is bigger than that, you can specify what subset you want copied -- only unwatched TV episodes, for example.&lt;br /&gt;You can play back videos, music and photos even if the original computer is turned off or (if it's a laptop) carried away. (Photo playback requires iPhoto on the Mac, or Photoshop Album or Photoshop Elements on Windows.)&lt;br /&gt;A tiny white remote control operates Apple TV's stunning high-definition white-on-black menus, which are enlivened by high-resolution album covers and photos. You can see the effect at apple.com/appletv.&lt;br /&gt;The integration of iPod, iTunes and Apple TV offers frequent payoffs. For example, if you paused your iPod partway through a movie, TV show or song, Apple TV remembers your place when you resume playing it on your TV.&lt;br /&gt;Although only one computer's files are actually copied to Apple TV, you can still play back the iTunes libraries of five other computers by streaming -- playing them through Apple TV without copying them. Starting playback, rewinding and fast-forwarding isn't as smooth this way, and photo playback isn't available. But it's a handy option when, say, you want to watch a movie on your TV from a visitor’s laptop.&lt;br /&gt;All of this works elegantly and effortlessly. But there are lots of unanswered questions that make onlookers wonder if Apple has bigger plans for the humble Apple TV.&lt;br /&gt;For example, it has an Internet connection and a hard drive; so why can't it record TV shows like a TiVo?&lt;br /&gt;Furthermore, it's a little weird that menus and photos appear in spectacular high-definition, but not TV shows and movies. All iTunes videos are in standard definition, and don't look so hot on an HDTV.&lt;br /&gt;And then there's the mysterious unused U.S.B. port.&lt;br /&gt;Still, if you stay within the Apple ecosystem -- use its online store, its jukebox software and so on -- you get a seamless, trouble-free experience, with a greater selection of TV shows and movies than you can find from any other online store. &lt;/p&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-1143416222364336844?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/1143416222364336844/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=1143416222364336844&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/1143416222364336844'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/1143416222364336844'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/apple-tv-connects-your-computer-to-your.html' title='Apple TV connects your computer to your TV'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_m9o8RkkSz3E/RgIPhRE7SvI/AAAAAAAAACM/SQFVMQE082E/s72-c/appletv.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-1047825460307393169</id><published>2007-03-22T13:02:00.001+08:00</published><updated>2007-03-22T13:05:33.450+08:00</updated><title type='text'>The dinosaurs that burrowed to safety</title><content type='html'>David Hyun&lt;br /&gt;URL:&lt;a href="http://www.theaustralian.news.com.au/story/0,20867,21420880-30417,00.html"&gt;http://www.theaustralian.news.com.au/story/0,20867,21420880-30417,00.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;A NEW kind of dinosaur that burrowed into the ground to build a protective den has been discovered in the US.&lt;br /&gt;The fossil remains of an adult and two young have provided the first evidence of burrowing behaviour among dinosaurs. The discovery in Montana raises the prospect that some dinosaurs may have initially survived the catastrophic event  - widely thought to have been an asteroid impact - that led to the group’s extinction 65 million years ago. Small mammals are thought to have sheltered from the “nuclear winter” that would have come after an asteroid impact by burrowing underground. The burrowing dinosaurs have been dated to 95 million years ago, in the Cretaceous period, not long before the catastrophe in evolutionary terms. Though no examples have been found that date from nearer the time of the impact, it is conceivable that some may have survived it in their dens. “Burrowing behaviour allows vertebrates to escape harsh environmental conditions,” David Varricchio, of Montana State University, who led the research, said.&lt;br /&gt;“Small dinosaurs could potentially have withstood severe conditions, such as drought or daily or seasonal temperature extremes. Such behaviour would have allowed dinosaurs to occupy high mountains, desert environments and polar regions. “Survival of terrestrial vertebrates at the end-Cretaceous event has been attributed to sheltering behaviour, with the extinction of nonavian dinosaurs resulting from their inability to find an appropriate cover. Burrowing dinosaurs would challenge this argument, but these are yet to be found in the latest Cretaceous formations.” The new species, which is described in the journal Proceedings of the Royal Society B, has been named Oryctodromeus cubicularis, which means “digging runner of the lair”. The adult found by Dr Varricchio’s team measured 2.1m and weighed 22-32kg. It and the two juveniles were at the end of a sloping tunnel more than 2m long and 70cm wide, which would have ended in a larger chamber. Several pieces of evidence indicate that the structure was a burrow built by the creatures. Its dimensions are a good fit for Oryctodromeus’s body, and the close proximity of an adult and young hints at parental care. The tunnel is similar to those made by modern burrowing animals, and there are no bite marks on the remains, making it unlikely that they were carried into the den by predators. Oryctodromeus also shows several anatomical adaptations for digging. “For a digging animal to apply a force to the ground effectively, it must counteract the equal opposing force generated,” Dr Varricchio said. “For example, mammals that dig with their forelimbs brace themselves with their hindlimbs and tail. Oryctodromeus exhibits skeletal features that among extant vertebrates are associated with such behaviour.”&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-1047825460307393169?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/1047825460307393169/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=1047825460307393169&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/1047825460307393169'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/1047825460307393169'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/dinosaurs-that-burrowed-to-safety.html' title='The dinosaurs that burrowed to safety'/><author><name>romopia</name><uri>http://www.blogger.com/profile/06556624145527321585</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-1762882178924025202</id><published>2007-03-22T13:02:00.000+08:00</published><updated>2007-03-22T13:05:23.826+08:00</updated><title type='text'>Google quashes mobile phone talk</title><content type='html'>&lt;a href="http://2.bp.blogspot.com/_m9o8RkkSz3E/RgIObhE7StI/AAAAAAAAAB8/ivjzJVgDQ-0/s1600-h/Google_mobile_phone.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5044610398506666706" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://2.bp.blogspot.com/_m9o8RkkSz3E/RgIObhE7StI/AAAAAAAAAB8/ivjzJVgDQ-0/s320/Google_mobile_phone.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;a href="http://2.bp.blogspot.com/_m9o8RkkSz3E/RgIObhE7SuI/AAAAAAAAACE/zB06xBHiHvw/s1600-h/googlephone_2.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5044610398506666722" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://2.bp.blogspot.com/_m9o8RkkSz3E/RgIObhE7SuI/AAAAAAAAACE/zB06xBHiHvw/s320/googlephone_2.jpg" border="0" /&gt;&lt;/a&gt;url: &lt;a href="http://www.smh.com.au/news/mobiles--handhelds/google-quashes-mobile-phone-talk/2007/03/21/1174153139660.html"&gt;http://www.smh.com.au/news/mobiles--handhelds/google-quashes-mobile-phone-talk/2007/03/21/1174153139660.html&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;Hyeon Chung&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;Google has poured cold water on claims it is developing a mobile phone.&lt;br /&gt;The search giant said it was more logical to form partnerships with existing handset makers instead.&lt;br /&gt;Google's South-East Asia managing director of sales and operations, Richard Kimber, yesterday echoed statements made by Google's chief internet evangelist, Vinton Cerf, that building hardware would be a dramatic shift in the company's business model.&lt;br /&gt;"At this point in time, we are very focused on the software, not the phone," The Australian Financial Review today quoted Kimber as saying during his speech at the Search Engine Room conference in Sydney.&lt;br /&gt;Kimber said Google was keen on porting its search and other technologies to mobile devices, but it was not interested in entering the crowded handset market, as Apple has recently done with its iPhone.&lt;br /&gt;This is highlighted by recent deals Google has made with manufacturers such as Samsung, resulting in its search software coming preloaded on certain handsets.&lt;br /&gt;Extending Google's search technology to mobile phones would allow it to serve advertising to a far wider audience - particularly those in developing countries who do not have access to a computer.&lt;br /&gt;Kimber said mobile ads posed unique challenges but described them as being "extremely effective".&lt;br /&gt;In a telephone interview earlier this month, Dr Cerf, who is credited with being one of the founders of the internet, said "becoming an equipment manufacturer is pretty far from our business model".&lt;br /&gt;"On the other hand, we're very interested in the platforms that other people are building. We are quite eager to be part of the mobile revolution."&lt;br /&gt;A Google Australia spokesman said the company was focused on developing partnerships with existing industry players but did not confirm or deny that Google was developing a handset.&lt;br /&gt;"Mobile is an important area for Google and we remain focused on creating applications and establishing and growing partnerships with industry leaders to develop innovative services for users worldwide," he said.&lt;br /&gt;Google's latest comments are at odds with the slew of recent reports that suggested it was shopping a phone design to potential mobile phone manufacturing partners in Asia.&lt;br /&gt;In a note to clients, sighted by Reuters, London-based phone analyst Richard Windsor wrote: "Google has come out of the closet at the CeBIT trade fair admitting that it is working on a mobile phone of its own.&lt;br /&gt;"This is not going to be a high-end device but a mass-market device aimed at bringing Google to users who don't have a PC."&lt;br /&gt;A US venture capitalist, Simeon Simeonov, wrote in a blog post earlier this month that there was "a team of about 100 people at Google working on the Google Phone".&lt;br /&gt;Simeonov said his "inside source close to the company" described the device as being a "BlackBerry-like, slick device". He added a number of recent mobile-related acquisitions made by Google backed up the rumours.&lt;br /&gt;Samsung was widely rumoured to be Google's manufacturing partner; a photo published on the Engadget blog, which purported to be a prototype, showed a sparse touchscreen design similar to the iPhone.&lt;br /&gt;But all of these rumours now appear to be quashed, bringing back memories from a year ago when Google was said to be building its own line of computers. Those reports were soon proved false, and the product Google was working on turned out to be a free software pack.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-1762882178924025202?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/1762882178924025202/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=1762882178924025202&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/1762882178924025202'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/1762882178924025202'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/google-quashes-mobile-phone-talk.html' title='Google quashes mobile phone talk'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_m9o8RkkSz3E/RgIObhE7StI/AAAAAAAAAB8/ivjzJVgDQ-0/s72-c/Google_mobile_phone.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-8346801353447296735</id><published>2007-03-22T13:01:00.000+08:00</published><updated>2007-03-22T13:02:02.535+08:00</updated><title type='text'>Problem Solved: Century-Old Math Mystery Deciphered</title><content type='html'>David Hyun&lt;br /&gt;URL:&lt;a href="http://www.bloomberg.com/apps/news?pid=20601103&amp;sid=abM.SNM8uq3c&amp;amp;refer=us"&gt;http://www.bloomberg.com/apps/news?pid=20601103&amp;sid=abM.SNM8uq3c&amp;amp;refer=us&lt;/a&gt;&lt;br /&gt;March 21 (Bloomberg) -- Researchers using supercomputers unraveled a 120-year-old mathematics mystery, a solution they said promises advances in their field much like the mapping of the humane genome is aiding developments in medicine.&lt;br /&gt;The solution of the math structure E8, unveiled this week at the Massachusetts Institute of Technology in Cambridge, would cover an area the size of Manhattan if written on paper. E8, discovered in 1887, is a mathematical problem related to equations used to explain symmetry.&lt;br /&gt;``It's a big step,'' said Jeffrey Adams, 50, a mathematics professor at the University of Maryland in College Park who led the project by 18 mathematicians and computer scientists from the U.S. and Europe. ``You never know where it's going to lead.''&lt;br /&gt;The project will help math researchers find solutions to problems related to symmetry, string theory and geometry, Adams said. Understanding how E8 works also might help physicists develop a unified theory that takes in gravity and other fundamental forces, said Hermann Nicolai, a director at the Max Planck Institute for Gravitational Physics in Potsdam, Germany, in a report on the discovery.&lt;br /&gt;The E8 solution might be the math field's equivalent to the basic knowledge produced by human-genome mapping in the 1990s and early 2000s, Adams said. That work spurred a wave of methods for analyzing genetic causes of disease and led to the discovery of genes that may predict a person's risk of disease or other biological clues that may help doctors in treatment decisions.&lt;br /&gt;``I like to say that the human genome itself doesn't give you drugs and cures for cancer,'' Adams said.&lt;br /&gt;Other Researchers&lt;br /&gt;Besides researchers from MIT and Maryland, the project drew collaborators from France and from U.S. universities including Cornell, Harvard, Stanford, Michigan and Utah.&lt;br /&gt;E8, discovered in 1887, is a mathematical problem from the Lie groups, which were developed by Norwegian Sophus Lie during his study of symmetry. Mathematicians explore symmetries in theoretical dimensions greater than the familiar three- dimensional objects such as balls and cylinders. E8 has 248 dimensions. The E8 calculation is part of a larger project on all the Lie groups.&lt;br /&gt;It took researchers two years of ``pencil and paper'' work and one more for software writing before the solution could be tackled by computer, Adams said in a telephone interview. The single calculation required computer power and memory that wasn't available until recently, said the National Science Foundation, which provided funding along with the American Institute of Mathematics.&lt;br /&gt;Underlying Math&lt;br /&gt;``The literature on this subject is very dense and very difficult to understand,'' said team member David Vogan from MIT in the report on the project. ``Even after we understood the underlying mathematics, it still took more than two years to implement it on a computer.''&lt;br /&gt;Researchers broke the puzzle into smaller parts, producing partial answers that were later assembled to find the eventual solution. The final calculation took about 77 hours on the Sage supercomputer, built by San Diego-based Western Scientific.&lt;br /&gt;The calculation created a file 60 gigabytes in size, enough to store music that could play for 45 days in the MP3 format. Data on the human genome, which contains all of the genetic information of a cell, can be stored on less than a gigabyte.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-8346801353447296735?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/8346801353447296735/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=8346801353447296735&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/8346801353447296735'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/8346801353447296735'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/problem-solved-century-old-math-mystery.html' title='Problem Solved: Century-Old Math Mystery Deciphered'/><author><name>romopia</name><uri>http://www.blogger.com/profile/06556624145527321585</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-3643364663197608239</id><published>2007-03-22T13:00:00.000+08:00</published><updated>2007-03-22T13:02:49.917+08:00</updated><title type='text'>PlayStation 3 launches at record price</title><content type='html'>&lt;a href="http://3.bp.blogspot.com/_m9o8RkkSz3E/RgINqxE7SsI/AAAAAAAAAB0/xitTaApmG-k/s1600-h/ps3.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5044609560988043970" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://3.bp.blogspot.com/_m9o8RkkSz3E/RgINqxE7SsI/AAAAAAAAAB0/xitTaApmG-k/s320/ps3.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;url: &lt;a href="http://www.news.com.au/story/0,23599,21426496-2,00.html"&gt;http://www.news.com.au/story/0,23599,21426496-2,00.html&lt;/a&gt;&lt;br /&gt;Hyeon Chung&lt;br /&gt;Launch parties for Sony’s priciest-ever game console will begin across the country tonight but there is anger over the difference between the Australian and US versions.&lt;br /&gt;PS3 systems available in Europe and Australia will not have the same capabilities of the US and Japanese models, despite costing around $300 more.&lt;br /&gt;The 60GB PS3 was launched in the US last November with a price tag of $US599 ($770) and costs ¥60,000 ($640) in Japan. The model on sale in Australia will cost $999.95.&lt;br /&gt;And if the price tag wasn’t enough to make gamers throw their controllers out of their prams, cost-cutting measures mean the Australian versions have limited “backwards compatibility” – meaning it will not be able to play all PS1 and PS2 games.&lt;br /&gt;"About 50 to 60 per cent of (earlier) games are playable in some form, but some of the big-name games like Gran Turismo 4 and Grand Theft Auto: San Andreas don't play properly," said Peter Bayliss, a PhD student in Video Game Theory at RMIT.&lt;br /&gt;"While it's generally good news, some of the games people actually want to hold on to might not work."&lt;br /&gt;Australian PS3 owners will also need to install upgrades available through PlayStation online to play PS1 and PS2 games.&lt;br /&gt;Sony Computer Entertainment Australia managing director Michael Ephraim said more titles would become compatible with the PS3 over time.&lt;br /&gt;The PS3 was originally scheduled to launch in Europe and Australia in November last year and was expected to support all games released for earlier models.&lt;br /&gt;Billed as a "home entertainment system", the PS3 includes a 60GB hard drive, Blu-ray Disc player, high-definition TV output and an internet browser.&lt;br /&gt;Pioneered by Sony, Blu-ray discs can store up to 10 times more information than a DVD. Its main competitor is the HD DVD (high-definition DVD), backed by Microsoft, Intel and Toshiba.&lt;br /&gt;There are currently fewer than 100 titles available on Blu-ray in Australia and Sony will be relying in part on the PS3 to boost demand for the format.&lt;br /&gt;"Sony did a lot for popularising DVD with the PS2," which included a DVD player, said Mr Bayliss.&lt;br /&gt;"Some people have said they'll buy a PS3 because it's a lot cheaper than buying a stand-alone Blu-ray player at the moment."&lt;br /&gt;Blu-ray players currently sell for between $1500 and $2500.&lt;br /&gt;The high price of the PS3 in Australia was not unexpected, said Mr Bayliss.&lt;br /&gt;"It always has been (more costly) in Australia. Part of it is increased shipping costs, but... there's simply less consumers in Australia so all the fixed costs of distribution get shared over less people," he said.&lt;br /&gt;US models of the PS3 are made with part of the PS2 chipset inside, allowing it to run older games. That hardware has been replaced in European and Australian models with a software emulator, at a rumoured saving of between $20 and $30 per system.&lt;br /&gt;A list of PS1 and PS2 titles compatible with the Australian PS3 has been posted &lt;a href="http://faq.eu.playstation.com/bc/" target="_blank"&gt;online&lt;/a&gt;. The games are classified as "should play with noticeable issues", "minor issues" and "no known issues".&lt;br /&gt;Mr Ephraim said the list included almost 75 per cent of the PS2 game catalogue.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-3643364663197608239?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/3643364663197608239/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=3643364663197608239&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3643364663197608239'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3643364663197608239'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/playstation-3-launches-at-record-price.html' title='PlayStation 3 launches at record price'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_m9o8RkkSz3E/RgINqxE7SsI/AAAAAAAAAB0/xitTaApmG-k/s72-c/ps3.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-6653158711365507047</id><published>2007-03-20T14:58:00.000+08:00</published><updated>2007-03-20T15:00:44.869+08:00</updated><title type='text'>Minsung's Results</title><content type='html'>semiconductor&lt;br /&gt;Source: answers.com/semiconductor&lt;br /&gt;Def: Any of various solid crystalline substances, such as germanium or silicon, having electrical conductivity greater than insulators but less than good conductors, and used especially as a base material for computer chips and other electronic devices.&lt;br /&gt;Inventor: TI&lt;br /&gt;Date of Invention:&lt;br /&gt;&lt;br /&gt;microprocessor&lt;br /&gt;Source: answers.com/microprocessor&lt;br /&gt;Def: An integrated circuit that contains the entire central processing unit of a computer on a single chip.&lt;br /&gt;Inventor: Intel and TI&lt;br /&gt;Date of Invention: Late 190s Early 1970s&lt;br /&gt;&lt;br /&gt;circuit board&lt;br /&gt;Source: answers.com/circuit board&lt;br /&gt;Def: An insulated board on which interconnected circuits and components such as microchips are mounted or etched.&lt;br /&gt;Inventor: Paul Eisler&lt;br /&gt;Date of Invention: 1936&lt;br /&gt;&lt;br /&gt;radio&lt;br /&gt;Source: answers.com/radio&lt;br /&gt;Def:The wireless transmission through space of electromagnetic waves in the approximate frequency range from 10 kilohertz to 300,000 megahertz.&lt;br /&gt;Inventor: Heinrich Hertz and Guglielmo Marconi&lt;br /&gt;Date of Invention: 1901&lt;br /&gt;&lt;br /&gt;bluetooth&lt;br /&gt;Source: answers.com/bluetooth&lt;br /&gt;Def: Bluetooth is an industrial specification for wireless personal area networks (PANs). Bluetooth provides a way to connect and exchange information between devices such as mobile phones, laptops, PCs, printers, digital cameras and video game consoles via a secure, globally unlicensed short-range radio frequency.&lt;br /&gt;Inventor: Ericsson, IBM, Intel, Nokia, Toshiba / Bluetooth Special Interest Group&lt;br /&gt;Date of Invention: 1998&lt;br /&gt;&lt;br /&gt;television&lt;br /&gt;Source: answers.com/television&lt;br /&gt;Def: a) The transmission of dynamic or sometimes static images, generally with accompanying sound, via electric or electromagnetic signals.  b) An electronic apparatus that receives such signals, reproducing the images on a screen, and typically reproducing accompanying sound signals on speakers.  c) The visual and audio content of such signals.&lt;br /&gt;Inventor: No specific inventor.&lt;br /&gt;Date of Invention: First version 1884, but was made from past experiments by others.&lt;br /&gt;&lt;br /&gt;mechanical computer&lt;br /&gt;Source: &lt;a href="http://wiki.answers.com/Q/Who_invented_the_first_mechanical_computerDef"&gt;http://wiki.answers.com/Q/Who_invented_the_first_mechanical_computerDef&lt;/a&gt;:&lt;br /&gt;Inventor: Vannevar Buh&lt;br /&gt;Date of Invention: 1928&lt;br /&gt;&lt;br /&gt;electrical computer&lt;br /&gt;Source: &lt;a href="http://www.city-net.com/~ched/help/general/tech_history.html"&gt;http://www.city-net.com/~ched/help/general/tech_history.html&lt;/a&gt;&lt;br /&gt;Def: Inventor: Howard Aiken, IBM&lt;br /&gt;Date of Invention: 1943&lt;br /&gt;&lt;br /&gt;digital computer&lt;br /&gt;Source: answers.com/digital computer  &lt;a href="http://www.uh.edu/engines/epi152.htm"&gt;http://www.uh.edu/engines/epi152.htm&lt;/a&gt;&lt;br /&gt;Def: A computer that performs calculations and logical operations with quantities represented as digits, usually in the binary number system.&lt;br /&gt;Inventor: John Atanasoff&lt;br /&gt;Date of Invention: 1937&lt;br /&gt;&lt;br /&gt;CD-ROM&lt;br /&gt;Source: answers.com/cd-rom  web.mit.edu/invent/iow/russell.html &lt;br /&gt;Def: A compact disk that functions as read-only memory.&lt;br /&gt;Inventor: James T. Russell&lt;br /&gt;Date of Invention: 1965&lt;br /&gt;&lt;br /&gt;DVD&lt;br /&gt;Source: answers.com/dvd  &lt;a href="http://inventors.about.com/library/bl/bl12a.htm"&gt;http://inventors.about.com/library/bl/bl12a.htm&lt;/a&gt;&lt;br /&gt;Def: A high-density compact disk for storing large amounts of data, especially high-resolution audio-visual material.&lt;br /&gt;Inventor: Matshusita&lt;br /&gt;Date of Invention: 1996&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-6653158711365507047?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/6653158711365507047/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=6653158711365507047&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/6653158711365507047'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/6653158711365507047'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/minsungs-results.html' title='Minsung&apos;s Results'/><author><name>英雄</name><uri>http://www.blogger.com/profile/08646170553588255533</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-5673658044568780644</id><published>2007-03-20T14:57:00.002+08:00</published><updated>2007-03-20T14:59:38.964+08:00</updated><title type='text'></title><content type='html'>&lt;p&gt;&lt;a href="http://www.google.com/search"&gt;http://www.google.com/search&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Definition&lt;/p&gt;&lt;p&gt;inventor&lt;/p&gt;&lt;p&gt;date of invention&lt;br /&gt;&lt;br /&gt;semiconductor&lt;a href="http://www.inventors.about.com/library/inventors/blmicrochip.htm"&gt;www.inventors.about.com/library/inventors/blmicrochip.htm&lt;/a&gt;An element, such as silicon, that is intermediate in electrical conductivity between conductors and insulators, through which conduction takes place by means of holes and electrons.Robert Noyce&lt;br /&gt;&lt;/p&gt;&lt;p&gt;microprocessor&lt;a href="http://www.ideafinder.com/history/inventions/microprocessor.htm"&gt;www.ideafinder.com/history/inventions/microprocessor.htm&lt;/a&gt; - 24kA master control circuit.Ted Hoff1968&lt;br /&gt;&lt;/p&gt;&lt;p&gt;circuit board&lt;a href="http://www.answers.com/circuit%20board"&gt;http://www.answers.com/circuit%20board&lt;/a&gt;Boards used in electronic devices that are made from an insulating material and contain electronic components that are interconnected to form a circuit or group of circuits that perform a specific function.Charles Ducas 1850s&lt;br /&gt;&lt;/p&gt;&lt;p&gt;radio&lt;a href="http://inventors.about.com/od/rstartinventions/a/radio.htm"&gt;http://inventors.about.com/od/rstartinventions/a/radio.htm&lt;/a&gt;An instrument that uses radio waves to communicate with other vesselsNikola Tesla1943&lt;br /&gt;&lt;/p&gt;&lt;p&gt;bluetooth&lt;a href="http://www.theregister.co.uk/2004/09/06/ericsson_drops_bluetooth_dev/"&gt;http://www.theregister.co.uk/2004/09/06/ericsson_drops_bluetooth_dev/&lt;/a&gt;A wireless connection that enables devices to exchange information.Ericsson&lt;br /&gt;&lt;/p&gt;&lt;p&gt;televisionhttp://www.videouniversity.com/farnhal.htmTelevision is a telecommunication system for broadcasting and receiving moving pictures and sound over a distancePhil, Cliff1927&lt;br /&gt;&lt;/p&gt;&lt;p&gt;mechanical computer&lt;a href="http://www.answers.com/mechanical%20computer"&gt;http://www.answers.com/mechanical%20computer&lt;/a&gt;&lt;a href="http://www.diycalculator.com/popup-h-mechcomp.shtml"&gt;http://www.diycalculator.com/popup-h-mechcomp.shtml&lt;/a&gt;A machine such as a Charles Babbage's analytical engine.Joseph-Marie Jacquard early 1800s&lt;br /&gt;&lt;/p&gt;&lt;p&gt;electrical computer&lt;br /&gt;&lt;/p&gt;&lt;p&gt;digital computer&lt;a href="http://www.reference.com/search?q=digital%20computer"&gt;http://www.reference.com/search?q=digital%20computer&lt;/a&gt;A programmable machine which operates using binary digital data.&lt;br /&gt;CD rom&lt;a href="http://www.web.mit.edu/invent/iow/russell.html"&gt;www.web.mit.edu/invent/iow/russell.html&lt;/a&gt; Compact Disk Read-Only MemoryRussell1970s&lt;br /&gt;&lt;/p&gt;&lt;p&gt;DVD&lt;a href="http://www.web.mit.edu/invent/iow/thomasf.html"&gt;www.web.mit.edu/invent/iow/thomasf.html&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Digital Versatile Disc Warren Lieberfarb 1996&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-5673658044568780644?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/5673658044568780644/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=5673658044568780644&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5673658044568780644'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5673658044568780644'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/httpwww.html' title=''/><author><name>joanna</name><uri>http://www.blogger.com/profile/07485944182540675269</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-3899185467345964788</id><published>2007-03-20T14:57:00.001+08:00</published><updated>2007-03-20T14:57:54.073+08:00</updated><title type='text'>Diana Jung</title><content type='html'>Diana Jung&lt;br /&gt;definitioninventordate of invention&lt;br /&gt;semiconductordefinition: a substance, as silicon or germanium, with electrical conductivity intermediate between that of an insulator and a conductor: a basic component of various kinds of electronic circuit element (semiconductor device) used in communications, control, and detection technology and in computers. (&lt;a href="http://dictionary.reference.com/browse/semiconductor"&gt;http://dictionary.reference.com/browse/semiconductor&lt;/a&gt;)inventor: Robert Noycedate: 1970 (&lt;a href="http://www.ideafinder.com/history/inventors/hoff.htmhttp://www.answers.com/microprocessor"&gt;http://www.ideafinder.com/history/inventors/hoff.htmhttp://www.answers.com/microprocessor&lt;/a&gt;)&lt;br /&gt;microprocessordefinition: integrated circuit semiconductor chip that performs the bulk of the processing and controls the parts of a system; "a microprocessor functions as the central processing unit of a microcomputer"; "a disk drive contains a microprocessor to handle the internal functions of the drive" (&lt;a href="http://dictionary.reference.com/browse/microprocessor"&gt;http://dictionary.reference.com/browse/microprocessor&lt;/a&gt;)inventor: Ted Hoff (&lt;a href="http://www.ideafinder.com/history/inventions/microprocessor.htm"&gt;http://www.ideafinder.com/history/inventions/microprocessor.htm&lt;/a&gt;)date: 1968 (&lt;a href="http://www.ideafinder.com/history/inventions/microprocessor.htm"&gt;http://www.ideafinder.com/history/inventions/microprocessor.htm&lt;/a&gt;)&lt;br /&gt;circuitboarddefinition: a sheet of insulating material used for the mounting and interconnection (often by a printed circuit) of components in electronic equipment (&lt;a href="http://dictionary.reference.com/browse/circuit%20board"&gt;http://dictionary.reference.com/browse/circuit%20board&lt;/a&gt;)inventor:  Austrian engineer Paul Eisler(&lt;a href="http://www.answers.com/circuitboard"&gt;http://www.answers.com/circuitboard&lt;/a&gt;)date: 1936  (&lt;a href="http://www.answers.com/circuitboard"&gt;http://www.answers.com/circuitboard&lt;/a&gt;)&lt;br /&gt;radio definition: The wireless transmission through space of electromagnetic waves in the approximate frequency range from 10 kilohertz to 300,000 megahertz (&lt;a href="http://dictionary.reference.com/browse/radio"&gt;http://dictionary.reference.com/browse/radio&lt;/a&gt;)inventor:Nicola Tesla, Guglielmo Marconi, Reginald Fessenden, Nathan Stubblefield (&lt;a href="http://www.answers.com/who%20invented%20radio%3F"&gt;http://www.answers.com/who%20invented%20radio%3F&lt;/a&gt;)*date: 1892 (&lt;a href="http://www.answers.com/Who%20invented%20radio%20and%20when%3F"&gt;http://www.answers.com/Who%20invented%20radio%20and%20when%3F&lt;/a&gt;)&lt;br /&gt;bluetoothdefinition: an industrial specification for wireless personal area networks (PANs). Bluetooth provides a way to connect and exchange information between devices such as mobile phones, laptops, PCs, printers, digital cameras and video game consoles via a secure, globally unlicensed short-range radio frequency. The Bluetooth specifications are developed and licensed by the Bluetooth Special Interest Group.(&lt;a href="http://www.answers.com/bluetooth"&gt;http://www.answers.com/bluetooth&lt;/a&gt;)inventor: Ericsson (&lt;a href="http://www.answers.com/Who%20invented%20bluetooth%3F"&gt;http://www.answers.com/Who%20invented%20bluetooth%3F&lt;/a&gt;)date: 1998 (&lt;a href="http://www.answers.com/Who%20invented%20bluetooth%3F"&gt;http://www.answers.com/Who%20invented%20bluetooth%3F&lt;/a&gt;)&lt;br /&gt;televisiondefinition: The transmission of dynamic or sometimes static images, generally with accompanying sound, via electric or electromagnetic signals.(&lt;a href="http://dictionary.reference.com/browse/television"&gt;http://dictionary.reference.com/browse/television&lt;/a&gt;)inventor: The Americans will tell you it was Philo Taylor Farnsworth. The Russians and RCA will tell you it was Vladimir Zworykin. Like all complex devices, the television has many contributing inventors./ Scottish inventor, John Logie Baird, the father of this pervasive technology, first publicly demonstrated television date: 26 January 1926&lt;br /&gt;mechanicalcomputerdefinition: The transmission of dynamic or sometimes static images, generally with accompanying sound, via electric or electromagnetic signals.inventor: Willoughby Smith, Paul Nipkow,John Logie Baird , Charles Francis Jenkinsdate: 1873-1926(&lt;a href="http://www.answers.com/television"&gt;http://www.answers.com/television&lt;/a&gt;)&lt;br /&gt;electricalcomputerdefinition: Related to or associated with electricity, but not containing it or having its properties or characteristics; often used interchangeably with electric.inventor: John Vincent Atanasoffdate: 1974(&lt;a href="http://www.hpcwire.com/hpcwire/hpcwireWWW/03/1031/106295.html"&gt;http://www.hpcwire.com/hpcwire/hpcwireWWW/03/1031/106295.html&lt;/a&gt;)&lt;br /&gt;digitalcomputerdefinition: A computer that performs calculations and logical operations with quantities represented as digits, usually in the binary number system.inventor: John Vincent Atanasoffdate: 1974&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-3899185467345964788?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/3899185467345964788/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=3899185467345964788&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3899185467345964788'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3899185467345964788'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/diana-jung.html' title='Diana Jung'/><author><name>jjungnang</name><uri>http://www.blogger.com/profile/04350249646790615419</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-4351763584213493090</id><published>2007-03-20T14:56:00.000+08:00</published><updated>2007-03-20T14:57:31.900+08:00</updated><title type='text'>BrainMan</title><content type='html'>Savant Syndrome - Daniel Tammet&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.youtube.com/watch?v=7bVVQ0FZeys"&gt;http://www.youtube.com/watch?v=7bVVQ0FZeys&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-4351763584213493090?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/4351763584213493090/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=4351763584213493090&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/4351763584213493090'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/4351763584213493090'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/brainman.html' title='BrainMan'/><author><name>minotour79</name><uri>http://www.blogger.com/profile/09154549064706987281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-5677266897814104533</id><published>2007-03-20T14:20:00.000+08:00</published><updated>2007-03-20T14:41:25.354+08:00</updated><title type='text'>The internet search</title><content type='html'>A semiconductor is a solid whose electrical conductivity can be controlled over a wide range, either permanently or dynamically.&lt;br /&gt;Stanford Ovshinsky&lt;br /&gt;1904 - 1949&lt;br /&gt;&lt;a href="http://www.madsci.org/posts/archives/may97/862851265.Eg.r.html"&gt;http://www.madsci.org/posts/archives/may97/862851265.Eg.r.html&lt;/a&gt;&lt;a href="http://www.answers.com/semiconductor"&gt;http://www.answers.com/semiconductor&lt;/a&gt;&lt;br /&gt;An integrated circuit that contains the entire central processing unit of a computer on a single chip.&lt;br /&gt;Marcian Edward "Ted" Hoff, Jr.&lt;br /&gt;1970s&lt;br /&gt;&lt;a href="http://www.ideafinder.com/history/inventors/hoff.htm"&gt;http://www.ideafinder.com/history/inventors/hoff.htm&lt;/a&gt;&lt;a href="http://www.answers.com/microprocessor"&gt;http://www.answers.com/microprocessor&lt;/a&gt;&lt;br /&gt;An insulated board on which interconnected circuits and components such as microchips are mounted or etched.&lt;br /&gt;Paul Eisler&lt;br /&gt;1936&lt;br /&gt;&lt;a href="http://www.answers.com/circuit%20board"&gt;http://www.answers.com/circuit%20board&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The wireless transmission through space of electromagnetic waves in the approximate frequency range from 10 kilohertz to 300,000 megahertz.&lt;br /&gt;Alexander Stepanovich Popov,Nikola Tesla,Guglielmo Marconi ,Reginald Fessenden ,Lee de Forest ,Edwin H. Armstrong, Roberto Landell de Moura,&lt;br /&gt;1893-1895&lt;br /&gt;&lt;a href="http://www.answers.com/radio"&gt;http://www.answers.com/radio&lt;/a&gt;&lt;br /&gt;A wireless personal area network (WPAN) technology from the Bluetooth Special Interest Group (&lt;a href="http://www.bluetooth.com/"&gt;http://www.bluetooth.com/&lt;/a&gt;)&lt;br /&gt;Ericsson, IBM, Intel, Nokia and Toshiba.&lt;br /&gt;1998&lt;br /&gt;&lt;a href="http://www.answers.com/bluetooth"&gt;http://www.answers.com/bluetooth&lt;/a&gt;&lt;br /&gt;The transmission of dynamic or sometimes static images, generally with accompanying sound, via electric or electromagnetic signals.&lt;br /&gt;Willoughby Smith, Paul Nipkow,John Logie Baird , Charles Francis Jenkins&lt;br /&gt;1873-1926&lt;br /&gt;&lt;a href="http://www.answers.com/television"&gt;http://www.answers.com/television&lt;/a&gt;&lt;br /&gt;A machine such as a Charles Babbage's analytical engine.&lt;br /&gt;Konrad Zuse&lt;br /&gt;1938&lt;br /&gt;&lt;a href="http://inventors.about.com/library/weekly/aa050298.htm"&gt;http://inventors.about.com/library/weekly/aa050298.htm&lt;/a&gt;&lt;br /&gt;Related to or associated with electricity, but not containing it or having its properties or characteristics; often used interchangeably with electric.&lt;br /&gt;John Vincent Atanasoff&lt;br /&gt;1974&lt;br /&gt;&lt;a href="http://www.hpcwire.com/hpcwire/hpcwireWWW/03/1031/106295.html"&gt;http://www.hpcwire.com/hpcwire/hpcwireWWW/03/1031/106295.html&lt;/a&gt;&lt;br /&gt;A computer that performs calculations and logical operations with quantities represented as digits, usually in the binary number system.&lt;br /&gt;John Vincent Atanasoff&lt;br /&gt;1974&lt;br /&gt;&lt;a href="http://www.hpcwire.com/hpcwire/hpcwireWWW/03/1031/106295.html"&gt;http://www.hpcwire.com/hpcwire/hpcwireWWW/03/1031/106295.html&lt;/a&gt;&lt;br /&gt;A compact disk that functions as read-only memory&lt;br /&gt;James T. Russell&lt;br /&gt;1960s&lt;br /&gt;&lt;a href="http://web.mit.edu/invent/iow/russell.html"&gt;http://web.mit.edu/invent/iow/russell.html&lt;/a&gt;&lt;br /&gt;A high-density compact disk for storing large amounts of data, especially high-resolution audio-visual material.&lt;br /&gt;Fred Thomas&lt;br /&gt;1983&lt;br /&gt;&lt;a href="http://web.mit.edu/invent/iow/thomasf.html"&gt;http://web.mit.edu/invent/iow/thomasf.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Jacky&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-5677266897814104533?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/5677266897814104533/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=5677266897814104533&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5677266897814104533'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5677266897814104533'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/internet-search.html' title='The internet search'/><author><name>minotour79</name><uri>http://www.blogger.com/profile/09154549064706987281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-3523971419806672427</id><published>2007-03-20T14:14:00.000+08:00</published><updated>2007-03-20T15:01:18.429+08:00</updated><title type='text'>Test</title><content type='html'>Semiconductor&lt;br /&gt;Definition: A material that is neither a good conductor of electricity (like copper) nor a good insulator (like rubber). The most common semiconductor materials are silicon and germanium. These materials are then doped to create an excess or lack of electrons. Computer chips, both for CPU and memory, are composed of semiconductor materials. Semiconductors make it possible to miniaturize electronic components, such as transistors. ...&lt;br /&gt;Inventor: Gordon E. Moore csc.lsu.edu/~chen/HGAwardList.htm&lt;br /&gt;Date of Invention: 1991 &lt;a href="http://www.informatik.uni-trier.de/~ley/db/indices/a-tree/m/Moore:Gordon_E=.html"&gt;www.informatik.uni-trier.de/~ley/db/indices/a-tree/m/Moore:Gordon_E=.html&lt;/a&gt;&lt;br /&gt;Microprocessor The silicon chip with thousands of electronic components that serves as the central processing unit (CPU) in microcomputers. Ted Hoff  &lt;a href="http://www.ideafinder.com/history/inventions/microprocessor.htm"&gt;www.ideafinder.com/history/inventions/microprocessor.htm&lt;/a&gt;  1968 &lt;a href="http://www.ideafinder.com/history/inventions/microprocessor.htm"&gt;www.ideafinder.com/history/inventions/microprocessor.htm&lt;/a&gt; Circuit Board A thin board, usually fiberglass, on which components are mounted. Also called a printed circuit board (or PCB) because the connections between the components are printed onto the board. Paul Eisler &lt;a href="http://www.ecp13.gr/"&gt;www.ecp13.gr/&lt;/a&gt; 1943 &lt;a href="http://www.answers.com/Circuit%20Board"&gt;http://www.answers.com/Circuit%20Board&lt;/a&gt;Radio  Region of the electromagnetic spectrum corresponding to radiation of the longest wavelengths. Guglielmo Marconi &lt;a href="http://inventors.about.com/od/rstartinventions/a/radio.htm"&gt;http://inventors.about.com/od/rstartinventions/a/radio.htm&lt;/a&gt; 1895 &lt;a href="http://inventors.about.com/od/rstartinventions/a/radio.htm"&gt;http://inventors.about.com/od/rstartinventions/a/radio.htm&lt;/a&gt;Bluetuse Bluetooth is a computing and telecommunications industry specification that describes how mobile phones, computers and PDAs can easily interconnect with each other and with home and business phones and computers using a short wireless connection. Ericsson &lt;a href="http://www.answers.com/bluetooth"&gt;http://www.answers.com/bluetooth&lt;/a&gt; 1998 &lt;a href="http://www.answers.com/bluetooth"&gt;http://www.answers.com/bluetooth&lt;/a&gt;Television System that converts both audio and visual information into corresponding electrical signals which are then transmitted through wires or by radio waves to a receiver which reproduces the original information. Paul Gottlieb Nipkow &lt;a href="http://inventors.about.com/library/inventors/bltelevision.htm#Mechanical%20Television"&gt;http://inventors.about.com/library/inventors/bltelevision.htm#Mechanical%20Television&lt;/a&gt; 1884 &lt;a href="http://inventors.about.com/library/inventors/bltelevision.htm#Mechanical%20Television"&gt;http://inventors.about.com/library/inventors/bltelevision.htm#Mechanical%20Television&lt;/a&gt;Mechanical Computer  Charles Babbage &lt;a href="http://www.diycalculator.com/popup-h-mechcomp.shtml"&gt;http://www.diycalculator.com/popup-h-mechcomp.shtml&lt;/a&gt; 1834 school.discovery.com/lessonplans/programs/inventioncomputertechnology/ Electrical Computer a machine for performing calculations automatically &lt;a href="http://www.thefreedictionary.com/electronic+computer"&gt;http://www.thefreedictionary.com/electronic+computer&lt;/a&gt; John Atanasoff  &lt;a href="http://inventors.about.com/library/weekly/aa050898.htm"&gt;http://inventors.about.com/library/weekly/aa050898.htm&lt;/a&gt; 1941 &lt;a href="http://www.k9ape.com/publicservice/Who%20Invented%20The%20Computer.html"&gt;http://www.k9ape.com/publicservice/Who%20Invented%20The%20Computer.html&lt;/a&gt;Digital Computer A machine that expresses data using a system of pre-set values. Digital computer representations can be broken down to simple binary expressions. All modern computers are digital as opposed to analog computers which would express values as individual points on a continuum. A slide-rule would be an analog computer. George Stibitz  inventors.about.com/library/inventors/blstibitz.htm 1939  inventors.about.com/library/inventors/blstibitz.htmCD Rom CD ROM stands for Compact Disk Read-Only Memory. CD ROMs store and read massive amounts of information on a removable disk platter or solid state storage chip. Unlike the data on hard drives and diskettes, data on CD ROMs can only be read--not altered--by the user. Also called "firmware."  1984 &lt;a href="http://inventors.about.com/library/weekly/aa010500a.htm"&gt;http://inventors.about.com/library/weekly/aa010500a.htm&lt;/a&gt;DVD "Digital Versatile Disk." (Formerly Digital Video Disk.) Same size as a CD but stores seven times CD capacity on a single side. DVDs can also be double-sided or dual layer. Today most DVDs are used to display full-length commercial motion pictures, plus additional material such as outtakes, director's notes, movie trailers, etc.&lt;br /&gt;* Definition is all from Google&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-3523971419806672427?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/3523971419806672427/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=3523971419806672427&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3523971419806672427'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3523971419806672427'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/test_20.html' title='Test'/><author><name>Life Is Good</name><uri>http://www.blogger.com/profile/03512329762380639681</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-5992776264816420241</id><published>2007-03-20T13:17:00.001+08:00</published><updated>2007-03-20T13:17:52.037+08:00</updated><title type='text'>Semiconductor</title><content type='html'>&lt;p&gt;(Lily Baik)&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.answers.com/semiconductor"&gt;http://www.answers.com/semiconductor&lt;/a&gt;&lt;/p&gt;&lt;p&gt;A solid crystalline material whose electrical conductivity is intermediate between that of a metal and an insulator. Semiconductors exhibit conduction properties that may be temperature-dependent, permitting their use as thermistors (temperature-dependent resistors), or voltage-dependent, as in varistors. By making suitable contacts to a semiconductor or by making the material suitably &lt;a class="alnk" onclick="assignParam('navinfo','method4'+getLinkTextForCookie(this));" href="http://www.answers.com/topic/inhomogeneous-1" target="_top" name="&amp;lid="&gt;inhomogeneous&lt;/a&gt;, electrical &lt;a class="alnk" onclick="assignParam('navinfo','method4'+getLinkTextForCookie(this));" href="http://www.answers.com/topic/rectify" target="_top" name="&amp;amp;lid="&gt;rectification&lt;/a&gt; and amplification can be obtained. Semiconductor devices, rectifiers, and transistors have replaced vacuum tubes almost completely in low-power electronics, making it possible to save volume and power consumption by orders of magnitude. In the form of integrated circuits, they are vital for complicated systems. The optical properties of a semiconductor are important for the understanding and the application of the material. Photodiodes, photoconductive detectors of radiation, injection lasers, light-emitting diodes, solar-energy conversion cells, and so forth are examples of the wide variety of optoelectronic devices. &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-5992776264816420241?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/5992776264816420241/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=5992776264816420241&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5992776264816420241'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5992776264816420241'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/semiconductor.html' title='Semiconductor'/><author><name>LP4eva</name><uri>http://www.blogger.com/profile/05987785484086912053</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-8886367430426839570</id><published>2007-03-20T13:15:00.000+08:00</published><updated>2007-03-20T13:16:59.982+08:00</updated><title type='text'>Semi- Conductor</title><content type='html'>Hyeon Chung&lt;br /&gt;&lt;br /&gt;Definition: &lt;a href="http://www.answers.com/topic/semiconductor"&gt;http://www.answers.com/topic/semiconductor&lt;/a&gt;&lt;br /&gt;Any of various solid crystalline substances, such as germanium or silicon, having electrical conductivity greater than insulators but less than good conductors, and used especially as a base material for computer chips and other electronic devices.&lt;br /&gt;&lt;br /&gt;Inventor: &lt;a href="http://web.mit.edu/invent/iow/ovshinsky.html"&gt;http://web.mit.edu/invent/iow/ovshinsky.html&lt;/a&gt;&lt;br /&gt;In the 1950s, Stanford Ovshinsky created an entirely new realm of materials science, which in turn has given new life to the engineering of semiconductors, solar energy, and electric cars.&lt;br /&gt;Stan Ovshinsky was born in Akron, Ohio in 1922. After graduating from high school, he went straight to work. In 1955, he began working the field of amorphous materials, that is, materials that lack a definite crystalline structure. Ovshinsky was the first engineer to devise a method, called "phase change," for crystalizing these disordered materials, with resulting novel uses: for example, films that gain metallic properties without losing their original optical capabilities. One result was amorphous semiconductors --- which the engineering community had previously considered an utter impossibility.&lt;br /&gt;In 1960, Ovshinsky founded Energy Conversion Devices, Inc. (ECD), in order to continue and expand his work in amorphous semiconductors. Meanwhile, engineers nationwide had eagerly entered an entirely new field: "ovonics" (from Ovshinsky Electronics).&lt;br /&gt;Ovshinsky earned numerous patents in the 1970s and '80s for amorphous semiconductor materials. These materials became essential to optoelectronic copying and fax machines, as well as large, flat-panel liquid crystal displays like those of computer monitors. As early as 1970, Ovshinsky had used his ovonic phase change principle to invent a reversible optical memory disk: that is, a prototype rewritable CD-ROM. Today, thirteen high tech companies around the world are developing rewritable CDs using Ovshinsky's technology.&lt;br /&gt;Ovshinsky went on to use his thin-film amorphous silicon to invent a manufacturing method that might do for solar energy what the assembly line did for automobiles. In 1983, he patented a system that allowed photovoltaic solar panels to be manufactured in continuous rolls 1000 feet in length. Ovshinsky's "Continuous Amorphous Solar Cell Production System" operates much like a newspaper rollpress, speedily imprinting a plasma of amorphous silicon semiconductors in a continuous web onto a thin, anodized metal sheet.&lt;br /&gt;The high energy-conversion efficiency of the thin-film cells and the high throughput of the process make Ovshinsky's photovoltaic cells a revolutionary leap forward for solar energy. They have been installed at various sites around and above the globe, from Mexican mountain villages to the Mir space station. Ovshinsky's "Uni-Solar" roofing tiles, for residential buildings, have won Popular Science's "Best of What's New" Grand Award (1996) and Discover Magazine's Discover Award in the Environment category (1997).&lt;br /&gt;More recently, Ovshinsky has taken a strong step closer to a feasible electric car. After years of development, he earned a patent in 1994 for a high energy-storage, environment-friendly, maintenance-free, rechargeable battery. Although he is far from alone in the search for the perfect electric car battery, Ovshinsky's nickel metal-hydride (NiMH) model, when compared with its nickel-cadmium and lead-acid competitors, is twice as powerful, with none of their fatigue and discharge problems. In fact, Ovshinsky's battery shattered the Department of Energy's performance targets. Recently, ECD formed a joint venture with GM, whose EV1 features Ovshinsky's NiMH battery, to mass produce the battery for electric cars worldwide. A more modest version of the NiMH battery has been licensed by many of the world's major battery companies for retail consumption.&lt;br /&gt;In total, Stan Ovshinsky has earned about 200 US patents, at a pace which has not flagged since the early 1970s: eight granted in 1999, and three more by February 1 of this year. He has also won many local, national and international awards for his work, which extends far beyond the products described above; and he will doubtless win further fame, as the once impossible products he has invented come into broader use.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-8886367430426839570?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/8886367430426839570/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=8886367430426839570&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/8886367430426839570'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/8886367430426839570'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/semi-conductor.html' title='Semi- Conductor'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-9018910247778245707</id><published>2007-03-20T13:09:00.000+08:00</published><updated>2007-03-20T13:11:31.139+08:00</updated><title type='text'>Def. of Microchip</title><content type='html'>Lily Baik&lt;br /&gt;&lt;a href="http://www.answers.com/microchip"&gt;http://www.answers.com/microchip&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Microchips, also termed "integrated circuits" or "chips," are small, thin rectangles of a crystalline semiconductor, usually silicon, that have been inlaid and overlaid with microscopically patterned substances so as to produce transistors and other electronic components on its surface. It is the components on the chip, not the chip itself, that are micro or too small see with the naked eye. The microchip has made it possible to miniaturize digital computers, communications circuits, controllers, and many other devices. Since 1971, whole computer CPUs (central processing units) have been placed on some microchips; these devices are termed microprocessors.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-9018910247778245707?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/9018910247778245707/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=9018910247778245707&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/9018910247778245707'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/9018910247778245707'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/def-of-microchip.html' title='Def. of Microchip'/><author><name>LP4eva</name><uri>http://www.blogger.com/profile/05987785484086912053</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-603509490966132241</id><published>2007-03-20T13:08:00.000+08:00</published><updated>2007-03-20T13:11:49.843+08:00</updated><title type='text'>Invention &amp; definition of Microchip</title><content type='html'>Hyeon Chung&lt;br /&gt;&lt;br /&gt;Definition: &lt;a href="http://whatis.techtarget.com/definition/0,,sid9_gci212564,00.html"&gt;http://whatis.techtarget.com/definition/0,,sid9_gci212564,00.html&lt;/a&gt;&lt;br /&gt;A microchip (sometimes just called a "chip") is a unit of packaged computer circuitry (usually called an &lt;a class="inline" href="http://searchsmb.techtarget.com/sDefinition/0,,sid44_gci213503,00.html"&gt;integrated circuit&lt;/a&gt;) that is manufactured from a material such as &lt;a class="inline" href="http://whatis.techtarget.com/definition/0,,sid9_gci214633,00.html"&gt;silicon&lt;/a&gt; at a very small scale. Microchips are made for program logic (logic or &lt;a class="inline" href="http://searchsmb.techtarget.com/sDefinition/0,,sid44_gci212568,00.html"&gt;microprocessor&lt;/a&gt; chips) and for computer memory (memory or &lt;a class="inline" href="http://searchmobilecomputing.techtarget.com/sDefinition/0,,sid40_gci214255,00.html"&gt;RAM&lt;/a&gt; chips). Microchips are also made that include both logic and memory and for special purposes such as &lt;a class="inline" href="http://searchsmb.techtarget.com/sDefinition/0,,sid44_gci213760,00.html"&gt;analog-to-digital conversion&lt;/a&gt;, bit slicing, and gateways&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Inventor: &lt;a href="http://inventors.about.com/library/weekly/aa080498.htm"&gt;http://inventors.about.com/library/weekly/aa080498.htm&lt;/a&gt;&lt;br /&gt;"What we didn't realize then was that the integrated circuit would reduce the cost of electronic functions by a factor of a million to one, nothing had ever done that for anything before" - Jack Kilby&lt;br /&gt;It seems that the integrated circuit was destined to be invented. Two separate inventors, unaware of each other's activities, invented almost identical integrated circuits or ICs at nearly the same time.&lt;br /&gt;&lt;a href="http://inventors.about.com/library/inventors/blmicrochip.htm#kilby"&gt;Jack Kilby&lt;/a&gt;, an engineer with a background in ceramic-based silk screen circuit boards and transistor-based hearing aids, started working for Texas Instruments in 1958. A year earlier, research engineer &lt;a href="http://inventors.about.com/library/inventors/blmicrochip.htm#noyce"&gt;Robert Noyce&lt;/a&gt; had co-founded the Fairchild Semiconductor Corporation. From 1958 to 1959, both electrical engineers were working on an answer to the same dilemma: how to make more of less.&lt;br /&gt;In designing a complex electronic machine like a computer it was always necessary to increase the number of components involved in order to make technical advances. The monolithic (formed from a single crystal) integrated circuit placed the previously separated &lt;a href="http://inventors.about.com/library/weekly/aa061698.htm"&gt;transistors&lt;/a&gt;, resistors, capacitors and all the connecting wiring onto a single crystal (or 'chip') made of semiconductor material. Kilby used germanium and Noyce used silicon for the semiconductor material.&lt;br /&gt;In 1959 both parties applied for patents. Jack Kilby and Texas Instruments received U.S. patent #3,138,743 for miniaturized electronic circuits. Robert Noyce and the Fairchild Semiconductor Corporation received U.S. patent #2,981,877 for a silicon based integrated circuit. The two companies wisely decided to cross license their technologies after several years of legal battles, creating a global market now worth about $1 trillion a year.&lt;br /&gt;In 1961 the first commercially available integrated circuits came from the Fairchild Semiconductor Corporation. All computers then started to be made using chips instead of the individual transistors and their accompanying parts. Texas Instruments first used the chips in Air Force computers and the Minuteman Missile in 1962. They later used the chips to produce the first electronic portable calculators. The original IC had only one transistor, three resistors and one capacitor and was the size of an adult's pinkie finger. Today an IC smaller than a penny can hold 125 million transistors.&lt;br /&gt;Jack Kilby now holds patents on over sixty inventions and is also well known as the inventor of the portable calculator (1967). In 1970 he was awarded the National Medal of Science. Robert Noyce, with sixteen patents to his name, founded Intel, the company responsible for the invention of the &lt;a href="http://inventors.about.com/library/weekly/aa092998.htm"&gt;microprocessor&lt;/a&gt;, in 1968. But for both men the invention of the integrated circuit stands historically as one of the most important innovations of mankind. Almost all modern products use chip technology.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-603509490966132241?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/603509490966132241/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=603509490966132241&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/603509490966132241'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/603509490966132241'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/inveltion-definition-of-microchip.html' title='Invention &amp; definition of Microchip'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-3738341339703005287</id><published>2007-03-20T13:06:00.000+08:00</published><updated>2007-03-20T13:17:29.235+08:00</updated><title type='text'>What is Semiconductor?</title><content type='html'>URL:&lt;a href="http://www.answers.com/semiconductor"&gt;http://www.answers.com/semiconductor&lt;/a&gt;&lt;br /&gt;Brian Lee&lt;br /&gt;&lt;br /&gt;A solid crystalline material whose electrical conductivity is intermediate between that of a metal and an insulator. Semiconductors exhibit conduction properties that may be temperature-dependent, permitting their use as thermistors (temperature-dependent resistors), or voltage-dependent, as in varistors. By making suitable contacts to a semiconductor or by making the material suitably &lt;a class="alnk" onclick="assignParam('navinfo','method4'+getLinkTextForCookie(this));" href="http://www.answers.com/topic/inhomogeneous-1" target="_top" name="&amp;lid="&gt;inhomogeneous&lt;/a&gt;, electrical &lt;a class="alnk" onclick="assignParam('navinfo','method4'+getLinkTextForCookie(this));" href="http://www.answers.com/topic/rectify" target="_top" name="&amp;amp;lid="&gt;rectification&lt;/a&gt; and amplification can be obtained. Semiconductor devices, rectifiers, and transistors have replaced vacuum tubes almost completely in low-power electronics, making it possible to save volume and power consumption by orders of magnitude. In the form of integrated circuits, they are vital for complicated systems. The optical properties of a semiconductor are important for the understanding and the application of the material. Photodiodes, photoconductive detectors of radiation, injection lasers, light-emitting diodes, solar-energy conversion cells, and so forth are examples of the wide variety of optoelectronic devices.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-3738341339703005287?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/3738341339703005287/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=3738341339703005287&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3738341339703005287'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3738341339703005287'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/what-is-semiconductor.html' title='What is Semiconductor?'/><author><name>Yuria</name><uri>http://www.blogger.com/profile/16306955767736954908</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-4198642504904505949</id><published>2007-03-20T13:04:00.000+08:00</published><updated>2007-03-20T13:05:44.981+08:00</updated><title type='text'>invention of digital computer</title><content type='html'>&lt;a href="http://www.britannica.com/eb/article-1825/digital-computer"&gt;http://www.britannica.com/eb/article-1825/digital-computer&lt;/a&gt;&lt;br /&gt;Hyeon Chung&lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=445406&amp;typeId=13" name="91691.hook"&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a class="artcopybold" href="http://www.britannica.com/eb/article-9108317/Blaise-Pascal"&gt;Blaise Pascal&lt;/a&gt; of France and &lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=335266&amp;typeId=13" name="91692.hook"&gt;&lt;/a&gt;&lt;a class="artcopybold" href="http://www.britannica.com/eb/article-9047669/Gottfried-Wilhelm-Leibniz"&gt;Gottfried Wilhelm Leibniz&lt;/a&gt; of Germany invented mechanical digital calculating machines during the 17th century. The English inventor &lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=47371&amp;amp;typeId=13" name="91693.hook"&gt;&lt;/a&gt;&lt;a class="artcopybold" href="http://www.britannica.com/eb/article-9011590/Charles-Babbage"&gt;Charles Babbage&lt;/a&gt;, however, is generally credited with having conceived the first automatic digital computer. During the 1830s Babbage devised his so-called &lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=22628&amp;typeId=13" name="91694.hook"&gt;Analytical Engine&lt;/a&gt;, a mechanical device designed to combine basic arithmetic operations with decisions based on its own computations. Babbage's plans embodied most of the fundamental elements of the modern digital computer. For example, they called for sequential control—i.e., program control that included branching, looping, and both arithmetic and storage units with automatic printout. Babbage's device, however, was never completed and was forgotten until his writings were rediscovered over a century later.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Of great importance in the evolution of the digital computer was the work of the English mathematician and logician &lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=73612&amp;amp;typeId=13" name="91695.hook"&gt;&lt;/a&gt;&lt;a class="artcopybold" href="http://www.britannica.com/eb/article-9080664/George-Boole"&gt;George Boole&lt;/a&gt;. In various essays written during the mid-1800s, Boole discussed the analogy between the symbols of algebra and those of logic as used to represent logical forms and syllogisms. His formalism, operating on only 0 and 1, became the basis of what is now called &lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=73621&amp;typeId=13" name="91696.hook"&gt;&lt;/a&gt;&lt;a class="artcopybold" href="http://www.britannica.com/eb/article-9080665/Boolean-algebra"&gt;Boolean algebra&lt;/a&gt;, on which computer switching theory and procedures are grounded.&lt;br /&gt;&lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=40387&amp;amp;typeId=13" name="91697.hook"&gt;John V. Atanasoff&lt;/a&gt;, an American mathematician and physicist, is credited with building the first electronic digital computer, which he constructed from 1939 to 1942 with the assistance of his graduate student Clifford E. Berry. &lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=658527&amp;typeId=13" name="91698.hook"&gt;Konrad Zuse&lt;/a&gt;, a German engineer acting in virtual isolation from developments elsewhere, completed construction in 1941 of the first operational program-controlled calculating machine (Z3). In 1944 Howard &lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=10473&amp;amp;typeId=13" name="91699.hook"&gt;&lt;/a&gt;&lt;a class="artcopybold" href="http://www.britannica.com/eb/article-9004179/Howard-Hathaway-Aiken"&gt;Aiken&lt;/a&gt; and a group of engineers at International Business Machines Corporation completed work on the &lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=44895&amp;typeId=13" name="91700.hook"&gt;Harvard Mark I&lt;/a&gt;, a machine whose data-processing operations were controlled primarily by electric relays (switching devices).&lt;br /&gt;Since the development of the Harvard Mark I, the digital computer has evolved at a rapid pace. The succession of advances in computer equipment, principally in logic circuitry, is often divided into generations, with each generation comprising a group of machines that share a common technology.&lt;br /&gt;In 1946 &lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=178066&amp;amp;typeId=13" name="91701.hook"&gt;&lt;/a&gt;&lt;a class="artcopybold" href="http://www.britannica.com/eb/article-9031911/J-Presper-Eckert-Jr"&gt;J. Presper Eckert&lt;/a&gt; and &lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=369894&amp;typeId=13" name="91702.hook"&gt;&lt;/a&gt;&lt;a class="artcopybold" href="http://www.britannica.com/eb/article-9051476/John-W-Mauchly"&gt;John W. Mauchly&lt;/a&gt;, both of the University of Pennsylvania, constructed &lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=183842&amp;amp;typeId=13" name="91703.hook"&gt;ENIAC&lt;/a&gt; (an acronym for electronic numerical integrator and computer), a digital machine and the first general-purpose, electronic computer. Its computing features were derived from Atanasoff's machine; both computers included vacuum tubes instead of relays as their active logic elements, a feature that resulted in a significant increase in operating speed. The concept of a stored-program computer was introduced in the mid-1940s, and the idea of storing instruction codes as well as data in an electrically alterable memory was implemented in &lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=183785&amp;typeId=13" name="91704.hook"&gt;EDVAC&lt;/a&gt; (electronic discrete variable automatic computer).&lt;br /&gt;The second computer generation began in the late 1950s, when digital machines utilizing &lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=602718&amp;amp;typeId=13" name="91705.hook"&gt;&lt;/a&gt;&lt;a class="artcopybold" href="http://www.britannica.com/eb/article-9073201/transistor"&gt;transistors&lt;/a&gt; became commercially available. Although this type of &lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=533976&amp;typeId=13" name="91706.hook"&gt;&lt;/a&gt;&lt;a class="artcopybold" href="http://www.britannica.com/eb/article-9106025/semiconductor-device"&gt;semiconductor device&lt;/a&gt; had been invented in 1948, more than 10 years of developmental work was needed to render it a viable alternative to the vacuum tube. The small size of the transistor, its greater reliability, and its relatively low power consumption made it vastly superior to the tube. Its use in computer circuitry permitted the manufacture of digital systems that were considerably more efficient, smaller, and faster than their first-generation ancestors.&lt;br /&gt;The late 1960s and '70s witnessed further dramatic advances in computer hardware. The first was the fabrication of the &lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=289645&amp;amp;typeId=13" name="91707.hook"&gt;&lt;/a&gt;&lt;a class="artcopybold" href="http://www.britannica.com/eb/article-9106026/integrated-circuit"&gt;integrated circuit&lt;/a&gt;, a solid-state device containing hundreds of transistors, diodes, and resistors on a tiny silicon chip. This microcircuit made possible the production of &lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=358715&amp;typeId=13" name="91708.hook"&gt;mainframe&lt;/a&gt; (large-scale) computers of higher operating speeds, capacity, and reliability at significantly lower cost. Another type of third-generation computer that developed as a result of microelectronics was the &lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=384015&amp;amp;typeId=13" name="91709.hook"&gt;minicomputer&lt;/a&gt;, a machine appreciably smaller than the standard mainframe but powerful enough to control the instruments of an entire scientific laboratory.&lt;br /&gt;The development of &lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=330575&amp;typeId=13" name="91710.hook"&gt;large-scale integration&lt;/a&gt; (LSI) enabled hardware manufacturers to pack thousands of transistors and other related components on a single silicon chip about the size of a baby's fingernail. Such microcircuitry yielded two devices that revolutionized computer technology. The first of these was the &lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=380548&amp;amp;typeId=13" name="91711.hook"&gt;&lt;/a&gt;&lt;a class="artcopybold" href="http://www.britannica.com/eb/article-9052515/microprocessor"&gt;microprocessor&lt;/a&gt;, which is an integrated circuit that contains all the arithmetic, logic, and control circuitry of a central processing unit. Its production resulted in the development of &lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=380316&amp;typeId=13" name="91712.hook"&gt;&lt;/a&gt;&lt;a class="artcopybold" href="http://www.britannica.com/eb/article-9052500/microcomputer"&gt;microcomputers&lt;/a&gt;, systems no larger than portable television sets yet with substantial computing power. The other important device to emerge from LSI circuitry was the &lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=534000&amp;amp;typeId=13" name="91713.hook"&gt;&lt;/a&gt;&lt;a class="artcopybold" href="http://www.britannica.com/eb/article-9066713/semiconductor-memory"&gt;semiconductor memory&lt;/a&gt;. Consisting of only a few chips, this compact storage device is well-suited for use in minicomputers and microcomputers. Moreover, it has found use in an increasing number of mainframes, particularly those designed for high-speed applications, because of its fast-access speed and large storage capacity.&lt;br /&gt;By the beginning of the 1980s integrated circuitry had advanced to &lt;a class="artcopybold" href="http://www.britannica.com/eb/topic?idxStructId=626791&amp;amp;typeId=13" name="91714.hook"&gt;very large-scale integration&lt;/a&gt; (VLSI). This design and manufacturing technology greatly increased the circuit density of microprocessor, memory, and support chips—i.e., those that serve to interface microprocessors with input-output devices. By the 1990s some VLSI circuits contained more than 3 million transistors on a silicon chip less than 0.3 square inch (2 square cm) in area.&lt;br /&gt;The digital computers of the 1980s and '90s employing LSI and VLSI technologies are frequently referred to as fourth-generation systems. Many of the microcomputers produced during the 1980s were equipped with a single chip on which circuits for processor, memory, and interface functions were integrated. See also &lt;a class="artcopybold" href="http://www.britannica.com/eb/article-9070387/supercomputer"&gt;supercomputer&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-4198642504904505949?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/4198642504904505949/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=4198642504904505949&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/4198642504904505949'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/4198642504904505949'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/invention-of-digital-computer.html' title='invention of digital computer'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-3523154797957640362</id><published>2007-03-20T13:03:00.001+08:00</published><updated>2007-03-20T13:04:40.277+08:00</updated><title type='text'>The History of Computers</title><content type='html'>URL:&lt;a href="http://inventors.about.com/library/blcoindex.htm"&gt;http://inventors.about.com/library/blcoindex.htm&lt;/a&gt;&lt;br /&gt;David Hyun&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-3523154797957640362?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/3523154797957640362/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=3523154797957640362&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3523154797957640362'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3523154797957640362'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/history-of-computers.html' title='The History of Computers'/><author><name>romopia</name><uri>http://www.blogger.com/profile/06556624145527321585</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-8500553430515007736</id><published>2007-03-20T13:03:00.000+08:00</published><updated>2007-03-20T13:13:13.771+08:00</updated><title type='text'>First man to create digital computer</title><content type='html'>(Lily Baik)&lt;br /&gt;&lt;a href="http://www.faqs.org/faqs/bulgaria-faq/part7/section-1.html"&gt;http://www.faqs.org/faqs/bulgaria-faq/part7/section-1.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The name John Atanasoff is not very well known but this is the manwho has created the modern digital computer. 50 years have passedsince John Atanasoff has created the first digital computer.&lt;br /&gt;&lt;br /&gt;John V. Atanasoff, 91, who invented the first electroniccomputer in 1939&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-8500553430515007736?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/8500553430515007736/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=8500553430515007736&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/8500553430515007736'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/8500553430515007736'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/first-man-to-create-digital-computer.html' title='First man to create digital computer'/><author><name>LP4eva</name><uri>http://www.blogger.com/profile/05987785484086912053</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-880998026114857344</id><published>2007-03-20T13:02:00.002+08:00</published><updated>2007-03-20T13:03:15.437+08:00</updated><title type='text'>Earlist Mechanism by Paul Lee</title><content type='html'>Examples of early mechanical computing devices included the abacus, the slide rule and arguably the astrolabe and the Antikythera mechanism (which dates from about 150-100 BC).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-880998026114857344?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/880998026114857344/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=880998026114857344&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/880998026114857344'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/880998026114857344'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/earlist-mechanism-by-paul-lee.html' title='Earlist Mechanism by Paul Lee'/><author><name>JediMaster</name><uri>http://www.blogger.com/profile/09920627628485725851</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-2192437125154656143</id><published>2007-03-20T13:02:00.001+08:00</published><updated>2007-03-20T13:02:48.099+08:00</updated><title type='text'>First Radio   By Paul Lee</title><content type='html'>History&lt;br /&gt;Guglielmo Marconi successfully sent the first radio message across the Atlantic Ocean in December 1901 from England to Newfoundland. Marconi's radio did not receive voice or music. Rather, it received buzzing sounds created by a spark gap transmitter sending a signal using Morse code.&lt;br /&gt;The radio got its voice on Christmas Eve 1906. As dozens of ship and amateur radio operators listened for the evening's traffic messages, they were amazed to hear a man's voice calling "CQ, CQ" (which means calling all stations, I have messages) instead of the customary dits and dahs of Morse code. The message was transmitted by Professor Reginald Aubrey Fessenden from a small radio station in Brant Rock, Massachusetts.&lt;br /&gt;In the years from 1904 to 1914, the radio went through many refinements with the invention of the diode and triode vacuum tubes. These devices enabled better transmission and reception of voice and music. Also during this time period, the radio became standard equipment on ships crossing the oceans.&lt;br /&gt;The radio came of age during World War I. Military leaders recognized its value for communicating with the infantry and ships at sea. During the WWI, many advancements were made to the radio making it more powerful and compact. In 1923, Edwin Armstrong invented the superhetrodyne radio. It was a major advancement in how a radio worked. The basic principles used in the superhetrodyne radio are still in use today.&lt;br /&gt;On November 2, 1920 the first commercial radio station went on the air in Pittsburgh, Pennsylvania. It was an instant success, and began the radio revolution called the "Golden Age of Radio." The Golden Age of Radio lasted from the early 1920s through the late 1940s when television brought in a whole new era. During this Golden Age, the radio evolved from a simple device in a bulky box to a complex piece of equipment housed in beautiful wooden cabinets. People would gather around the radio and listen to the latest news and radio plays. The radio occupied a similar position as today's television set.&lt;br /&gt;On June 30, 1948 the transistor was successfully demonstrated at Bell Laboratories. The transistor allowed radios to become compact, with the smallest ones able to fit in a shirt pocket. In 1959, Jack Kilby and Robert Noyce received the first patent for the integrated circuit. The space program of the 1960s would bring more advances to the integrated circuit. Now, a radio could fit in the frame of eyeglasses or inside a pair of small stereo earphones. Today, the frequency dial printed on the cabinet has been replaced with light emitting diodes or liquid crystal displays.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-2192437125154656143?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/2192437125154656143/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=2192437125154656143&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/2192437125154656143'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/2192437125154656143'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/first-radio-by-paul-lee.html' title='First Radio   By Paul Lee'/><author><name>JediMaster</name><uri>http://www.blogger.com/profile/09920627628485725851</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-800437207398442634</id><published>2007-03-19T14:32:00.000+08:00</published><updated>2007-03-19T14:35:57.879+08:00</updated><title type='text'></title><content type='html'>&lt;span style="font-size:180%;"&gt;&lt;strong&gt;‘R2-D2’ mail box one of only 400 in nation&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;a href="http://www.jg-tc.com/articles/2007/03/17/news/news003.txt"&gt;http://www.jg-tc.com/articles/2007/03/17/news/news003.txt&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;CHARLESTON -- A new mail collection box from “a long time ago, in a galaxy far, far away” is being offered by the Charleston Post Office.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;Postal workers installed a collection box that looks like “Star Wars” droid R2-D2 early Friday morning under the University Union skywalk on Eastern Illinois University’s campus. Customers can drop their mail into the R2-D2 box, which is temporarily replacing the traditional blue one.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;This box is one of about 400 R2-D2s that were installed nationwide Friday to promote a joint venture of the U.S. Postal Service and Lucasfilm Ltd., the company formed by “Star Wars” creator George Lucas. They will remain on the street for about three weeks in conjunction with the “Star Wars” 30th anniversary celebration.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;Charleston Postmaster Butch Hackett said the Postal Service contacted him about a month ago to make arrangements for bringing R2-D2 to town. He said the Postal Service wanted to keep word of the Lucasfilm joint venture as quiet as possible prior to the unveiling on Friday. &lt;/p&gt;&lt;p&gt;&lt;br /&gt;“I didn’t even tell my wife. It had to be a big secret,” Hackett joked.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;Hackett said he is proud Charleston was included in the relatively small number of sites for the R2-D2 collection boxes. About 50 were placed in Illinois.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;The Postal Service has 280,000 collection boxes across the country. He said the presence of Eastern brought the “Star Wars” droid to Charleston.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;“They went to colleges because (the Postal Service) thought college-age kids would enjoy the ‘Star Wars’ culture’,” Hackett said.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;The postmaster said he recommended the skywalk as the location for Charleston’s R2-D2 because it is the most heavily used collection box on campus. He estimated it receives 250-300 pieces of mail during the average school day. He said this number could increase as people who want to see R2-D2 bring their mail with them.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;Hackett said postal workers will be extra watchful of R2-D2 to ensure no one tries to take it for their personal “Star Wars” collection. He said tampering with mail and mail containers is a criminal offense.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;The R2-D2 boxes feature the address of a Web site, &lt;a href="http://www.uspsjedimaster.com/"&gt;www.uspsjedimaster.com&lt;/a&gt;, that gives clues about a promotion that will be offered by the Postal Service and Lucasfilm. More details about the promotion are set to be announced March 28. The Postal Service reported a customer vote on “Star Wars” stamps would be part of this promotion.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-800437207398442634?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/800437207398442634/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=800437207398442634&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/800437207398442634'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/800437207398442634'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/r2-d2-mail-box-one-of-only-400-in.html' title=''/><author><name>joanna</name><uri>http://www.blogger.com/profile/07485944182540675269</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-4078880427716896827</id><published>2007-03-19T14:18:00.000+08:00</published><updated>2007-03-19T14:19:43.347+08:00</updated><title type='text'>Report: Google mobile phone, software in the works</title><content type='html'>&lt;a href="http://news3.xinhuanet.com/english/2007-03/19/content_5866807.htm"&gt;http://news3.xinhuanet.com/english/2007-03/19/content_5866807.htm&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;    BEIJING, March 19 (Xinhuanet) -- The latest Wall Street rumor is Google is developing new software to run on Google mobile phones, along with integrated applications for accessing the search engine's Internet services.&lt;br /&gt;    A top Google executive in Europe confirmed the existence of a phone project this week, according to the Wall Street Journal. And Spanish site Noticias.com reported Google's chief for Spain and Portugal said her company has investigated developing a mobile phone.&lt;br /&gt;    But, so far, no official confirmation on either project.&lt;br /&gt;    "Mobile is an important area for Google and we remain focused on creating applications and establishing and growing partnerships with industry leaders to develop innovative services for users worldwide," said Google spokeswoman Erin Fors in a statement. "However, we have nothing further to announce."&lt;br /&gt;    The first whispers about a Google phone emerged in December 2006 when The Observer reported Google seems to be interested in developing a "branded Google phone."  The Observer also reported Google has held talks with Orange about a multi-billion-dollar partnership to create a "Google phone" that makes a web search simple.&lt;br /&gt;    The article quoted a source close to the talks, saying: "Google are software experts and are doing some amazing work compressing data so that the mobile user gets a much better experience. They don't know so much about mobiles, but they are eager to learn from Orange's years of experience."&lt;br /&gt;    Google CEO Eric Schmidt told Reuters in November 2006, he thinks in the future mobile phones should be free for the consumers. Not for everyone, but for those who are willing to accept watching targeted forms of advertising. Speaking with Reuters, Schmidt said mobile phones are used eight to 10 hours a day for talking, texting or Web access.&lt;br /&gt;    "Your mobile phone should be free," Schmidt told Reuters. "It just makes sense that subsidies should increase" as advertising rises on mobile phones.&lt;br /&gt;    Eric Schmidt added also he believes mobile phones may never become totally free to the consumer. At the time, Eric Schmidt also said  Google had no plans to directly give away phones itself.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-4078880427716896827?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/4078880427716896827/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=4078880427716896827&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/4078880427716896827'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/4078880427716896827'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/report-google-mobile-phone-software-in.html' title='Report: Google mobile phone, software in the works'/><author><name>Life Is Good</name><uri>http://www.blogger.com/profile/03512329762380639681</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-2028199244120167261</id><published>2007-03-19T14:15:00.000+08:00</published><updated>2007-03-19T14:20:41.383+08:00</updated><title type='text'>Samsung Digital Picture Frames Get Wi-Fi</title><content type='html'>&lt;em&gt;&lt;strong&gt;Samsung Digital Picture Frames Get Wi-Fi&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&lt;a href="http://www.pcworld.com/article/id,129935-c,wirelesstechnologyservices/article.html"&gt;http://www.pcworld.com/article/id,129935-c,wirelesstechnologyservices/article.html&lt;/a&gt;&lt;br /&gt;&lt;/em&gt;&lt;br /&gt;Sunday, March 18, 2007 07:00 PM PDT&lt;br /&gt;&lt;a class="toolbarMyPagesUnsaved" title="Add to My Pages" onclick="addToMyPagesToolbar(this, 'art129935', 'Samsung Digital Picture Frames Get Wi-Fi', '/article/id,129935-c,wirelesstechnologyservices/article.html');" href="javascript:void(0);" name="toolbarAddToMyPagesLink"&gt;&lt;/a&gt;&lt;a class="toolbarPrint" title="Print" href="http://www.pcworld.com/printable/article/id,129935/printable.html"&gt;&lt;/a&gt;&lt;a class="toolbarEmail" title="Email" href="http://www.pcworld.com/emailfriend?aid=129935"&gt;&lt;/a&gt;&lt;a class="toolbarComment" title="Comment" onclick="javascript:toggleCommentsDisplay('post'); window.scrollBy(0,60);" href="javascript:void(0);"&gt;&lt;/a&gt;&lt;a class="toolbarRss" title="RSS" href="http://www.pcworld.com/resource/rss.html"&gt;&lt;/a&gt;&lt;br /&gt;&lt;a class="toolbarSlashdot" title="Slashdot" href="javascript:bookmarkPop(" title="+encodeURIComponent(" url="+encodeURIComponent("&gt;&lt;/a&gt;&lt;a class="toolbarDigg" title="Digg This" href="javascript:bookmarkPop(" bodytext="+encodeURIComponent(" phase="2&amp;url='+encodeURIComponent('http://www.pcworld.com/article/id,129935/article.html')+'&amp;amp;title='+encodeURIComponent('Samsung"&gt;&lt;/a&gt;&lt;a class="toolbarDelicious" title="del.icio.us" href="javascript:bookmarkPop(" title="+encodeURIComponent(" url="+encodeURIComponent("&gt;&lt;/a&gt;&lt;a class="toolbarNewsvine" title="Newsvine" href="javascript:bookmarkPop(" h="+encodeURIComponent(" u="+encodeURIComponent("&gt;&lt;/a&gt;&lt;br /&gt;Samsung Electronics Co. Ltd. this week showed off a soon-to-be-released version of its digital photo frame with Wi-Fi and two larger versions that will hit markets later this year.&lt;br /&gt;Samsung displayed unreleased 12-inch and 8-inch versions of the company's digital photo frames, alongside a 7-inch version of the frame that can connect with a PC over Wi-Fi. The displays were on display at the Cebit trade show in Hanover, Germany.&lt;br /&gt;The €229 (US$305) SPH-72P, which hits European markets in May, uses Wi-Fi to automatically discover and connect with PCs running Microsoft Corp.'s Windows Vista operating system and can display photos stored in Windows Media Player 11.&lt;br /&gt;Like the €179 SPH-72H model, which does not have Wi-Fi and will hit European markets at the same time, the SPH-72P has a four-in-one memory card reader and a USB port that can connect directly to a digital camera or portable hard disk.&lt;br /&gt;Both picture frames have a 7-inch screen that offers a resolution of 800 pixels by 480 pixels, and they can play MP3 files and movie clips.&lt;br /&gt;The SPH-72P can also display JPEG photos downloaded by RSS (Really Simple Syndication) from Web sites, such as Windows Live Spaces. But a Samsung sales executive manning the company's booth said photo frames sold in Europe may not initially support this feature.&lt;br /&gt;Samsung plans to ship the 8-inch and 12-inch versions later this year, and they could be on the market during the third quarter, the sales executive said. Detailed specifications of the larger photo frames were not available.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-2028199244120167261?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/2028199244120167261/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=2028199244120167261&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/2028199244120167261'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/2028199244120167261'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/samsung-digital-picture-frames-get-wi_19.html' title='Samsung Digital Picture Frames Get Wi-Fi'/><author><name>jjungnang</name><uri>http://www.blogger.com/profile/04350249646790615419</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-978491962456004846</id><published>2007-03-19T13:00:00.000+08:00</published><updated>2007-03-19T13:07:53.626+08:00</updated><title type='text'>Show goes on, partial solar eclipse today</title><content type='html'>&lt;p&gt;&lt;a href="http://timesofindia.indiatimes.com/Cities/Delhi/Show_goes_on_partial_solar_eclipse_today/articleshow/1776264.cms"&gt;http://timesofindia.indiatimes.com/Cities/Delhi/Show_goes_on_partial_solar_eclipse_today/articleshow/1776264.cms&lt;/a&gt;(By. Lily)&lt;/p&gt;&lt;p&gt;&lt;br /&gt;NEW DELHI: March has proved to be a lucky month for sky gazers. A partial solar eclipse will take place on Monday, even as some you will be reading this article.&lt;br /&gt;Delhiites will open their eyes to an already eclipsed rising sun on Monday morning. After the lunar eclipse on Holi on March 4, this is the second time this month that Delhiites will get to witness an eclipse.&lt;br /&gt;According to astrologers, the eclipse falling under 'leo lagna' and 'poorvabhadrapath nakshtra' wouldn't affect individuals particularly but will operate at a macro level.&lt;br /&gt;"It wouldn't affect individuals per se. However, offering prayers to personal deities and offering water to the sun after the eclipse is considered good,"said Naveen Khanna, an astrologer.&lt;br /&gt;Though, ruling out affects on individuals, the astrologers however added that there might be some natural calamities in store due to the eclipse.&lt;br /&gt;The phenomenon is expected to be good for Aries, Gemini, Libra, Scorpio and Pisces, according to some astrologers, while it may pose challenges for sunsigns like Capricorn, Taurus, Cancer and Virgo.&lt;br /&gt;The sun would be seen in city sky around 6:27 am, by which time about 8.5% of the disc would have been eclipsed. "It is a partial solar eclipse. The peak of eclipse will be around 7:06 am, when 47.8% of sun's surface will be eclipsed by the moon,"said N Rathnasree, director, Nehru Planetarium.&lt;br /&gt;The eclipse will be over by 8 am, so only early risers will have a chance to watch the sun being shadowed by the moon.&lt;br /&gt;The eclipse would be seen all over India, though it would be more prominent in northern regions. In eastern parts however, the eclipse will occur after sunrise.&lt;br /&gt;But here is a word of caution for the sky gazers. No matter how tempting the view, do not watch the celestial phenomenon with naked eyes.&lt;br /&gt;"People think it is safe to view the eclipse with naked eyes during sunrise or while the sun is setting, but it is not. One should watch it using certified filters which are easily available in planetariums,"added Rathnasree.&lt;br /&gt;One can also watch it through the LCD display of a digital camera. Public skywatch will also be organised at Teen Murti grounds, which will be equipped with projection apparatus and solar filters. &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-978491962456004846?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/978491962456004846/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=978491962456004846&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/978491962456004846'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/978491962456004846'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/show-goes-on-partial-solar-eclipse.html' title='Show goes on, partial solar eclipse today'/><author><name>LP4eva</name><uri>http://www.blogger.com/profile/05987785484086912053</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-664597911011626583</id><published>2007-03-19T12:58:00.000+08:00</published><updated>2007-03-19T12:59:36.831+08:00</updated><title type='text'>Immense ice deposits found at south pole of Mars</title><content type='html'>&lt;p&gt;(By. Lily)&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.thanhniennews.com/worlds/?catid=9&amp;newsid=26118"&gt;http://www.thanhniennews.com/worlds/?catid=9&amp;amp;newsid=26118&lt;/a&gt;&lt;br /&gt;   The topography of the south polar region of Mars  A spacecraft orbiting Mars has scanned huge deposits of water ice at its south pole so plentiful they would blanket the planet in 36 feet of water if they were liquid, scientists said on Thursday.  The scientists used a joint NASA-Italian Space Agency radar instrument on the European Space Agency Mars Express spacecraft to gauge the thickness and volume of ice deposits at the Martian south pole covering an area larger than Texas.&lt;br /&gt;The deposits, up to 2.3 miles thick, are under a polar cap of white frozen carbon dioxide and water, and appear to be composed of at least 90 percent frozen water, with dust mixed in, according to findings published in the journal Science.&lt;br /&gt;Scientists have known that water exists in frozen form at the Martian poles, but this research produced the most accurate measurements of just how much there is.&lt;br /&gt;They are eager to learn about the history of water on Mars because water is fundamental to the question of whether the planet has ever harbored microbial or some other life. Liquid water is a necessity for life as we know it.&lt;br /&gt;Characteristics like channels on the Martian surface strongly suggest the planet once was very wet, a contrast to its present arid, dusty condition.&lt;br /&gt;Jeffrey Plaut of NASA's Jet Propulsion Laboratory in Pasadena, California, who led the study, said the same techniques are being used to examine similar ice deposits at the Martian north pole.&lt;br /&gt;Radar observations made in late 2005 and early 2006 provided the data on the south pole, and similar observations were taken of the north pole in the past several months, Plaut said.&lt;br /&gt;Plaut, part of an international team of two dozen scientists, said a preliminary look at this data indicated the ice deposits in at the north pole are comparable to those at the south pole.&lt;br /&gt;Search for life&lt;br /&gt;"Life as we know it requires water and, in fact, at least transient liquid water for cells to survive and reproduce. So if we are expecting to find existing life on Mars we need to go to a location where water is available," Plaut said.&lt;br /&gt;"So the polar regions are naturally a target because we certainly know that there's plenty of H2O there."&lt;br /&gt;Some of the new information even hints at the possible existence of a thin layer of liquid water at the base of the deposits.&lt;br /&gt;But while images taken by NASA's Mars Global Surveyor spacecraft made public in December suggested the presence of a small amount of liquid water on the surface, researchers are baffled about the fate of most of the water. The polar deposits contain most of the known water on Mars.&lt;br /&gt;Plaut said the amount of water in the Martian past may have been the equivalent of a global layer hundreds of meters deep, while the polar deposits represent a layer of perhaps tens of meters.&lt;br /&gt;"We have this continuing question facing us in studies of Mars, which is: where did all the water go?" Plaut said.&lt;br /&gt;"Even if you took the water in these two (polar) ice caps and added it all up, it's still not nearly enough to do all of the work that we've seen that the water has done across the surface of Mars in its history."&lt;br /&gt;Plaut said it appears perhaps 10 percent of the water that once existed on Mars is now trapped in these polar deposits. Other water may exist below the planet's surface or perhaps some was lost into space through the atmosphere, Plaut said.&lt;br /&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-664597911011626583?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/664597911011626583/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=664597911011626583&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/664597911011626583'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/664597911011626583'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/immense-ice-deposits-found-at-south.html' title='Immense ice deposits found at south pole of Mars'/><author><name>LP4eva</name><uri>http://www.blogger.com/profile/05987785484086912053</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-6984615328218184998</id><published>2007-03-19T12:57:00.000+08:00</published><updated>2007-03-19T13:01:25.157+08:00</updated><title type='text'>Battle of the game consoles</title><content type='html'>url: &lt;a href="http://www.smh.com.au/news/games/battle-of-the-game-consoles/2007/03/18/1174152859094.html"&gt;http://www.smh.com.au/news/games/battle-of-the-game-consoles/2007/03/18/1174152859094.html&lt;/a&gt;&lt;br /&gt;Hyeon  Chung&lt;br /&gt;&lt;br /&gt;It's all-out war between Microsoft's Xbox 360 and Sony's new PlayStation 3. Charles Purcell tackles the question from neutral territory.&lt;br /&gt;&lt;br /&gt;One day your grandkids will ask: "What were you doing on March 23, 2007, Daddy?" And your answer might be: "Why, I was out buying a PlayStation 3 along with the rest of Australia, son."&lt;br /&gt;Yes, it's that time again, when the entire country will grind to a halt to gaze in awe upon Sony's newest technological marvel. Despite fierce opposition from the Xbox and the GameCube, the PlayStation 2 proved it was king of the gaming jungle. But will the same be said of the PlayStation 3? Sony has already given its competitors precious months to secure market share after they released their respective consoles before Sony.&lt;br /&gt;Nintendo has made a brave fist of it with the Wii, but the true battle of the consoles now is between Xbox and PlayStation. The question is: just how good is the PlayStation 3? And does it have the features and content to take down Bill Gates's pride and joy?&lt;br /&gt;For this face-off, I am comparing the most powerful of the two systems - the $999, 60GB PlayStation 3 (the 20GB will not be available at launch) and the $649 Xbox 360 non-core version.&lt;br /&gt;&lt;br /&gt;[The console]&lt;br /&gt;Frankly, anything is an improvement on the black behemoth that was the first Xbox. The Xbox 360 is a smooth white device much more pleasing to the eye.&lt;br /&gt;The PS3 is a sexier, more futuristic proposition, however. You might marry the 360 - and keep the PS3 as your mistress. As with Henry Ford's early Model T cars, you can have any colour in the launch PS3 as long as it's black. The PS3 has just one cord to plug into the power point, rather than the chunky brick attachment that comes with the 360.&lt;br /&gt;The PS3 has a front-loading slot for discs as opposed to the 360's tray loader. It also has more ports than the 360 for items such as memory sticks and the PlayStation Portable. I was impressed by how quickly and easily you could transfer music and media from the PS3 to the PSP.&lt;br /&gt;&lt;br /&gt;[Controllers]&lt;br /&gt;The PS3 controllers are modelled on the previous generation. The Sixaxis wireless controllers use motion sensor technology as an added feature to the controls, something I observed while playing the downloadable games Flow and Super Rub'a'Dub. You move the whole controller rather than press any of the buttons to control the duck in Super Rub'a'Dub (but the shark still got my baby ducks - no-o-oo). The Sixaxis controller uses Bluetooth to talk to the PS3. You can use up to seven controllers at a time, against the 360's four. There is also a button in the centre of the controller that acts as a central hub and main menu button.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-6984615328218184998?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/6984615328218184998/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=6984615328218184998&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/6984615328218184998'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/6984615328218184998'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/battle-of-game-consoles.html' title='Battle of the game consoles'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-254291964473742726</id><published>2007-03-19T12:55:00.000+08:00</published><updated>2007-03-19T12:57:29.360+08:00</updated><title type='text'>Force is with USPS as R2 puts stamp on mailboxes</title><content type='html'>David Hyun&lt;br /&gt;&lt;a href="http://news.bostonherald.com/national/view.bg?articleid=188816"&gt;http://news.bostonherald.com/national/view.bg?articleid=188816&lt;/a&gt;&lt;br /&gt; WASHINGTON - Thirty years ago, in theaters near and far, far away, a movie opened the imaginations of millions, combining the magic of mythology and special effects to launch the “Star Wars” phenomenon.&lt;br /&gt;     A star of those films - the brave little robot R2-D2 - is about to take a turn collecting mail as the Postal Service and Lucasfilm Ltd. commemorate that movie launch.&lt;br /&gt;    The post office is wrapping mail collection boxes in some 200 cities nationwide in a special covering to look like R2-D2. It’s part of a promotion for a new stamp to be announced March 28, postal marketing chief Anita T. Bizzotto said.&lt;br /&gt;    “It’s a little teaser for the upcoming announcement and we decided to have a little fun with it,” she said. About 400 mailboxes will be covered to look like the stout droid. “When you look at a mailbox, the resemblance to R2-D2 is too good to pass up,” she said.&lt;br /&gt;     While postal officials would like people to look for these mailboxes, Bizzotto urged people not to tamper with them. That’s a crime.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-254291964473742726?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/254291964473742726/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=254291964473742726&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/254291964473742726'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/254291964473742726'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/force-is-with-usps-as-r2-puts-stamp-on.html' title='Force is with USPS as R2 puts stamp on mailboxes'/><author><name>romopia</name><uri>http://www.blogger.com/profile/06556624145527321585</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-2097126968357064649</id><published>2007-03-19T12:54:00.001+08:00</published><updated>2007-03-19T12:56:34.768+08:00</updated><title type='text'>Google Phone is in the works, say insiders</title><content type='html'>(by. Lily)&lt;br /&gt;&lt;a href="http://www.washingtonpost.com/wp-dyn/content/article/2007/03/18/AR2007031801143.html"&gt;http://www.washingtonpost.com/wp-dyn/content/article/2007/03/18/AR2007031801143.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;SAN FRANCISCO (Reuters) - Google Inc. (GOOG.O) is developing its own mobile phone, according to industry insiders and analysts, while a Google official in Spain last week acknowledged the company is "investigating" such a project.&lt;br /&gt;Google isn't commenting directly on leaks from Europe and the United States which describe a low-cost, Internet-connected phone with a color, wide-screen design. Newspaper and blog reports in recent months have Google shopping its phone design to potential mobile phone manufacturing partners in Asia.&lt;br /&gt; "Mobile is an important area for Google," Google spokeswoman Erin Fors said on Friday. "We remain focused on creating applications and establishing and growing partnerships with industry leaders to develop innovative services for users worldwide. However, we have nothing further to announce."&lt;br /&gt;Gadget enthusiasts who only two months ago were obsessed with the potential revolutionary impact on the phone industry of Apple Inc.'s (AAPL.O) iPhone device -- due out in June and at prices starting at $500 -- have shifted their attention to whether Google is developing an even lower-cost phone.&lt;br /&gt;"We obviously need another mythical mobile to drool over and speculate about -- and the natural candidate is, of course, the so-called Google phone," geek hardware site Engadget wrote earlier this month &lt;a href="http://tinyurl.com/3b7bow"&gt;http://tinyurl.com/3b7bow&lt;/a&gt;.&lt;br /&gt;To be sure, feverish speculation about Google products has been wrong before. Google was widely reported to be building its own line of personal computers a little over a year ago. What in fact materialized was a set of free software programs designed to make any existing Windows PCs easier to use.&lt;br /&gt;But Richard Windsor, a phone analyst with brokerage Nomura in London, told clients late last week that unspecified Google representatives at a major European conference in Germany had confirmed the company is working on its own phone device.&lt;br /&gt;"Google has come out of the closet at the CeBIT trade fair admitting that it is working on a mobile phone of its own," Windsor said in a note entitled "Google Phone: From myth to reality."&lt;br /&gt;"This is not going to be a high-end device but a mass market device aimed at bringing Google to users who don't have a PC," he said.&lt;br /&gt;Over the past year, Google has branched out beyond computers to bring Web search, e-mail, mapping and other Web services to millions of new and existing phone browsers worldwide. Rivals Microsoft Corp. (MSFT.O) and Yahoo Inc. (YHOO.O) also are racing to run Web services on mobile phones.&lt;br /&gt;Polaris Venture Partners, said in a March 4 blog post &lt;a href="http://tinyurl.com/2z23o7"&gt;http://tinyurl.com/2z23o7&lt;/a&gt; that an "inside source close to the&lt;br /&gt;The device Simeonov describes could handle voice over Internet phone-calling. He said it is being developed within a 100-person mobile phone group at Google that includes Andy Rubin, the creator of Sidekick, a popular phone/Internet device that he developed at a prior company he founded, Danger Inc.&lt;br /&gt;Lending further clues, Isabel Aguilera, head of Google's Iberian operations, was quoted last week in Spanish news site Noticias.com as acknowledging the existence of a part-time project by some Google engineers to develop a mobile phone.&lt;br /&gt;In her interview at &lt;a href="http://tinyurl.com/2feypv/"&gt;http://tinyurl.com/2feypv/&lt;/a&gt;, translated&lt;br /&gt;In January, Engadget circulated a photo purporting to be a prototype Internet phone with a wide, color screen designed by Google and built by Samsung Electronics Co. Ltd. (005930.KS). This unconfirmed report replaced an earlier theory published by The Observer in December that Google was working with Taiwan's High Tech Computer Corp. (HTC) (2498.TW) on a mobile phone.&lt;br /&gt;A source at a rival Internet company who has talked to the same mobile phone manufacturers said on Friday that "Google is going to build their own phone, whether it is with HTC or Samsung or some other ODM (original device manufacturer)."&lt;br /&gt;Windsor, the London-based Nomura analyst who tracks mobile phone handset makers like Nokia (NOK1V.HE) of Finland, argues that a Google Phone "will meet with limited success and lose money" because it lacks the necessary phone industry relationships to reach the massive scale needed to compete.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-2097126968357064649?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/2097126968357064649/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=2097126968357064649&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/2097126968357064649'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/2097126968357064649'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/google-phone-is-in-works-say-insiders.html' title='Google Phone is in the works, say insiders'/><author><name>LP4eva</name><uri>http://www.blogger.com/profile/05987785484086912053</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-4535045865635907482</id><published>2007-03-19T12:54:00.000+08:00</published><updated>2007-03-19T12:56:09.684+08:00</updated><title type='text'>Three versions of Halo 3 coming</title><content type='html'>&lt;a href="http://4.bp.blogspot.com/_m9o8RkkSz3E/Rf4X4sBJ51I/AAAAAAAAABU/ggBaAdDMgnU/s1600-h/halo-3-le-ss1.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5043494895357650770" style="FLOAT: right; MARGIN: 0px 0px 10px 10px; CURSOR: hand" alt="" src="http://4.bp.blogspot.com/_m9o8RkkSz3E/Rf4X4sBJ51I/AAAAAAAAABU/ggBaAdDMgnU/s320/halo-3-le-ss1.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;url : &lt;a href="http://www.eurogamer.net/article.php?article_id=74264"&gt;http://www.eurogamer.net/article.php?article_id=74264&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;Hyeon Chung&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;Microsoft has confirmed that three editions of Halo 3 will be available when the game launches later this year.&lt;br /&gt;First up is the plain old Standard Edition which is comprised of the standalone disc, plus a box and manual we'd wager.&lt;br /&gt;Then there's the Legendary Edition which will be released "in limited quantities", according to a statement. It will come with a collectable Spartan helmet case, Halo 3 storyboard art and two bonus discs.&lt;br /&gt;Advertisement&lt;a href="http://195.157.98.219/adclick.php?n=a6511238" target="_blank"&gt;&lt;/a&gt;&lt;br /&gt;The first disc will feature exclusive behind-the-scenes footage, including a Making of Halo 3 documentary, plus a look at early game concepts. It will also include an audio-visual calibration tool "never before seen on a videogame", which has been custom designed by the Halo 3 team and will allow you to enjoy high definition footage and optimised audio.&lt;br /&gt;The second disc, which will only be available with the Legendary Edition, will include remastered cinematic material from Halo 2 and Halo: Combat Evovled, complete with developer commentaries.&lt;br /&gt;You'll also get a featurette about a day in the life at Bungie, plus exclusive content from the Machinima artists who created Red vs. Blue and This Spartan Life.&lt;br /&gt;The Limited Edition version of Halo 3 will come in a shiny metal case. Along with the first bonus disc from the Legendary Edition, you'll get a Halo fiction and art book which features a guide to the game's universe and previously unseen material.&lt;br /&gt;Microsoft also confirmed that Halo 3 will arrive in shops this autumn, though they haven't said exactly when yet. &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-4535045865635907482?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/4535045865635907482/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=4535045865635907482&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/4535045865635907482'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/4535045865635907482'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/three-versions-of-halo-3-coming.html' title='Three versions of Halo 3 coming'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_m9o8RkkSz3E/Rf4X4sBJ51I/AAAAAAAAABU/ggBaAdDMgnU/s72-c/halo-3-le-ss1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-5774863851581898102</id><published>2007-03-19T12:53:00.001+08:00</published><updated>2007-03-19T12:55:39.161+08:00</updated><title type='text'>Missing Drivers And Security Holes: Growing Pains For Vista</title><content type='html'>David Hyun&lt;br /&gt;&lt;a href="http://www.playfuls.com/news_06594_Missing_Drivers_And_Security_Holes_Growing_Pains_For_Vista.html"&gt;http://www.playfuls.com/news_06594_Missing_Drivers_And_Security_Holes_Growing_Pains_For_Vista.html&lt;/a&gt;&lt;br /&gt; A modern operating system like Windows Vista includes millions of lines of code. Thousands of workers toiled for years to develop Microsoft's newest product - which means all the more potential for bugs. Although Vista has already been on the market for a few weeks now, negative reports have actually been relatively mild. A few hiccups are clearly audible, however. "The biggest problem is missing drivers," says Axel Vahldiek from Hanover-based c't magazine. Without those programmes, generally provided by hardware makers, peripheral devices either cannot function properly or will not work at all. The problem isn't just limited to older or exotic hardware: the GeForce 8800 graphic chip supports the DirectX 10 graphics interface used by Vista and is found on fast, high-end graphics cards. Yet Nvidia still hadn't managed to make a driver available by the end of February. The website for the market leader in graphics chips has long offered a beta, or preliminary, version of the driver. Vahldiek warns against using such beta drivers, however: "They do not ever work error-free." Relying on them can lead to data loss, he says. Another problem with Vista is related to security: In the view of the German Federal Agency for Security in Information Technology (BSI) in Bonn, the current discussion surrounding Vista's account administration function, User Account Control (UAC), is particularly interesting, says Thomas Caspers, an expert on operating system security. The discussion was given a jolt by Polish security expert Joanna Rutkowska, who publicized a hole in the system. UAC is designed to require administrator access to install new software. That means increased security at first. Yet, according to Rutkowska it also means that games downloaded off the internet are also granted full rights. From a technical point of view, this is completely unnecessary. If malicious code is hidden in the game, then it has a clear path to the computer. Passwords are effective only for keeping curious lay users from accessing the computer. Little more than a bit of determination is needed to crack the access passwords on Windows Vista. Elcomsoft, a Russian firm, is for example offering software to perform just that job - ostensibly for users who have forgotten their password. Anyone in possession of a Vista version with the BitLocker encryption programme should use it. The software makes files encrypted with BitLocker unreadable even if an intruder gains access to the computer using the Elcomsoft programme. All in all, however, the problems with Vista more closely resemble "growing pains" than serious flaws. Vista does not assign standard rights to many antivirus programmes to access all folders, Vahldiek explains. Yet if a virus scanner cannot check through certain parts of the computer that might potentially contain bugs, it is not performing its duty. In such cases manual configuration is required. Still, no major problems have as yet turned up for Vista. Peter Knaak, computer expert for the German consumer testing organization Stiftung Warentest in Berlin presumes that some vulnerabilities will start showing up for Vista in the coming weeks and months. He therefore recommends waiting until Microsoft releases Service Pack 1 for Vista before making the switch. Service packs are a collection of updates to iron out a large group of individual problems. No date has been provided as yet for Service Pack 1, says Microsoft spokeswoman Irene Nadler. What is certain is that Microsoft will release security-related updates on a regular basis via the Update function built into Windows. INFO BOX: Vista's speech recognition as security hole Experts are reporting on a potential security hole in Windows Vista: its speech recognition system. It could be used to send commands to remote computers from over the internet - in theory, at least. According to Thomas Caspers from the German Federal Agency for Security in Information Technology (BSI) in Bonn, it remains unclear whether talking malware will end up being an amusing side note or, in certain scenarios, a genuine threat. The BSI suspects it will be the former, and is not yet recommending specific countermeasures.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-5774863851581898102?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/5774863851581898102/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=5774863851581898102&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5774863851581898102'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5774863851581898102'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/missing-drivers-and-security-holes.html' title='Missing Drivers And Security Holes: Growing Pains For Vista'/><author><name>romopia</name><uri>http://www.blogger.com/profile/06556624145527321585</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-7016310151243982576</id><published>2007-03-19T12:53:00.000+08:00</published><updated>2007-03-19T12:54:35.482+08:00</updated><title type='text'>Samsung Digital Picture Frames Get Wi-Fi</title><content type='html'>&lt;a href="http://1.bp.blogspot.com/_m9o8RkkSz3E/Rf4Xc8BJ50I/AAAAAAAAABM/jxsDY4-LCPk/s1600-h/a.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5043494418616280898" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://1.bp.blogspot.com/_m9o8RkkSz3E/Rf4Xc8BJ50I/AAAAAAAAABM/jxsDY4-LCPk/s320/a.jpg" border="0" /&gt;&lt;/a&gt; url: &lt;a href="http://www.pcworld.com/article/id,129935-c,wirelesstechnologyservices/article.html"&gt;http://www.pcworld.com/article/id,129935-c,wirelesstechnologyservices/article.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Hyeon Chung&lt;br /&gt;&lt;br /&gt;Samsung Electronics Co. Ltd. this week showed off a soon-to-be-released version of its digital photo frame with Wi-Fi and two larger versions that will hit markets later this year.&lt;br /&gt;Samsung displayed unreleased 12-inch and 8-inch versions of the company's digital photo frames, alongside a 7-inch version of the frame that can connect with a PC over Wi-Fi. The displays were on display at the Cebit trade show in Hanover, Germany.&lt;br /&gt;The €229 (US$305) SPH-72P, which hits European markets in May, uses Wi-Fi to automatically discover and connect with PCs running Microsoft Corp.'s Windows Vista operating system and can display photos stored in Windows Media Player 11.&lt;br /&gt;Like the €179 SPH-72H model, which does not have Wi-Fi and will hit European markets at the same time, the SPH-72P has a four-in-one memory card reader and a USB port that can connect directly to a digital camera or portable hard disk.&lt;br /&gt;Both picture frames have a 7-inch screen that offers a resolution of 800 pixels by 480 pixels, and they can play MP3 files and movie clips.&lt;br /&gt;The SPH-72P can also display JPEG photos downloaded by RSS (Really Simple Syndication) from Web sites, such as Windows Live Spaces. But a Samsung sales executive manning the company's booth said photo frames sold in Europe may not initially support this feature.&lt;br /&gt;Samsung plans to ship the 8-inch and 12-inch versions later this year, and they could be on the market during the third quarter, the sales executive said. Detailed specifications of the larger photo frames were not available.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-7016310151243982576?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/7016310151243982576/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=7016310151243982576&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7016310151243982576'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7016310151243982576'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/samsung-digital-picture-frames-get-wi.html' title='Samsung Digital Picture Frames Get Wi-Fi'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_m9o8RkkSz3E/Rf4Xc8BJ50I/AAAAAAAAABM/jxsDY4-LCPk/s72-c/a.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-7994429042726691063</id><published>2007-03-16T12:59:00.000+08:00</published><updated>2007-03-16T13:06:25.788+08:00</updated><title type='text'>What is "Naver"??</title><content type='html'>&lt;a href="http://2.bp.blogspot.com/_m9o8RkkSz3E/RfokmcKMn_I/AAAAAAAAABE/SUc1jz_XZfo/s1600-h/200px-Naverscreenshot.png"&gt;&lt;img id="BLOGGER_PHOTO_ID_5042382975607283698" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://2.bp.blogspot.com/_m9o8RkkSz3E/RfokmcKMn_I/AAAAAAAAABE/SUc1jz_XZfo/s320/200px-Naverscreenshot.png" border="0" /&gt;&lt;/a&gt;url: &lt;a href="http://www.answers.com/naver"&gt;http://www.answers.com/naver&lt;/a&gt; (imformation from Wikipedia)&lt;br /&gt;&lt;div&gt;Hyeon Chung&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;Naver (&lt;a class="ilnk" onclick="assignParam('navinfo','method4'+getLinkTextForCookie(this));" href="http://www.answers.com/topic/hangul" target="_top"&gt;Hangul&lt;/a&gt;:네이버) is the # 1 &lt;a class="ilnk" onclick="assignParam('navinfo','method4'+getLinkTextForCookie(this));" href="http://www.answers.com/topic/web-portal" target="_top"&gt;web portal&lt;/a&gt; in &lt;a class="ilnk" onclick="assignParam('navinfo','method4'+getLinkTextForCookie(this));" href="http://www.answers.com/topic/south-korea" target="_top"&gt;South Korea&lt;/a&gt;. Naver was launched in June 1999. Using its own proprietary &lt;a class="ilnk" onclick="assignParam('navinfo','method4'+getLinkTextForCookie(this));" href="http://www.answers.com/topic/search-engine" target="_top"&gt;search engine&lt;/a&gt;, Naver was the first portal to provide search service in Korea including integrated searches. It has since remained in the lead in the development of Korean search service. It also provides a wide range of &lt;a class="ilnk" onclick="assignParam('navinfo','method4'+getLinkTextForCookie(this));" href="http://www.answers.com/topic/internet" target="_top"&gt;Internet&lt;/a&gt; services including a news service with comprehensive coverage from more than 90 media sources, an e-mail service, and an academic thesis search service.&lt;/div&gt;Definition of Naver is the word NAVigate+ER(e.g. engineER; writER).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-7994429042726691063?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/7994429042726691063/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=7994429042726691063&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7994429042726691063'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7994429042726691063'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/what-is-naver.html' title='What is &quot;Naver&quot;??'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_m9o8RkkSz3E/RfokmcKMn_I/AAAAAAAAABE/SUc1jz_XZfo/s72-c/200px-Naverscreenshot.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-1514262868073500411</id><published>2007-03-16T12:58:00.001+08:00</published><updated>2007-03-16T12:58:53.558+08:00</updated><title type='text'>Mars southern polar region covered with ice: scientists</title><content type='html'>&lt;a href="http://english.people.com.cn/200703/16/eng20070316_358259.html"&gt;http://english.people.com.cn/200703/16/eng20070316_358259.html&lt;/a&gt;(By. Lily)&lt;br /&gt;      &lt;br /&gt;Scientists have discovered that the southern polar region of Mars contains enough ice to cover the planet in a layer of water 36 feet (11 meters) deep.&lt;br /&gt;Scientists at the Jet Propulsion Laboratory (JPL) in Pasadena, California, announced that an instrument on the European Space Agency's Mars Express determined that the ice on the south pole goes at least 2.3 miles (3.7 km) below the surface.&lt;br /&gt;The discovery was the result of joint efforts by the Italian Space Agency and researchers at the JPL, which is part of the U.S. National Aeronautics and Space Administration (NASA). The team has been working to determine the thickness of the frozen water on Mars.&lt;br /&gt;The study's findings are published in Thursday's online edition of "Science."&lt;br /&gt;"The south pole's layered deposits of Mars cover an area bigger than Texas. The amount of water they contain has been estimated before, but never with the level of confidence this radar makes possible," said Jeffrey Plaut of JPL in Pasandena, near Los Angeles.&lt;br /&gt;Scientists are using the Mars Advanced Radar for Subsurface and Ionospheric Sounding, otherwise known as MARSIS, to also map the thickness of similar deposits on the north pole of Mars.&lt;br /&gt;"MARSIS is showing itself to be a very powerful tool to probe underneath the Martian surface, and it's showing how our team's goals, such as probing the polar layered deposits, are being successfully achieved," said Giovanni Picardi, principal investigator of the project.&lt;br /&gt;"Not only is MARSIS providing us with the first-ever views of Mars' subsurface at those depths, but the details we are seeing are truly amazing."&lt;br /&gt;The polar layered deposits hold most of the known water on Mars, although other areas of the planet appear to have been very wet at other times, according to the researchers.&lt;br /&gt;Discovering the history of water on Mars is key to determining whether the planet ever supported life.&lt;br /&gt;The frozen water deposits are also helping researchers learn more about the internal structures of Mars.&lt;br /&gt;"We didn't really know where the bottom of the deposit was," Plaut said. "Now we can see that the crust has not been depressed by the weight of the ice as it would be on Earth. The crust and upper mantle of Mars are stiffer than the Earth's, probably because the interior of Mars is so much colder."&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-1514262868073500411?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/1514262868073500411/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=1514262868073500411&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/1514262868073500411'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/1514262868073500411'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/mars-southern-polar-region-covered-with_16.html' title='Mars southern polar region covered with ice: scientists'/><author><name>LP4eva</name><uri>http://www.blogger.com/profile/05987785484086912053</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-934884262952163811</id><published>2007-03-16T12:56:00.000+08:00</published><updated>2007-03-16T12:57:47.043+08:00</updated><title type='text'>Mars southern polar region covered with ice: scientists</title><content type='html'>David Hyun&lt;br /&gt;&lt;a href="http://english.people.com.cn/200703/16/eng20070316_358259.html"&gt;http://english.people.com.cn/200703/16/eng20070316_358259.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Scientists have discovered that the southern polar region of Mars contains enough ice to cover the planet in a layer of water 36 feet (11 meters) deep.&lt;br /&gt;Scientists at the Jet Propulsion Laboratory (JPL) in Pasadena, California, announced that an instrument on the European Space Agency's Mars Express determined that the ice on the south pole goes at least 2.3 miles (3.7 km) below the surface.&lt;br /&gt;The discovery was the result of joint efforts by the Italian Space Agency and researchers at the JPL, which is part of the U.S. National Aeronautics and Space Administration (NASA). The team has been working to determine the thickness of the frozen water on Mars.&lt;br /&gt;The study's findings are published in Thursday's online edition of "Science."&lt;br /&gt;"The south pole's layered deposits of Mars cover an area bigger than Texas. The amount of water they contain has been estimated before, but never with the level of confidence this radar makes possible," said Jeffrey Plaut of JPL in Pasandena, near Los Angeles.&lt;br /&gt;Scientists are using the Mars Advanced Radar for Subsurface and Ionospheric Sounding, otherwise known as MARSIS, to also map the thickness of similar deposits on the north pole of Mars.&lt;br /&gt;"MARSIS is showing itself to be a very powerful tool to probe underneath the Martian surface, and it's showing how our team's goals, such as probing the polar layered deposits, are being successfully achieved," said Giovanni Picardi, principal investigator of the project.&lt;br /&gt;"Not only is MARSIS providing us with the first-ever views of Mars' subsurface at those depths, but the details we are seeing are truly amazing."&lt;br /&gt;The polar layered deposits hold most of the known water on Mars, although other areas of the planet appear to have been very wet at other times, according to the researchers.&lt;br /&gt;Discovering the history of water on Mars is key to determining whether the planet ever supported life.&lt;br /&gt;The frozen water deposits are also helping researchers learn more about the internal structures of Mars.&lt;br /&gt;"We didn't really know where the bottom of the deposit was," Plaut said. "Now we can see that the crust has not been depressed by the weight of the ice as it would be on Earth. The crust and upper mantle of Mars are stiffer than the Earth's, probably because the interior of Mars is so much colder."&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-934884262952163811?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/934884262952163811/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=934884262952163811&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/934884262952163811'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/934884262952163811'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/mars-southern-polar-region-covered-with.html' title='Mars southern polar region covered with ice: scientists'/><author><name>romopia</name><uri>http://www.blogger.com/profile/06556624145527321585</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-7869183056979305599</id><published>2007-03-16T09:21:00.000+08:00</published><updated>2007-03-16T09:23:22.129+08:00</updated><title type='text'>Code to clean up database and add new fields</title><content type='html'>Thanks to Jacky&lt;br /&gt;Code to clean up database and add new fields.&lt;br /&gt;&lt;br /&gt;On the server at:&lt;br /&gt;2007SpringHSTech\P9\JackyChen\p9\vb.net\Test to replace&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-7869183056979305599?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/7869183056979305599/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=7869183056979305599&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7869183056979305599'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7869183056979305599'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/code-to-clean-up-database-and-add-new.html' title='Code to clean up database and add new fields'/><author><name>PhillipsInChina</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-6954324861248684859</id><published>2007-03-15T13:07:00.000+08:00</published><updated>2007-03-15T13:08:49.827+08:00</updated><title type='text'>First Application</title><content type='html'>Public Class Form1&lt;br /&gt;    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load&lt;br /&gt;    End Sub&lt;br /&gt;    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click        WebBrowser1.Navigate(TextBox1.Text)    End SubEnd Class&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-6954324861248684859?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/6954324861248684859/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=6954324861248684859&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/6954324861248684859'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/6954324861248684859'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/first-application.html' title='First Application'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-4694346628180405665</id><published>2007-03-14T13:18:00.000+08:00</published><updated>2007-03-14T13:20:21.386+08:00</updated><title type='text'>IBM's 65nm Cell Could Chip Away PS3 Costs</title><content type='html'>&lt;a href="http://4.bp.blogspot.com/_m9o8RkkSz3E/RfeF9sKMn-I/AAAAAAAAAA8/9UJsNs-Jw_Y/s1600-h/aibiem2.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5041645602737004514" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://4.bp.blogspot.com/_m9o8RkkSz3E/RfeF9sKMn-I/AAAAAAAAAA8/9UJsNs-Jw_Y/s320/aibiem2.jpg" border="0" /&gt;&lt;/a&gt; (url: &lt;a href="http://www.technewsworld.com/story/56267.html"&gt;http://www.technewsworld.com/story/56267.html&lt;/a&gt;)&lt;br /&gt;Hyeon Chung&lt;br /&gt;&lt;br /&gt;One of the reasons for the high price of Sony's PlayStation 3 is the gaming console's costly 90 nanometer Cell chip. However, IBM on Monday named its first factory to begin producing less expensive 65 nanometer Cell chips. If implemented in the PS3, the smaller Cell could mean a significant drop in the console's hefty price tag.&lt;br /&gt;&lt;br /&gt;A state-of-the-art &lt;a onclick="window.open('http://www.ibm.com'); return false;" href="http://www.ibm.com/"&gt;IBM&lt;/a&gt; (NYSE: IBM) &lt;a href="http://www.technewsworld.com/perl/search.pl?query=IBM&amp;scope=network"&gt;&lt;/a&gt;manufacturing plant located in East Fishkill, N.Y., has become the first facility to produce the 65 nanometer (nm) Cell Broadband Engine, the chip maker announced Monday. The Cell chip, developed through a US$400 million partnership between IBM, &lt;a onclick="window.open('http://www.toshiba.com/tai-new/'); return false;" href="http://www.toshiba.com/tai-new/"&gt;Toshiba&lt;/a&gt; &lt;a href="http://www.technewsworld.com/perl/search.pl?query=Toshiba&amp;scope=network"&gt;&lt;/a&gt;and &lt;a onclick="window.open('http://www.sony.com'); return false;" href="http://www.sony.com/"&gt;Sony&lt;/a&gt; (NYSE: SNE) &lt;a href="http://www.technewsworld.com/perl/search.pl?query=Sony&amp;scope=network"&gt;&lt;/a&gt;, is the technology underpinning Sony's recently released next-generation video game console, &lt;a onclick="window.open('http://www.us.playstation.com/'); return false;" href="http://www.us.playstation.com/"&gt;PlayStation 3&lt;/a&gt; &lt;a href="http://www.technewsworld.com/perl/search.pl?query=%22PlayStation%203%22&amp;scope=network"&gt;&lt;/a&gt;(PS3).&lt;br /&gt;IBM invested more than $2.5 billion to build what it calls "the world's most technologically advanced chip manufacturing facility." The chip will provide breakthrough performance for consumer electronics, medical imaging, design engineering and other graphics-intensive applications, according to IBM.&lt;br /&gt;&lt;a onmouseover="status='http://www.rackspace.com/index.php?CMP=ect_technewsworld_160x600_ceo'; return true;" onclick=" { ENN_wo('http://www.ectnews.com/adsys/link/?creative=4145&amp;ENN_rnd=11738494713218'); return false; }" onmouseout="status=''; return true;" href="http://www2.blogger.com/"&gt;&lt;/a&gt;&lt;br /&gt;Less Power, Less Money&lt;br /&gt;The technology incorporated inside a Cell chip is a major departure from typical processor designs found in the average PC or even the PS3's predecessor, the &lt;a onclick="window.open('http://www.us.playstation.com/'); return false;" href="http://www.us.playstation.com/"&gt;PlayStation 2&lt;/a&gt; &lt;a href="http://www.technewsworld.com/perl/search.pl?query=%22PlayStation%202%22&amp;scope=network"&gt;&lt;/a&gt;. Those devices operate using a single processor to perform the calculations necessary for a computer to run properly. Although &lt;a onclick="window.open('http://www.intel.com'); return false;" href="http://www.intel.com/"&gt;Intel&lt;/a&gt; (Nasdaq: INTC) &lt;a href="http://www.technewsworld.com/perl/search.pl?query=Intel&amp;scope=network"&gt;&lt;/a&gt;and &lt;a onclick="window.open('http://www.amd.com'); return false;" href="http://www.amd.com/"&gt;AMD&lt;/a&gt; (NYSE: AMD) &lt;a href="http://www.technewsworld.com/perl/search.pl?query=AMD&amp;scope=network"&gt;&lt;/a&gt;have begun producing duo- and quad-core processors, the Cell processor uses a multi-core architecture combined with ultra high-speed communications capabilities that provide greatly improved, real-time response for entertainment and rich media applications, IBM said.&lt;br /&gt;The Cell chip uses one dual-threaded PowerPC core and eight "synergistic" processors. Its top clock speed is greater than 4 GHz, making it capable of massive floating point processing.&lt;br /&gt;At around $90, 90nm Cell processors such as the kind found in PS3s were generally considered far too expensive. That high cost is seen as one reason for the PS3's $599 price tag.&lt;br /&gt;The new 65nm processor is smaller and uses less power than its predecessor. That translates into a lower price.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Necessary Steps&lt;br /&gt;"This is something we knew they were going to do and they have to do it," &lt;a onclick="window.open('http://www.gartner.com/'); return false;" href="http://www.gartner.com/"&gt;Gartner&lt;/a&gt; (NYSE: IT) &lt;a href="http://www.technewsworld.com/perl/search.pl?query=%22Gartner%22&amp;scope=network"&gt;&lt;/a&gt;research fellow Martin Reynolds told TechNewsWorld.&lt;br /&gt;By going to 65nm, several things happen, Reynolds said. First, the chip becomes cheaper, and therefore more chips can be produced. That, he explained, is really important should the chip be implemented in the production of Sony's PS3. "Lower production costs mean more units [and] means more people can buy games."&lt;br /&gt;In addition, the 65nm process will result in a cooler chip that consumes less power and will be more reliable, another potential bonus for the PS3. "That's also important for something sitting in someone's living room," Reynolds added.&lt;br /&gt;While IBM is marketing &lt;a onmouseover="status='http://www.lyris.com/products/listmanager/free_trial.html?utm_source=technewsworld&amp;amp;utm_medium=banner&amp;utm_campaign=rockstar'; return true;" onclick=" { ENN_wo('http://www.ectnews.com/adsys/link/?creative=4316&amp;ENN_rnd=11738494712656'); return false; }" onmouseout="status=''; return true;" href="http://www2.blogger.com/"&gt;&lt;/a&gt;a Blade server &lt;a onmouseover="status='http://ad.doubleclick.net/clk;73910660;15705140;y'; return true;" onclick=" { ENN_wo('http://www.ectnews.com/adsys/link/?creative=4310&amp;ENN_rnd=11738494712656'); return false; }" onmouseout="status=''; return true;" href="http://www2.blogger.com/"&gt;&lt;/a&gt;built around the Cell processor, Reynolds does not expect to see the chip in a standard PC because of the difficulty associated with combining the Cell technology and other chips.&lt;br /&gt;"It has eight processors inside the chip and they are different than the other processors in the system," Reynolds said. "So, [the computer] has to understand two languages to make it work. It works well for a lot of gaming stuff, but for a typical corporate IT department it is not such an easy thing to use."&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The Golden Key&lt;br /&gt;For IBM, the key is the Cell's inclusion in the PS3, Reynolds noted. That would give IBM a guaranteed market for millions of these chips each quarter, thus supplying IBM with the capital necessary to continue developing the chip and creating uses for new applications.&lt;br /&gt;"So that market will fuel the development of more Cell chips. So it is paid for and IBM can continue developing the technology for other applications," he pointed out.&lt;br /&gt;Martin expects IBM to take the Cell down to 45nm and reduce the price even further. The hundreds of millions of dollars in revenue the company will receive from consumer uses will enable IBM to develop more advanced versions of the processor.&lt;br /&gt;"They've got the money to continue developing the technology," Reynolds concluded. "And that could help it spark in the business world."&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-4694346628180405665?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/4694346628180405665/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=4694346628180405665&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/4694346628180405665'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/4694346628180405665'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/ibms-65nm-cell-could-chip-away-ps3.html' title='IBM&apos;s 65nm Cell Could Chip Away PS3 Costs'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_m9o8RkkSz3E/RfeF9sKMn-I/AAAAAAAAAA8/9UJsNs-Jw_Y/s72-c/aibiem2.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-7578101797646238547</id><published>2007-03-14T13:16:00.000+08:00</published><updated>2007-03-14T13:17:17.966+08:00</updated><title type='text'>IBM starts producing Cell chip at 65nm</title><content type='html'>&lt;a href="http://computerworld.com/action/article.do?command=viewArticleBasic&amp;taxonomyName=hardware&amp;amp;articleId=9012968&amp;taxonomyId=12&amp;amp;intsrc=kc_topDa"&gt;http://computerworld.com/action/article.do?command=viewArticleBasic&amp;taxonomyName=hardware&amp;amp;articleId=9012968&amp;taxonomyId=12&amp;amp;intsrc=kc_topDa&lt;/a&gt;David Hyun&lt;br /&gt;&lt;br /&gt;March 12, 2007 (IDG News Service) -- IBM Corp. has started production of a more advanced version of the Cell microprocessor, the chip it developed with Sony Corp. and Toshiba Corp.&lt;br /&gt;The new Cell Broadband Engine is being manufactured at IBM's factory in East Fishkill, New York, using a 65-nanometer manufacturing process, which is an improvement on the current 90-nanometer process. Typically such a step in process technology results in a chip that is physically smaller and uses less power.&lt;br /&gt;The Cell chip is perhaps best known for its place at the heart of Sony Computer Entertainment Inc.'s (SCEI) recently-launched PlayStation 3 games console but it's also used in computers produced by IBM.&lt;br /&gt;The first Cell-based computer was launched by IBM in September last year. The BladeCenter QS20 is being promoted to industrial users in the medical imaging, aerospace, defense, digital animation, communications and energy sectors. Early users include the University of Manchester and Fraunhofer Institute.&lt;br /&gt;IBM has also won a contract from the U.S. Department of Energy to supply a supercomputer based on the Cell processor. Code-named "Roadrunner," the computer will be capable of up to 1,000 trillion calculations per second (one petaflop).&lt;br /&gt;SCEI is planning to use a 65-nanometer version of the Cell in future versions of the PlayStation 3 to help cut manufacturing costs.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-7578101797646238547?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/7578101797646238547/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=7578101797646238547&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7578101797646238547'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7578101797646238547'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/ibm-starts-producing-cell-chip-at-65nm.html' title='IBM starts producing Cell chip at 65nm'/><author><name>romopia</name><uri>http://www.blogger.com/profile/06556624145527321585</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-5380236898107539746</id><published>2007-03-14T13:15:00.002+08:00</published><updated>2007-03-14T13:17:01.686+08:00</updated><title type='text'>Rabbit-ear TVs about to reach end of the road</title><content type='html'>&lt;a href="http://4.bp.blogspot.com/_m9o8RkkSz3E/RfeFIsKMn9I/AAAAAAAAAA0/0fTdM93Y9CM/s1600-h/ntia-offers-40-coupons-to-covert-your-tv-to-digital.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5041644692203937746" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" height="217" alt="" src="http://4.bp.blogspot.com/_m9o8RkkSz3E/RfeFIsKMn9I/AAAAAAAAAA0/0fTdM93Y9CM/s320/ntia-offers-40-coupons-to-covert-your-tv-to-digital.jpg" width="213" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;url: &lt;a href="http://www.sfgate.com/cgi-bin/article.cgi?file=/c/a/2007/03/13/MNGRHOK7S01.DTL"&gt;http://www.sfgate.com/cgi-bin/article.cgi?file=/c/a/2007/03/13/MNGRHOK7S01.DTL&lt;/a&gt;&lt;br /&gt;Hyeon Chung&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Consumers who depend on old-fashioned antennas to watch television won't miss the 2009 Super Bowl, but their analog sets will stop working soon afterward.&lt;br /&gt;Analog TVs will no longer receive a signal come Feb. 19, 2009, unless users update their hardware to receive a digital signal.&lt;br /&gt;Federal officials announced details Monday about how that transition will work, saying the government will help consumers buy the necessary equipment to upgrade to digital -- a converter box that attaches to the TV set.&lt;br /&gt;The Department of Commerce's National Telecommunications and Information Administration (NTIA) said it is setting aside $990 million to pay for the boxes. Each home can request up to two $40 coupons for a digital-to-analog converter box, which consumer electronics makers such as RCA and LG plan to produce. Prices for the box have not been determined, but industry and consumer groups have estimated they will run $50 to $75 each.&lt;br /&gt;"Besides our own consumer education efforts, NTIA is working with partners such as broadcasters, consumer electronics retailers, manufacturers and consumer organizations to reach out to those most in need of the coupon program," said the telecommunication administration's Assistant Secretary for Communication and Information John Kneuer. "We welcome partners and ask that interested parties contact our office at (202) 482-6260 to learn how they can help inform the public about the coupon program."&lt;br /&gt;An estimated 20 million consumers in the United States depend on a free, over-the-air signal for television. Another 15 million might have cable or satellite television service but have extra sets in their home that aren't hooked up and depend on their antennas for service.&lt;br /&gt;In the Bay Area, about 325,000 residents still depend on an over-the-air signal, according to the Television Bureau of Advertising, a nonprofit trade association. Out of 2.5 million homes with television, that represents between 12 and 13 percent of the population.&lt;br /&gt;Congress set the deadline several years ago in an effort to free the nation's airwaves for public safety and other services.&lt;br /&gt;"The whole digital TV transition will enable public safety responders to have more spectrum for more operability and public safety uses," said Todd Sedmak, a spokesman for the telecommunications administration.&lt;br /&gt;But the transition to a digital TV world might not be smooth. Consumers were expected to move to digital televisions naturally as they became cheaper and more attractive to buy. New technology and services such as high-definition television also were supposed to push consumers into upgrading their television.&lt;br /&gt;And indeed, as prices continue to drop, consumers are picking up digital televisions, particularly flat-screens, in droves. But consumer groups worry that poor and middle-class families, who can't afford to spring for a new television, will get left behind in the move and that the $40 vouchers won't be enough.&lt;br /&gt;"How do you get it to the people who need it?" said Mark Cooper, director of research for the Consumer Federation of America. "Has Congress set aside enough money to make sure everyone is held harmless? The answer is: probably not. Now you have a problem of certain consumers being hurt. They have a TV set that works today and won't work tomorrow and they have to spend money to make it work again."&lt;br /&gt;Cooper said broadcasters have not made it appealing for consumers to pay for a new TV set, such as by introducing better high-definition programming and other services.&lt;br /&gt;"This is a dilemma made by the broadcasters," Cooper said. "If they had done their job and innovated, we would not have this problem."&lt;br /&gt;Starting Jan. 1, 2008, all U.S. households will be able to start requesting the coupons, said Sedmak. If the initial $990 million allocated is used up, another $510 million will be set aside to cover the cost of the coupons. Consumers must show that they do not subscribe to cable or satellite or other television services.&lt;br /&gt;Tom Lim, owner of TV Man, a television retail and repair shop in Daly City that caters mostly to poor families, said that he is waiting until 2009 to buy a digital television set. "By then, hopefully I can afford it," he said.&lt;br /&gt;Consumers might also resist getting a new television if their current one still works, said Paul E. Astry, owner of Sierra TV in Burlingame. If it ain't broke, why fix it?&lt;br /&gt;"I think it'll be a while before people get rid of their analogs," Astry said. "If they have them, they like to hold on to 'em."&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-5380236898107539746?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/5380236898107539746/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=5380236898107539746&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5380236898107539746'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5380236898107539746'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/rabbit-ear-tvs-about-to-reach-end-of.html' title='Rabbit-ear TVs about to reach end of the road'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_m9o8RkkSz3E/RfeFIsKMn9I/AAAAAAAAAA0/0fTdM93Y9CM/s72-c/ntia-offers-40-coupons-to-covert-your-tv-to-digital.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-8268599276659897149</id><published>2007-03-14T13:15:00.001+08:00</published><updated>2007-03-14T13:17:57.527+08:00</updated><title type='text'>Inkjet printers start cranking out microchips</title><content type='html'>&lt;a href="http://news.com.com/Inkjet+printers+start+cranking+out+microchips/2100-1006_3-6166429.html?tag=cd.top"&gt;http://news.com.com/Inkjet+printers+start+cranking+out+microchips/2100-1006_3-6166429.html?tag=cd.top&lt;/a&gt;&lt;br /&gt;(By.Lily)&lt;br /&gt;Inkjet printers start cranking out microchipsSpray-on electronics can be mass manufactured, and a new factory in Austria is doing just that. By Michael Kanellos Staff Writer, CNET News.com&lt;br /&gt;Published: March 13, 2007, 4:00 AM PDT TalkBack E-mail Print del.icio.us Digg this Nanoident Technologies is literally squirting out semiconductors.&lt;br /&gt;The company has officially opened a factory in Linz, Austria, that produces organic semiconductors, which are chips made by spraying intricate patterns of specialized ink onto layers of foil and polymer.&lt;br /&gt;The factory is capable of producing 40,000 square meters of semiconductors a year, says Wasiq Bokhari, CEO of Bioident, a related company that will market Nanoident chips to the health market. The initial customers will be sister companies of Nanoident, but the company has also formed alliances with water testing companies and other industrial concerns.&lt;br /&gt;A traditional factory that can produce 40,000 square meters of silicon computer chips would cost about $1.3 billion and require about 5,000 employees, he said in an interview. The Nanoident factory costs about $10 million and can be run by about 50 people.&lt;br /&gt;Organic semiconductors, however, won't function as memory chips in computers or as processors. They are far slower and degrade over time. Instead, organic semiconductors will be targeted at one-time-only applications such as water purity testers: insert a water drop and the chip will analyze the chemicals floating inside of the drop. The company has also devised lab-on-a-chip chips that can extract data about a person's health through a blood sample.&lt;br /&gt;Organic materials have already crept into some fields. Cell phone manufacturers already sell phones with screens made from organic light emitting diodes, or OLEDs, but few other commercial applications exist. Most of the time, organic chips appear as part of scientific papers. At University of California at Berkeley, for instance, researchers have printed an organic semiconductor that can tell its user if a bottle of wine has gone bad.&lt;br /&gt;Traditional silicon chips are too expensive for these types of applications, which now are conducted on lab equipment, the company says.&lt;br /&gt;The company currently has yields--a measure of the number of good chips that come out of a manufacturing run--of about 70 percent and will get to 80 percent, Bokhari said.&lt;br /&gt;Building the organic beastOne of the key differences between regular and organic semiconductors is how transistors get laid down. In standard chips, lithography machines sketch a circuit pattern. Trenches are then dug into silicon and filled with metal through a complex series of chemical spraying and etchings.&lt;br /&gt;With organic semiconductors, 128 inkjet nozzles spray a pattern onto foil or polymer. Researchers, though, have to account for interactions between the ink and the different layers, and the performance character of the ink.&lt;br /&gt;Printed semiconductors have far larger features than silicon chips. Nanoident's first chips will have features measuring 10 to 100 microns wide. That's more than 100 times larger than the features inserted into silicon chips. Current silicon chips sport 65-nanometer features (a nanometer is one thousandth of a micron).&lt;br /&gt;"We can go below 10 microns, but what are the applications that would require that?" Bokhari said. "We'd need a compelling reason for high-speed devices."&lt;br /&gt;Organic semiconductors, however, can come in a variety of sizes. Nanoident has built some that measure 160 centimeters a side, or more than 1.5 meters wide. These large devices are used as sensors.&lt;br /&gt;"You can't do that with silicon," he said.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-8268599276659897149?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/8268599276659897149/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=8268599276659897149&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/8268599276659897149'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/8268599276659897149'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/inkjet-printers-start-cranking-out.html' title='Inkjet printers start cranking out microchips'/><author><name>LP4eva</name><uri>http://www.blogger.com/profile/05987785484086912053</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-7068151243930697145</id><published>2007-03-14T13:06:00.002+08:00</published><updated>2007-03-14T13:07:12.881+08:00</updated><title type='text'>Gamespy confirmed as the company behind Wii online</title><content type='html'>Los Angeles (CA) - After a successful stint so far with providing the middleware for online DS games, Gamespy today confirmed that it will be the provider for online multiplayer services for future Wii titles.&lt;br /&gt;Pokemon Battle Revolution, which is due out on June 25, will be Nintendo's flagship title utilizing Gamespy's technology on a home console platform. The pending Super Smash Bros Brawl is also confirmed to include online multiplayer, with third party publishers expected to enter the Wii WiFi community in 2008.&lt;br /&gt;&lt;a href="http://www.ad.tgdaily.com/cgi-bin/bc.m?count=13140&amp;time=RfeCmdhcf@YAAC63MYc&amp;amp;location=banner2/tgdaily_products_tomsnetworking/2007/03/13/gamespy_wii_dsonline/index.html&amp;dns=cn&amp;amp;fillin=0&amp;link=http://ad.doubleclick.net/jump/N2613.Toms/B2084265.3;abr%3D!ie4;abr%3D!ie5;sz%3D336x280;ord%3DRfeCmdhcf@YAAC63MYc%3F"&gt;&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;Gamespy, which merged with IGN Entertainment in 2003 and then was subsequently acquired by News Corp, has been providing online multiplayer technology for the Nintendo DS since 2005. So far, the list only includes about two dozens titles and they are not really pushing the technological envelope.&lt;br /&gt;Online multiplayer for the Wii will be a much more intensive project, with Nintendo promising additional services like in-game chatting and global competitions. Most online DS titles sport only a bare bones WiFi multiplayer mode.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-7068151243930697145?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/7068151243930697145/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=7068151243930697145&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7068151243930697145'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7068151243930697145'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/gamespy-confirmed-as-company-behind-wii.html' title='Gamespy confirmed as the company behind Wii online'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-3308394135075555118</id><published>2007-03-14T13:06:00.001+08:00</published><updated>2007-03-14T13:06:46.689+08:00</updated><title type='text'>Seas Yield Surprising Catch of Unknown Genes</title><content type='html'>&lt;a href="http://www.washingtonpost.com/wp-dyn/content/article/2007/03/13/AR2007031301738.html"&gt;http://www.washingtonpost.com/wp-dyn/content/article/2007/03/13/AR2007031301738.html&lt;/a&gt;(by.Lily)&lt;br /&gt;&lt;br /&gt;By Rick WeissWashington Post Staff WriterWednesday, March 14, 2007; Page A01&lt;br /&gt;It took some mighty fine nets, but scientists who spent two years trawling the world's oceans for bacteria and viruses have completed the most thorough census ever of marine microbial life, revealing an astonishingly diverse and bizarre microscopic menagerie.&lt;br /&gt;Countering a long-held assumption that ocean waters are not rich with microbial life, the new report, released yesterday, reveals an otherworldly world of organismal ferment, including thousands of novel life forms that could help speed the development of new antibiotics and alternative energy sources and clarify the ocean's role in climate change.&lt;br /&gt;RedditFacebook&lt;br /&gt; The census -- which in a single stroke has doubled the number of known genes in Earth's biological kingdom -- comes from a 21st-century version of Charles Darwin's 19th-century voyage on the HMS Beagle. Led by a Rockville-based team that circumnavigated the globe on a specially equipped sailboat, the project focused not on the microbes themselves -- most of which are too finicky to be kept alive in culture dishes -- but on their DNA, easily obtained from cells and later decoded on shore.&lt;br /&gt;Perhaps most exciting, said study leader J. Craig Venter, is that the rate of discovery of new genes and proteins -- the building blocks of life -- was as great at the end of the voyage as it was at the start, suggesting that humanity is nowhere close to closing the logbooks on global biodiversity.&lt;br /&gt;"Instead of being at the end of discovery, it means we're in the earliest stages," said Venter, chairman of the J. Craig Venter Institute, a nonprofit gene research center. "That is a pretty stunning view."&lt;br /&gt;Mitchell Sogin of the Marine Biological Laboratory in Woods Hole, Mass., praised the work as a "remarkable technological achievement." Microbes account for up to 90 percent of the biomass in the oceans, he said, and control all the major biological and geochemical cycles that keep Earth's ecosystems in balance. So it is valuable to learn what those organisms are and where and how they live, he said.&lt;br /&gt;The new findings, described in the March issue of the journal PLoS Biology, build on results Venter obtained during a 2003 test voyage in the Sargasso Sea, which had been considered an especially lifeless body of water. That netted more than 1 million genes entirely new to science -- evidence that Earth's seas harbor microbes far more numerous and far stranger than scientists had imagined.&lt;br /&gt;The latest voyage, on Venter's 95-foot sloop, Sorcerer II, started in Nova Scotia, passed through the Panama Canal, then tagged the Galapagos, Polynesia, the Horn of Africa, the Caribbean and the U.S. East Coast, collaborating with local biologists as they went.&lt;br /&gt;Every 200 miles, the team pumped 200 liters of seawater through a layered filter system that separated viruses and various kinds of cells by size. Yesterday's analysis covers about one-quarter of the samples -- from Nova Scotia to the Galapagos -- and only the viruses and smallest cells.&lt;br /&gt;Yet DNA analyses on even that limited sample, conducted on an immensely powerful supercomputer designed for the project by the California Institute for Telecommunications and Information Technology, tallied genetic coding for more than 6 million new proteins, doubling the number already tabulated in the world's genetic databases.&lt;br /&gt;Among them are more than 2,000 "proteorhodopsins," each of which can convert certain wavelengths of sunlight into biological energy through means wholly independent of photosynthesis, the process used by green vegetation. That gives scientists a slew of new methods to mimic for getting energy from the sun, Venter said.&lt;br /&gt;Some new genes seem designed to help organisms get energy from carbon dioxide in the air, a tantalizing alternative to the oil and coal that most human technologies rely on. Researchers hope those biological blueprints may show them how to scrub greenhouse gases from the atmosphere.&lt;br /&gt;Venter predicted that other genes will be found to direct the production of novel antibiotics, since bacteria are prodigious makers of such compounds, which they use to fend off other microbes.&lt;br /&gt;The new data are being shared freely on the Web -- an approach many researchers and governments appreciate but that raised alarms in some countries that had considered profiting from the genetic heritages in their territorial waters. Although the Sorcerer team obtained permits for all their collections, there were occasional misunderstandings, Venter conceded -- one of which led to a one-week standoff in French Polynesia during which his boat was threatened by the French navy.&lt;br /&gt;Sogin said follow-up surveys at different depths and locations will surely expand the database greatly.&lt;br /&gt;"As amazing as this inventory is," Sogin said, "it's only scratching the surface of what's really there."&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-3308394135075555118?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/3308394135075555118/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=3308394135075555118&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3308394135075555118'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3308394135075555118'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/seas-yield-surprising-catch-of-unknown.html' title='Seas Yield Surprising Catch of Unknown Genes'/><author><name>LP4eva</name><uri>http://www.blogger.com/profile/05987785484086912053</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-3897785725490507519</id><published>2007-03-14T13:05:00.000+08:00</published><updated>2007-03-14T13:19:05.172+08:00</updated><title type='text'></title><content type='html'>&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-3897785725490507519?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/3897785725490507519/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=3897785725490507519&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3897785725490507519'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3897785725490507519'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/seas-yield-surprising-catch-of-unknown_14.html' title=''/><author><name>romopia</name><uri>http://www.blogger.com/profile/06556624145527321585</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-4680722825296037363</id><published>2007-03-14T13:03:00.000+08:00</published><updated>2007-03-14T13:05:23.082+08:00</updated><title type='text'>Saturn's Icy Moon May Have Been Hot Enough for Life, Study Finds</title><content type='html'>David Hyun&lt;br /&gt;URL:&lt;a href="http://news.nationalgeographic.com/news/2007/03/070313-saturn-moon.html"&gt;http://news.nationalgeographic.com/news/2007/03/070313-saturn-moon.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;One of the places in the solar system most likely to have extraterrestrial life may have gotten off to a hot, highly radioactive start, scientists reported yesterday at a meeting in Houston, Texas.&lt;br /&gt;Enceladus, a moon of Saturn, stunned scientists two years ago when NASA's Cassini orbiter discovered geyser-like jets of water vapor shooting into space from its south pole.&lt;br /&gt;RELATED Photo in the News: New Saturn Ring Found (September 21, 2006) Saturn Moon's Ice Geysers Create "Cosmic Graffiti" (February 8, 2007) Virtual Solar System&lt;br /&gt;(Read: "Saturn Moon Has Water Geysers and, Just Maybe, Life" [March 10, 2006].)&lt;br /&gt;Now a new study of Enceladus's plume finds that it's rich in nitrogen gas.&lt;br /&gt;"This is interesting, because nitrogen is hard to produce in a body as small as Enceladus without significant heat," said John Spencer, a planetary scientist with the Southwest Research Institute in Boulder, Colorado. Spencer who was not part of the study.&lt;br /&gt;The find suggests that the moon's core once reached temperatures around 1,070 degrees Fahrenheit (577 degrees Celsius)—hot enough to convert Enceladus's internal stores of ammonia into nitrogen.&lt;br /&gt;This may also be hot enough to produce the possible precursors for life, said the study's lead author, Dennis Matson of the Jet Propulsion Laboratory (JPL) in Pasadena, California.&lt;br /&gt;"We've got an organic brew, a heat source, and liquid water—all key ingredients for life," Matson said in a press statement.&lt;br /&gt;"And while no one is claiming that we have found life, by any means, we probably have evidence for a place that might be hospitable to life."&lt;br /&gt;Cassini scientist Carolyn Porco of the Space Science Institute in Boulder, Colorado, said Enceladus should be a leading candidate site for future probes in search of extraterrestrial life.&lt;br /&gt;"I think that if there is liquid water there, then Enceladus is the next 'go-to' place in the solar system."&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-4680722825296037363?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/4680722825296037363/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=4680722825296037363&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/4680722825296037363'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/4680722825296037363'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/saturns-icy-moon-may-have-been-hot.html' title='Saturn&apos;s Icy Moon May Have Been Hot Enough for Life, Study Finds'/><author><name>romopia</name><uri>http://www.blogger.com/profile/06556624145527321585</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-7317345147880883258</id><published>2007-03-14T13:01:00.000+08:00</published><updated>2007-03-14T13:04:02.593+08:00</updated><title type='text'>Viacom sues YouTube over copyrights</title><content type='html'>(url: &lt;a href="http://www.businessweek.com/ap/financialnews/D8NRNI701.htm"&gt;http://www.businessweek.com/ap/financialnews/D8NRNI701.htm&lt;/a&gt;)&lt;br /&gt;Hyeon Chung&lt;br /&gt;&lt;br /&gt;Media conglomerate Viacom Inc. is suing YouTube for $1 billion, claiming that the video-sharing site had built a business by using the Internet to "willfully infringe copyrights on a huge scale."&lt;br /&gt;Other media companies also have major concerns about YouTube, but Viacom's was the first lawsuit filed by a major media owner.&lt;br /&gt;Several media companies have reached agreements to supply YouTube with clips, including CBS Corp., General Electric Co.'s NBC Universal and the British Broadcasting Corp., but many others remain reluctant to deal with the Web site because of copyright concerns.&lt;br /&gt;YouTube had been a quirky, fast-growing startup until the deep-pocketed Internet search behemoth Google Inc. bought the company last November for $1.76 billion.&lt;br /&gt;But YouTube's soaring popularity, especially among younger people who are increasingly tuning out traditional media, has broadcasters frightened of losing viewers and advertising dollars.&lt;br /&gt;Last month, Viacom demanded that YouTube remove more than 100,000 unauthorized clips from its site, and since that time, the company has uncovered more than 50,000 additional unauthorized clips, Viacom spokesman Jeremy Zweig said.&lt;br /&gt;A quick search of YouTube's site turned up numerous clips from Viacom programs including segments from Comedy Central's "The Daily Show with Jon Stewart" and Nickelodeon's "SpongeBob SquarePants" cartoon.&lt;br /&gt;In the lawsuit, filed in U.S. District Court in New York, Viacom says YouTube "harnessed technology to willfully infringe copyrights on a huge scale" and had "brazen disregard" of intellectual property laws.&lt;br /&gt;Viacom is especially at risk because many of its shows are aimed at younger viewers who also are heavy Internet users. At the same time, Viacom is trying to find other, legal ways to distribute its shows digitally, such as by selling episodes of "The Daily Show" and "South Park" for $1.99 each through Apple Inc.'s iTunes service. Those shows can then be viewed on a computer or iPod.&lt;br /&gt;YouTube says it cooperates with all copyright holders and removes programming as soon as it is notified. But Viacom argues that approach lets YouTube avoid taking the initiative to curtail copyright infringement, instead shifting the burden and costs of monitoring the site onto copyright holders.&lt;br /&gt;Alexander Macgillivray, associate general counsel for products and intellectual property at Google, said YouTube was protected under the 1998 Digital Millennium Copyright Act, which gives online service providers protection from copyright lawsuits so long as they comply with requests to remove unauthorized material.&lt;br /&gt;"We're saying that the DMCA protects what we're doing," Macgillivray said in an interview. On the other hand, he said, "The DMCA is silent on what we have to do if we don't get a notice" to remove material.&lt;br /&gt;Universal Music Group, a unit of France's Vivendi SA, had threatened to sue YouTube, saying it was a hub for pirated music videos, but later reached a licensing deal with them. NBC and the BBC also provide YouTube with clips.&lt;br /&gt;Despite those arrangements, relations between media companies and YouTube remain tense. CBS Chief Executive Leslie Moonves told investors last week that its pact with YouTube had provided a big promotional boost for its shows. But he added that many big technology players "don't quite respect the content enough," although that was changing.&lt;br /&gt;NBC has set up a channel to show authorized clips on YouTube, but it recently criticized the site and Google for not doing more to prevent copyrighted material from being posted online.&lt;br /&gt;Bruce Sunstein, co-founder of intellectual property law firm Bromberg &amp; Sunstein in Boston, said YouTube was still in the early stages of what was likely to be a "very long working-out of arrangements" with the owners of broadcast copyrights.&lt;br /&gt;"Finding a way of peaceful coexistence is quite a struggle," Sunstein said. "Google's motto is 'Don't be evil,' and you could argue that with YouTube that motto is wearing a little thin."&lt;br /&gt;Unlike the original Napster file-sharing service, which was shut down following complaints from music companies that it encouraged piracy, Sunstein said he expected YouTube and its corporate owners to eventually make peace with broadcasters. "I think YouTube very much wants to be legitimate," Sunstein said.&lt;br /&gt;That doesn't mean other lawsuits won't follow Viacom's. Now that Viacom has thrown the first punch, other media companies may join the fray, Standard &amp;amp; Poor's analyst Scott Kessler warned in a research note.&lt;br /&gt;A major lawsuit against YouTube has been widely anticipated because so much of the online video pioneer's success has been driven by easy access to copyright clips shared by its users.&lt;br /&gt;While YouTube has yet to generate much revenue, its online traffic has been growing rapidly. According to comScore Media Metrix, YouTube attracted 133.5 million visitors worldwide in January, up from 9.5 million a year earlier.&lt;br /&gt;Google began bracing for a legal onslaught last fall when it withheld nearly $220 million of YouTube's acquisition price in an escrow account. The Mountain View-based company also has another $11.2 billion in cash.&lt;br /&gt;American Technology Research analyst Rob Sanderson believes Viacom filed the lawsuit to pressure Google into setting clear ground rules and fees for the usage of copyrighted content.&lt;br /&gt;"This is all about a media company trying to protect its future," Sanderson said. "It's not about them trying to get damages for the past sins of YouTube."&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-7317345147880883258?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/7317345147880883258/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=7317345147880883258&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7317345147880883258'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7317345147880883258'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/viacom-sues-youtube-over-copyrights.html' title='Viacom sues YouTube over copyrights'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-6234278459214964092</id><published>2007-03-14T13:00:00.000+08:00</published><updated>2007-03-14T13:01:27.641+08:00</updated><title type='text'>Laptops to Ship With Automatic-Encryption Hard Drives</title><content type='html'>URL:&lt;a href="http://www.foxnews.com/story/0,2933,258523,00.html"&gt;http://www.foxnews.com/story/0,2933,258523,00.html&lt;/a&gt;&lt;br /&gt;David Hyun&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Seagate announced on Monday a new partnership with Fremont-based ASI Computer Technologies to start delivering laptops with the encrypting Momentus 5400 FDE.2 hard drive.&lt;br /&gt;ASI, a company that typically caters to small and medium-sized value added resellers (VARs) and other customers in government, legal, financial, educational, and the health industries, will start selling the C8015 and C8015+ laptops through resellers like &lt;a href="javascript:siteSearch(" _extended="true"&gt;Newegg.com&lt;/a&gt; starting next month, according to Kent Tibbils, senior director of platform technologies and marketing for ASI.&lt;br /&gt;The notebooks will come in 80-, 120-, and 160-gigabyte capacities, and will feature a 15.4-inch display, integrated &lt;a href="javascript:siteSearch(" _extended="true"&gt;biometric fingerprint readers&lt;/a&gt;, and will also support Intel Core 2 Duo, Core Duo, Core Solo, and Celeron M Mobile Processors.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-6234278459214964092?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/6234278459214964092/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=6234278459214964092&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/6234278459214964092'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/6234278459214964092'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/laptops-to-ship-with-automatic.html' title='Laptops to Ship With Automatic-Encryption Hard Drives'/><author><name>romopia</name><uri>http://www.blogger.com/profile/06556624145527321585</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-3399298066177072002</id><published>2007-03-14T12:59:00.000+08:00</published><updated>2007-03-14T13:01:38.459+08:00</updated><title type='text'>to prevent duplicates</title><content type='html'>(by.Lily)&lt;br /&gt;Public Class Form1&lt;br /&gt;Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load&lt;br /&gt;End Sub&lt;br /&gt;Private Function addword(ByVal skey As String) As Boolean On Error Resume Next Static col As New Collection col.add("", skey) If Err.Number &lt;&gt; 0 Then Return False Else Return (True) End If End Function&lt;br /&gt;Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click MsgBox(addword(TextBox1.Text)) End SubEnd Class&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-3399298066177072002?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/3399298066177072002/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=3399298066177072002&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3399298066177072002'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3399298066177072002'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/to-prevent-duplicates.html' title='to prevent duplicates'/><author><name>LP4eva</name><uri>http://www.blogger.com/profile/05987785484086912053</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-5429195707051545943</id><published>2007-03-14T12:57:00.000+08:00</published><updated>2007-03-14T13:05:14.170+08:00</updated><title type='text'>Video games penetrate psyche of over a third of US adults</title><content type='html'>&lt;a href="http://1.bp.blogspot.com/_m9o8RkkSz3E/RfeBF8KMn8I/AAAAAAAAAAs/1LsfmExcI48/s1600-h/ps3_sad.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5041640246912786370" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://1.bp.blogspot.com/_m9o8RkkSz3E/RfeBF8KMn8I/AAAAAAAAAAs/1LsfmExcI48/s320/ps3_sad.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;(&lt;a href="http://www.itwire.com.au/content/view/10436/532/"&gt;http://www.itwire.com.au/content/view/10436/532/&lt;/a&gt;)&lt;br /&gt;Hyeon Chung&lt;br /&gt;&lt;br /&gt;The report shows that 36.5 percent of U.S. adults own a game console with 15.9 percent owning a hand held portable console of some kind.&lt;br /&gt;A stereotype shattering 71 percent of these adults have managed to snare a spouse and two thirds have at least one child.&lt;br /&gt;As game consoles have become increasingly sophisticated, families have incorporated them into their centralized home media centers, which include the television, digital recording device, digital music player, and the PC,” said Carolyn Creekmore, senior director of media analytics, Nielsen//NetRatings. “Video game technology will only benefit other media, since what makes a video game fun and exciting brings life to movies and music as well. Companies that can leverage these new technologies across a number of products will have a distinct advantage in the competitive marketplace.”&lt;br /&gt;he report goes on to comment on the Nintendo Wii phenomenon, showing that traffic to the official web site Nintendo.com had increased 91 percent to 1.6 Million form February 2006. Microsoft had enjoyed a similar rise in online popularity with a 47 percent increase of those hitting Xbox.com, rising to 1.2 million in the year.&lt;br /&gt;Playstation.com conversely saw a drop off of 8 percent down to a 1.0 million unique visitations. Still Sony realises that the demographic for the massive video gaming and entertainment industry is an aging one. Hence, for better or for worse, they are&lt;a href="http://www.itwire.com.au/content/view/9767/1092/" target="_blank"&gt; targeting a more mature market&lt;/a&gt; with their PS3, this Neilson reports seems to verify this as a just long term strategy.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-5429195707051545943?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/5429195707051545943/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=5429195707051545943&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5429195707051545943'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5429195707051545943'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/video-games-penetrate-psyche-of-over.html' title='Video games penetrate psyche of over a third of US adults'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_m9o8RkkSz3E/RfeBF8KMn8I/AAAAAAAAAAs/1LsfmExcI48/s72-c/ps3_sad.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-1758157703586461017</id><published>2007-03-14T12:51:00.000+08:00</published><updated>2007-03-14T13:06:07.212+08:00</updated><title type='text'>PSP redesign in the works</title><content type='html'>&lt;a href="http://4.bp.blogspot.com/_m9o8RkkSz3E/RfeABsKMn7I/AAAAAAAAAAk/SKZJiO5ntKo/s1600-h/psppic_01.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5041639074386714546" style="FLOAT: right; MARGIN: 0px 0px 10px 10px; CURSOR: hand" alt="" src="http://4.bp.blogspot.com/_m9o8RkkSz3E/RfeABsKMn7I/AAAAAAAAAAk/SKZJiO5ntKo/s320/psppic_01.jpg" border="0" /&gt;&lt;/a&gt; (url: &lt;a href="http://www.playfuls.com/news_9766_Sony_Confirms_The_Redesigned_PSP.html"&gt;http://www.playfuls.com/news_9766_Sony_Confirms_The_Redesigned_PSP.html&lt;/a&gt;)&lt;br /&gt;Hyeon Chung&lt;br /&gt;&lt;br /&gt;Comments made by Sony Computer Entertainment Europe (SCEE) executive Ray Maguire indicate that the long awaited redesign of the PSP is planned.Not many details available at this time, but one thing Maguire did confirm is that the praised PSP screen will not be part of the redesign.In an interview with &lt;a href="http://www.gamesindustry.biz/content_page.php?aid=23465" target="_blank"&gt;gamesindustry.biz &lt;/a&gt;Maguire stated that the current PSP is just the “first iteration” and the aim of a revamped PSP strategy was to make the console “smaller [and] lighter” in the future.From the gamesindustry.biz article; Responding to a query on Sony’s plans for redesigning the system, Maguire added that any changes to the industrial design would not affect the size of PSP’s screen - widely seen as one of the system’s key strengths - which is "fixed". He did not offer any suggestions as to when the new iteration might be released.There has been much speculation around the PSP redesign of late, mostly around &lt;a href="http://www.itwire.com.au/content/view/8319/1092/" target="_blank"&gt;adding a Hard Drive&lt;/a&gt; or similar increase in storage and a change in the control system. The UMD format has turned out to be somewhat of a failure, with the UMD movies failing to ignite sales. From a gaming perspective, issues with load times also plagued the format.I imagine that UMD will remain in a redesigned PSP, if merely for backwards compatibility, Sony would look forward to a different way of delivering content however, most likely in an extended form of digital delivery online.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-1758157703586461017?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/1758157703586461017/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=1758157703586461017&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/1758157703586461017'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/1758157703586461017'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/psp-redesign-in-works.html' title='PSP redesign in the works'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_m9o8RkkSz3E/RfeABsKMn7I/AAAAAAAAAAk/SKZJiO5ntKo/s72-c/psppic_01.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-3644875736130978774</id><published>2007-03-13T14:34:00.000+08:00</published><updated>2007-03-13T14:34:08.429+08:00</updated><title type='text'>Macbook Catches On Fire!</title><content type='html'>&lt;a href="http://www.newlaunches.com/archives/macbook_inferno_an_apple_macbook_battery_catches_fire.php"&gt;[via NewLaunches]&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://2.bp.blogspot.com/_MyHM1hd27JQ/RfZCvDQBCiI/AAAAAAAAAAU/q3Nw07S0cmc/s1600-h/macbook-fire-caught-on-battery.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5041290208981617186" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://2.bp.blogspot.com/_MyHM1hd27JQ/RfZCvDQBCiI/AAAAAAAAAAU/q3Nw07S0cmc/s320/macbook-fire-caught-on-battery.jpg" border="0" /&gt;&lt;/a&gt;Matty from Melbourne Australia surfed the net using Safari for 30 minutes yesterday night on his Macbook, after which he close the lid put it on sleep mode and left it on the bookshelf for charging. However at 3 a.m. all hell broke loose as his girlfriend heard the Macbook hissing like a steam valve, then smoke started pouring out of it and a couple of seconds later, a very large flash fire started. On hearing her loud screams and the dog barking Matty raced to the scene.As I was running I saw a fire. At first I thought that the lamp had fallen and set fire to the curtain. As I got closer I realised it was my mac book .... burning! I picked it up and blew on it and swung it around to put the flames out. The book shelf it was sitting on was burnt and there were a couple of magazines that were on fire too. I quickly put those out and calmed down.&lt;br /&gt;The battery is swollen and burnt so it's definitely the battery that exploded and caught fire. The macbook is melted on the bottom and severely charred (along with my bookshelves, books, magazines and the wall). The space bar is melted as is the track pad. The screen has been damaged a little too.Matty had purchased the Macbook in June last year and it is still under the 12 month warranty. He is looking for an efficient service center in Melbourne and is hoping that his hard drive data will be recovered.&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-3644875736130978774?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/3644875736130978774/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=3644875736130978774&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3644875736130978774'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3644875736130978774'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/macbook-catches-on-fire.html' title='Macbook Catches On Fire!'/><author><name>英雄</name><uri>http://www.blogger.com/profile/08646170553588255533</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_MyHM1hd27JQ/RfZCvDQBCiI/AAAAAAAAAAU/q3Nw07S0cmc/s72-c/macbook-fire-caught-on-battery.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-5919995212137850034</id><published>2007-03-13T14:20:00.001+08:00</published><updated>2007-03-13T14:20:39.284+08:00</updated><title type='text'>Digital Music and the Blame Game</title><content type='html'>&lt;a href="http://blogs.pcworld.com/digitalworld/archives/2007/03/digital_music_a.html"&gt;http://blogs.pcworld.com/digitalworld/archives/2007/03/digital_music_a.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;If you thought the skirmishes over DRM and Apple's iTunes had waned, think again. The European Union's consumer protection commissioner Meglena Kuneva recently directed some barbed words toward Apple, criticizing its use of Fairplay DRM and the closed iTunes/iPod system. This is nothing new, but it does make for an interesting companion to another report that the major music labels still don't seem to have a viable digital music strategy other than putting their music on iTunes, then complaining about it.&lt;br /&gt;Like the captain said, what we have here is a failure to communicate. For those who haven't been keeping score: Kuneva (who, a spokeswoman stressed, was airing her own views) and several European countries have been speaking out against DRM in general, and iTunes in particular. Apple's Steve Jobs has pointed the finger at the music industry for requiring DRM. The music industry blames Apple for having a closed system and for locking prices.&lt;br /&gt;What no one has proposed -- at least, not seriously -- is dialogue. The major music labels currently pick and choose where their tracks will go, generally releasing them on iTunes. This cuts out a quarter of the MP3-player-owning market; can you think of any other industry that deliberately ignores such a high number of potential customers?&lt;br /&gt;Apple, meanwhile, quite rightly does not want to be the only one to give up its DRM scheme. All other things being equal, it would put a major dent in iPod sales.&lt;br /&gt;Things would go a lot smoother if the music industry made its content available across all media, like it used to do in the analog world. Or, if Apple found some way to open up iTunes in such a way that would minimize its risk. Neither entity will do these things on their own, so they have to find a third way: sit down, bring Microsoft and the rest of the PlaysForSure community to the table, and work something out. (Apple should initiate this, as right now they're the ones with the upper hand.) Endless finger-pointing isn't doing anyone any good.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-5919995212137850034?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/5919995212137850034/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=5919995212137850034&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5919995212137850034'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5919995212137850034'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/digital-music-and-blame-game.html' title='Digital Music and the Blame Game'/><author><name>Life Is Good</name><uri>http://www.blogger.com/profile/03512329762380639681</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-3824342990197826810</id><published>2007-03-13T14:19:00.000+08:00</published><updated>2007-03-13T14:35:52.377+08:00</updated><title type='text'>Cool cars are invented!!!</title><content type='html'>&lt;strong&gt;&lt;span style="font-size:180%;"&gt;Dude, Where's My Jetpack?&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;2.26.2007&lt;br /&gt;&lt;a href="http://discovermagazine.com/2007/feb/jetpack-future-technologies"&gt;http://discovermagazine.com/2007/feb/jetpack-future-technologies&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Flying Car&lt;br /&gt;Look at your car sitting there in the driveway—sad, squat, all four tires on the pavement. You should feel sorry for your car for the same reason that you should feel sorry for yourself: You are both flightless. Optimistic drivers of the past imagined a future in which the stubby tail fins of their cars morphed into broad wings. According to the car companies presenting at the World's Fair of 1939, your driveway was destined to become a runway, the highway a skyway, and the only speed limit the speed of sound.&lt;br /&gt;The first attempts at creating flying cars were fairly simple—install an airplane engine and two wings on a regular car. The first attempts were also disastrous. Henry Ford's "sky flivver" flew in 1928, but production was nixed after an unlucky pilot died in a crash. In 1956, Moulton Taylor, an engineer who earlier had helped develop the cruise missile, unveiled the Aerocar. The little yellow Aerocar could leap from the highway at 55 miles per hour and cruise up to 100 mph at around 12,000 feet with a range of up to 300 miles. The Aerocar worked fine conceptually, but it was too impractical for everyday use—a business deal for full-scale production fell through in the early 1970s. The only remaining Aerocar prototype was purchased by a fan who saw it advertised in the classifieds.&lt;br /&gt;If you are averse to purchasing dangerous relics listed in obscure newspaper ads and you still want to acquire a flying car, the solution may be to let NASA take care of it. That's right, NASA gave us gooey foam pillows, dehydrated ice cream, and those shiny space blankets, and it may yet fork over the flying car. NASA scientists working on the Small Aircraft Transportation System (SATS) project are making inroads on the two main problems holding back personal air travel on a massive, nationwide scale: midair collisions and complicated piloting mechanisms.&lt;br /&gt;The Moller M400 Skycar launches like a helicopter, flies like an airplane, and drives like a car; unfortunately, you still can't buy one.&lt;br /&gt;NASA eschews the term "flying car," preferring "personal air vehicle" instead. Nevertheless, NASA has imagined flying cars that would humiliate George Jetson. Until their vehicle program was eliminated in 2005, the folks at Langley Research Center planned to roll out three prototypes in sequence: a small prop plane that would tuck its wings in on the highway (it shouldn't cost any more than a Mercedes-Benz); a two-seater with rear-propeller drive; and, for tight parking spots, one capable of vertical takeoff. Merely providing the vehicles would not be enough, however. If everyday people are to use them, scientists must know how to track thousands of these car-planes. And knowing is half the battle.&lt;br /&gt;Collision-deterring navigation systems are key to transforming highways into skyways. Personal air vehicles will use GPS and cell phone technology to automatically broadcast information about location and speed to ground-based towers. From the ground, an automated computer system will update the flight path of every sky vehicle and provide instant directions—automatically avoiding collisions and minimizing flight time. Meanwhile, onboard sensors will detect nearby trees, buildings, and power lines. And the jackpot bonus item for the sky-car consumer: For most of the flight the human "driver" can take care of anything besides flying, like eating a whole bag of potato chips.&lt;br /&gt;NASA's dream cars may be exciting (and legitimate), but they aren't available to the public right this second. So turn your attention to the Moller M400 Skycar—a partially tested prototype offered in the 2005 Neiman Marcus gift catalog. Paul Moller, a former engineering professor at the University of California at Davis, has spent all of his money and more than 40 years trying to build a flying car. The current model is a cherry-red coupe that looks as though it should be dogfighting TIE fighters outside the Death Star. The futuristic Skycar has four seats (carrying up to 750 pounds), a maximum airspeed of 375 mph, and a range of about 750 miles. On the ground, the Skycar should travel a dinky 30 to 35 mph, just fast enough to get to an empty parking lot and stun everyone with a sweet vertical takeoff. Prototypes like the Skycar have been on the verge of full-scale production for almost a century, though, and it may be another hundred years before you can score that most badass symbol of the space age, the flying car.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-3824342990197826810?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/3824342990197826810/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=3824342990197826810&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3824342990197826810'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3824342990197826810'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/cool-cars-are-invented.html' title='Cool cars are invented!!!'/><author><name>minotour79</name><uri>http://www.blogger.com/profile/09154549064706987281</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-298746754765135525</id><published>2007-03-13T14:17:00.000+08:00</published><updated>2007-03-13T14:43:41.362+08:00</updated><title type='text'>Intel unveils 50-watt quad-core server processors</title><content type='html'>&lt;strong&gt;&lt;em&gt;Intel unveils 50-watt quad-core server processors  Printer friendly&lt;/em&gt;&lt;/strong&gt;  &lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.digitimes.com/mobos/a20070313PR200.html"&gt;http://www.digitimes.com/mobos/a20070313PR200.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Further expanding its quad-core processor family lineup, Intel has announced two energy-efficient 50-watt server processors that represent a decrease ranging from 35% to nearly 60% in power from Intel's existing 80- and 120-watt quad-core server products.&lt;br /&gt;These new processors, requiring just 12.5 watts of power for each of the four cores, deliver similar performance yet set a new standard in energy efficiency, said Intel, which has introduced 11 server, workstation and desktop PC quad-core processors since November 2006.&lt;br /&gt;The two low-voltage processors, the Intel Xeon processor L5320 and L5310, operate at 1.86GHz and 1.60GHz respectively, feature a unique 8MB of on die cache for faster memory data communication and run on dedicated 1066MHz front side buses. In 1,000 unit quantities the L5320 is priced at US$519 and the L5310 at US$455.&lt;br /&gt;These processors can be coupled with Intel's existing "Bensley" server platform and have been designed to be "drop-in" compatible with the existing dual-core and quad-core Intel Xeon processor families.&lt;br /&gt;Servers based on the new low-power, quad-core processors are designed for dense Internet datacenters, blade servers and industries such as financial services where the scale and density of servers are highly sensitive to power, real estate and cooling costs. The potential for cost savings by replacing aging infrastructure with quad-core Intel Xeon processors and deploying virtualization technology can be as much as US$6,000 per year over the lifetime of each server based on Intel's own evaluations.&lt;br /&gt;In addition, these new processors represent a nearly ten-fold improvement in power consumption per core in just one and half years, said Intel.&lt;br /&gt;Servers based on these new processors are expected to be available worldwide over the next few months from Acer, Dell, Digital Henge, Fujitsu Siemens, Hewlett Packard (HP), HCL, IBM, Rackable Systems, Samsung Electronics, Verari, Wipro and other companies.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-298746754765135525?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/298746754765135525/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=298746754765135525&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/298746754765135525'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/298746754765135525'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/samsung-reveals-8gb-memory-chip_13.html' title='Intel unveils 50-watt quad-core server processors'/><author><name>jjungnang</name><uri>http://www.blogger.com/profile/04350249646790615419</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-7477563946547105747</id><published>2007-03-13T13:18:00.000+08:00</published><updated>2007-03-13T13:19:18.600+08:00</updated><title type='text'>AddWord Function</title><content type='html'>This code is used to test the AddWord Function&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Public Class Form1&lt;br /&gt;Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;br /&gt;Dim bSuccess As Boolean&lt;br /&gt;bSuccess = AddWord(TextBox1.Text)&lt;br /&gt;MsgBox(bSuccess)&lt;br /&gt;End Sub&lt;br /&gt;Private Function AddWord(ByVal sKey As String) As Boolean&lt;br /&gt;On Error Resume Next&lt;br /&gt;Static Col As New Collection&lt;br /&gt;Col.Add("", sKey)&lt;br /&gt;If Err.Number &lt;&gt; 0 Then&lt;br /&gt;Return False&lt;br /&gt;Else&lt;br /&gt;Return True&lt;br /&gt;End If&lt;br /&gt;End Function&lt;br /&gt;End Class&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-7477563946547105747?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/7477563946547105747/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=7477563946547105747&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7477563946547105747'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7477563946547105747'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/addword-function.html' title='AddWord Function'/><author><name>PhillipsInChina</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-8520490427316047058</id><published>2007-03-13T13:15:00.000+08:00</published><updated>2007-03-13T13:16:58.941+08:00</updated><title type='text'>Flash memory drives now available from Intel</title><content type='html'>&lt;a href="http://3.bp.blogspot.com/_m9o8RkkSz3E/RfYztsKMn6I/AAAAAAAAAAc/npsVuleWrOA/s1600-h/intel13032.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5041273692928909218" style="DISPLAY: block; MARGIN: 0px auto 10px; WIDTH: 286px; CURSOR: hand; HEIGHT: 217px; TEXT-ALIGN: center" height="217" alt="" src="http://3.bp.blogspot.com/_m9o8RkkSz3E/RfYztsKMn6I/AAAAAAAAAAc/npsVuleWrOA/s320/intel13032.jpg" width="213" border="0" /&gt;&lt;/a&gt; Flash memory isn't just for cell phones anymore. &lt;a href="http://crave.cnet.com/8301-1_105-9694717-1.html"&gt;Flash drives are moving up&lt;/a&gt; into PCs and servers, and Intel wants to get in on the action with a new drive.&lt;br /&gt;The company formally launched the Intel Z-U130 Value Solid-State Drive (just rolls right off the tongue) on Monday, promising to deliver the drives to PC and server companies as either replacement hard drives or performance enhancers. These drives aren't going to be replacing your hard drive in most situations--at least for now--but could provide a more reliable low-cost way of storing information in &lt;a title="Two visions for delivering PCs to emerging nations -- Wednesday, Feb 28, 2007" href="http://news.com.com/Two+visions+for+delivering+PCs+to+emerging+nations/2100-1005_3-6162696.html"&gt;PCs for emerging markets&lt;/a&gt;, said Greg Matson, product marketing manager for Intel's NAND flash memory division.&lt;br /&gt;The drives can also be used in PCs or servers to help the operating system boot faster, he said. Intel is not disclosing pricing for the drives, which range in capacity from 1GB to 8GB. But he said that the drives would cost less than half the price of a $40 to $50 low-end PC hard drive.&lt;br /&gt;Intel is still planning to deliver a separate flash memory technology known as &lt;a title="Robson or hybrid hard drive? The battle is coming -- Friday, Sep 29, 2006" href="http://news.com.com/Robson+or+hybrid+hard+drive+The+battle+is+coming/2100-1004_3-6121256.html"&gt;Robson&lt;/a&gt; along with the introduction of its Santa Rosa notebook technology, expected in the first half of this year. Robson is designed to help boost performance but was engineered specifically for a notebook.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-8520490427316047058?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/8520490427316047058/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=8520490427316047058&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/8520490427316047058'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/8520490427316047058'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/flash-memory-drives-now-available-from.html' title='Flash memory drives now available from Intel'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_m9o8RkkSz3E/RfYztsKMn6I/AAAAAAAAAAc/npsVuleWrOA/s72-c/intel13032.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-2574815408673205807</id><published>2007-03-13T13:12:00.000+08:00</published><updated>2007-03-13T13:14:31.581+08:00</updated><title type='text'>After False Claim, Wikipedia to Check Degrees</title><content type='html'>&lt;a href="http://4.bp.blogspot.com/_m9o8RkkSz3E/RfYzA8KMn5I/AAAAAAAAAAU/CypvA_57TX8/s1600-h/wikipedia.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5041272924129763218" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://4.bp.blogspot.com/_m9o8RkkSz3E/RfYzA8KMn5I/AAAAAAAAAAU/CypvA_57TX8/s320/wikipedia.jpg" border="0" /&gt;&lt;/a&gt;After an influential contributor and administrator at the online encyclopedia Wikipedia was found last week to have invented a history of academic credentials, Jimmy Wales, Wikipedia’s co-founder and globetrotting advocate, called for a voluntary system for accrediting contributors who say they have advanced degrees, like a Ph.D or M.D.&lt;br /&gt;&lt;br /&gt;The details of how Mr. Wales’s system would work are still being bandied about, and include the idea of having users fax copies of their diplomas to Wikipedia’s offices, or relying on a “circle of trust,” whereby a trusted individual would be in charge of verification. Mr. Wales said he thought that some version of his proposal would begin on the site “in a week.”&lt;br /&gt;But reaction within the fiercely egalitarian Wikipedia world has not been universally favorable. Many writing on Mr. Wales’s user page seemed dumbstruck at the idea of Wikipedia spending its time to verify academic authority when the site’s motto is “the encyclopedia anyone can edit.”&lt;br /&gt;Florence Devouard, Mr. Wales’s successor as the head of Wikimedia Foundation board, the parent of the many Wikipedias in scores of languages, said she was “not supportive” of the proposal. “I think what matters is the quality of the content, which we can improve by enforcing policies such as ‘cite your source,’ not the quality of credentials showed by an editor,” she added.&lt;br /&gt;Mr. Wales was reacting to the public fallout from the revelation that a contributor and Wikipedia administrator named Essjay who claimed to be a tenured professor in Catholic law was in fact Ryan Jordan, a 24-year-old from Louisville, Ky. Mr. Wales said that the Essjay controversy was evidence of “growing pains” for the site, a worldwide phenomenon that has become a default research tool for nearly everyone who uses the Internet.&lt;br /&gt;And while he said “the moral of the story is what makes for a good Wikipedian is not a good credential,” he added that it was important that the general public not think that Wikipedia is “written by a bunch of 12-year-olds.”&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-2574815408673205807?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/2574815408673205807/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=2574815408673205807&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/2574815408673205807'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/2574815408673205807'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/after-false-claim-wikipedia-to-check.html' title='After False Claim, Wikipedia to Check Degrees'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_m9o8RkkSz3E/RfYzA8KMn5I/AAAAAAAAAAU/CypvA_57TX8/s72-c/wikipedia.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-2684705419009058418</id><published>2007-03-13T13:09:00.000+08:00</published><updated>2007-03-13T13:11:05.558+08:00</updated><title type='text'>Intel Readies Power-Saving Quad-Core Xeons</title><content type='html'>David Hyun&lt;br /&gt;&lt;a href="http://www.pcworld.com/article/id,129716-c,xeon/article.html"&gt;http://www.pcworld.com/article/id,129716-c,xeon/article.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Intel Corp. quad-core microprocessors that work at an energy-efficient 50 watts per processor will officially be on the market starting Monday, according to the company.&lt;br /&gt;Each of the four cores in its new Xeon L5320 and L5310 will consume just 12.5 watts of electricity, according to Intel. The company claims the new Xeons use between 35 percent and nearly 60 percent less power than its existing 80-watt and 120-watt quad-core server products.&lt;br /&gt;The L5320 operates at 1.86 GHz and the L5310 at 1.60 GHz. They both feature 8M bytes of on-die cache for faster memory data communication. In quantities of 1,000 units, the L5320 is priced at US$519 and the L5310 at $455.&lt;br /&gt;The new Xeons can be coupled with Intel's existing Bensley server platform, replacing existing dual-core or quad-core Intel processors.&lt;br /&gt;Intel and Advanced Micro Devices Inc. are locked in competition for dominance in the quad-core chip market, as enterprises demand more performance out of servers. Meanwhile, customers are demanding greater energy efficiency as data center electrical costs rise.&lt;br /&gt;AMD in February released details of its coming new quad-core chip, code-named Barcelona, at a technical conference in San Francisco.&lt;br /&gt;Barcelona, due to be released midyear, improves performance and energy efficiency over the competition and over AMD's own dual-core processor, the Opteron, which it introduced in 2003, said Brent Kerby, product marketing manager for Opteron, in an earlier IDG News Service interview.&lt;br /&gt;Servers based on the new Xeons are expected to be available worldwide over the next few months from such server manufacturers as Dell Inc., Hewlett-Packard Co., IBM Corp. and others.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-2684705419009058418?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/2684705419009058418/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=2684705419009058418&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/2684705419009058418'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/2684705419009058418'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/intel-readies-power-saving-quad-core.html' title='Intel Readies Power-Saving Quad-Core Xeons'/><author><name>romopia</name><uri>http://www.blogger.com/profile/06556624145527321585</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-3293536483815191331</id><published>2007-03-13T13:08:00.001+08:00</published><updated>2007-03-13T13:08:34.844+08:00</updated><title type='text'>SEC: 3 traders toyed with Google options</title><content type='html'>David Hyun&lt;br /&gt;&lt;a href="http://www.usatoday.com/tech/news/computersecurity/hacking/2007-03-12-cyber-scam-stocks_N.htm"&gt;http://www.usatoday.com/tech/news/computersecurity/hacking/2007-03-12-cyber-scam-stocks_N.htm&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;It's not just penny stocks that cybercrooks are manipulating for illicit profit.The Securities and Exchange Commission on Monday announced civil charges against three men who allegedly manipulated Google "put options" and Sun Microsystems shares after-hours as part of scams built around using stolen log-ins to break into online brokerage accounts.&lt;br /&gt;The Justice Department also issued criminal indictments against the three accusing them of breaching consumer accounts at E-Trade, TD Ameritrade, Merrill Lynch and Fidelity Brokerage Services.&lt;br /&gt;The SEC's complaint, the fourth since December, shows how clever cybercriminals have become in defeating security systems. "These aren't social misfits operating from Mom's house," says Paul Moriarty, director of Internet content security at Trend Micro. "These are people who are really going after this to try and make money."&lt;br /&gt;Civil and criminal charges have been filed against Jaisankar Marimuthu 32, and brothers Chockalingam Ramanathan, 33, of Chenmai, India, and Thirugnanam Ramanathan, 34, an Indian national who lives in Malaysia. The trio allegedly sold off dozens of portfolios, then used the proceeds to buy positions in — and thus drive up the price — of shares and options they held.&lt;br /&gt;One brokerage account holder who was a victim left for a five-day Alaskan fishing trip with a portfolio worth $180,000 and returned to find the balance at negative $200,000, according to the SEC.&lt;br /&gt;FIND MORE STORIES IN: Google  Securities and Exchange Commission  Ameritrade  Brokerage Cybercrooks can easily breach online brokerage accounts because most require just a username and password to access over the Internet, Moriarty says. Stolen log-on data for online brokerage accounts is readily available on Internet chat channels and websites, called carding forums, where cybercriminals congregate.&lt;br /&gt;A typical price: 10% of the balance in the account, says Dan Clements, CEO of security firm CardCops.&lt;br /&gt;While breaking into online accounts is straightforward, getting cash out takes work. Cyberthieves "sometimes strike out, or don't make all that much," says John Reed Stark, chief of the SEC's Office of Internet Enforcement. "Of all the Internet fraud schemes, these are certainly the most complex."&lt;br /&gt;In this particular case, the SEC alleges that the suspects set up their own online accounts at lesser-known brokerages — ChoiceTrade, Firstrade, OptionsXpress and TradeKing — and then amassed shares in thinly traded securities, which are susceptible to wide price fluctuations.&lt;br /&gt;In the case of Google, a heavily traded company, they acquired shares of a "put option," essentially a 5-cents-per-share bet that Google's share price would plummet 40% within two months. Then the fancy footwork began. According the SEC complaint the Google heist worked like this:&lt;br /&gt;Several times last October, the suspects intruded into online accounts at Charles Schwab, TD Ameritrade and Fidelity Brokerage Services. They sold off the portfolios and used the proceeds to buy Google put options, briefly driving the price up as high as 15 cents per share. They then sold put options acquired earlier for 5 cents per share for double or triple what they paid. Timing had to be perfect. Marimuthu, who was arrested in Hong Kong last December, earned $26,890, while Thirugnanam Ramanathan, arrested in Hong Kong in January, made $1,800. Chockalingam Ramanathan, who's still at large, earned $3,560, the SEC complaint says.&lt;br /&gt;Working together since last July, the three earned $121,500, though the cost to the affected online brokerages to make victimized account holders whole was much higher: $875,000, the SEC says.&lt;br /&gt;U.S. authorities plan to seek extradition of the suspects, Stark says.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-3293536483815191331?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/3293536483815191331/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=3293536483815191331&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3293536483815191331'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3293536483815191331'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/sec-3-traders-toyed-with-google-options.html' title='SEC: 3 traders toyed with Google options'/><author><name>romopia</name><uri>http://www.blogger.com/profile/06556624145527321585</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-679500868778824099</id><published>2007-03-13T13:02:00.000+08:00</published><updated>2007-03-13T13:06:20.785+08:00</updated><title type='text'>Samsung Reveals 8GB Memory Chip</title><content type='html'>&lt;a href="http://4.bp.blogspot.com/_m9o8RkkSz3E/RfYxP8KMn4I/AAAAAAAAAAM/huiVvRNZZIY/s1600-h/1-samsungsampl.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5041270982804545410" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://4.bp.blogspot.com/_m9o8RkkSz3E/RfYxP8KMn4I/AAAAAAAAAAM/huiVvRNZZIY/s320/1-samsungsampl.jpg" border="0" /&gt;&lt;/a&gt; Samsung Electronics on Monday said it has developed a high-density, eight-gigabyte memory chip dubbed the moviNAND which it will begin mass-producing in the second quarter of the year.&lt;br /&gt;The moviNAND consists of a NAND flash memory chip and a multimedia card controller. The new product provides twice the capacity and performance of a 4GB version and will enable electronics makers to develop smaller mobile devices in a wider variety of designs.&lt;br /&gt;The moviNAND follows the standards for high-density embedded flash memory applications developed by the JEDEC (Joint Electron Device Engineering Council) and MMCA (MultiMediaCard Association.)&lt;br /&gt;The value of the total market volume of the new product is predicted to reach about US$4 billion over the next four years. Samsung expects the moviNAND will gain popularity with cellphone and navigator makers with its high-density, high-speed, but low-noise performance.&lt;br /&gt;(&lt;a href="mailto:englishnews@chosun.com"&gt;englishnews@chosun.com&lt;/a&gt; )&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-679500868778824099?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/679500868778824099/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=679500868778824099&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/679500868778824099'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/679500868778824099'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/samsung-reveals-8gb-memory-chip.html' title='Samsung Reveals 8GB Memory Chip'/><author><name>Katrina</name><uri>http://www.blogger.com/profile/10806946186125050799</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_m9o8RkkSz3E/RfYxP8KMn4I/AAAAAAAAAAM/huiVvRNZZIY/s72-c/1-samsungsampl.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-8265191665094365571</id><published>2007-03-12T14:41:00.001+08:00</published><updated>2007-03-12T14:46:03.651+08:00</updated><title type='text'>Europe continues push for iTunes interoperability</title><content type='html'>&lt;a href="http://www.itwire.com.au/content/view/10368/53/"&gt;http://www.itwire.com.au/content/view/10368/53/&lt;/a&gt;&lt;br /&gt;European pressure on DRM schemes that restrict the use of purchased music to particular types of player (think iTunes and iPod) has stepped up a notch.&lt;br /&gt;&lt;br /&gt;EU Consumer Protection Commissioner Meglena Kuneva has been quoted as saying "Do you think it's fine that a CD plays in all CD players but that an iTunes song only plays in an iPod? I don't. Something has to change."&lt;br /&gt;While this overlooks the fact that tracks purchased from the iTunes Store can legitimately be transferred to audio CD - Apple's iTunes software will do this for you - going from protected AAC to CD to MP3 (or some other format supported by other mobile players) does result in some loss of quality, much like photocopying a photocopy.&lt;br /&gt;Scandinavian countries, led by Norway, have been pressing Apple to provide interoperability between iTunes tracks and other manufacturers' players. Apple has until 1 October 2007 to bring the iTunes store into line with Norwegian law.&lt;br /&gt;It remains to be seen how Apple will respond, but one possibility is that it will close the iTunes store to countries where its current business model is considered illegal.&lt;br /&gt;For its part, Apple has been trying to deflect criticism onto the record companies. It was largely Apple's success in persuading those companies that its DRM was sufficiently secure that attracted them to the iTunes Store.&lt;br /&gt;It's not beyond the realms of possibility that Apple could - with the labels' cooperation - use the Norwegian situation to test market reaction to DRM-free music. If sales hold up and there's no corresponding drop in sales of the same titles in other geographies, the sale of unprotected content could spread.&lt;br /&gt;Apple does seem to be strongly against the alternative, which is to allow other companies to use its DRM scheme as mandated by recent French legislation.&lt;br /&gt;The EU is know to be working towards unifying member nations' consumer protection laws, and several countries have expressed concern that there is not the same degree of interoperability between music sold online and portable players from different manufacturers as there is between CDs and CD players, or DVDs and DVD players.&lt;br /&gt;The heart of the issue is the 'lock in' problem - to keep using their libraries of purchased content on portable players, iPod owners must keep buying iPods, Zune owners must keep buying Zunes, and so on.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-8265191665094365571?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/8265191665094365571/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=8265191665094365571&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/8265191665094365571'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/8265191665094365571'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/europe-continues-push-for-itunes.html' title='Europe continues push for iTunes interoperability'/><author><name>Life Is Good</name><uri>http://www.blogger.com/profile/03512329762380639681</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-7023653727506934817</id><published>2007-03-12T14:38:00.000+08:00</published><updated>2007-03-12T14:41:09.182+08:00</updated><title type='text'>S.Korea chip makers up anew on NAND memory hopes</title><content type='html'>&lt;strong&gt;&lt;em&gt;&lt;span style="color:#000000;"&gt;S.Korea chip makers up anew on NAND memory hopes&lt;/span&gt;&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;&lt;span style="color:#000000;"&gt;Mon Mar 12, 2007 11:17 AM IST &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000000;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;a href="http://in.today.reuters.com/news/newsArticle.aspx?type=technologyNews&amp;storyID=2007-03-12T111028Z_01_NOOTR_RTRJONC_0_India-290615-1.xml&amp;amp;archived=False"&gt;&lt;span style="color:#000000;"&gt;http://in.today.reuters.com/news/newsArticle.aspx?type=technologyNews&amp;storyID=2007-03-12T111028Z_01_NOOTR_RTRJONC_0_India-290615-1.xml&amp;amp;archived=False&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#ffccff;"&gt;&lt;span style="color:#3333ff;"&gt;&lt;span style="color:#000000;"&gt;  By Rafael Nam&lt;br /&gt;SEOUL (Reuters) - South Korean chip makers including Samsung Electronics Co. Ltd. extended this month's gains on Monday as prices of NAND flash memory chips used in digital gadgets are expected to rebound, pulling up earnings.&lt;br /&gt;Easing worries about the global economy, following well received jobs data in the United States and solid economic growth in Japan, also boosted the export-oriented sector.&lt;br /&gt;Valuations are playing a role as well, after shares in South Korean chip makers had tumbled for several months on worries about falling prices of memory chips, which threatened to worsen first half earnings that are traditionally marked by weak demand.&lt;br /&gt;"The bottom for memory chip prices is not too far away. Flash memory is close to hitting a bottom, although DRAM prices could continue on a downward trend," said Chung Chan-won, an analyst at Daewoo Securities.&lt;br /&gt;"We do think the earnings trends in Korean chip makers is softening, but share prices are reflecting a hard landing scenario. They are quite low compared to their long-term earnings valuations," he added.&lt;br /&gt;Samsung Electronics, the world's biggest maker of memory chips, rose as much as 2.6 percent. Shares were up 2.39 percent at 600,000 won as of 0438 GMT, marking its fifth day of gains. That compared with a 0.95 percent gain in the main index.&lt;br /&gt;Hynix Semiconductor Inc. advanced 1.08 percent to 32,850 won, its third consecutive daily gain.&lt;br /&gt;Analysts have cut earnings forecasts for Samsung Electronics and Hynix as NAND flash memory chip prices have fallen, while those for DRAM chips, used in computers, have peaked after gaining strongly through the end of last year.&lt;br /&gt;Despite the estimate cuts, investors appear to be increasingly optimistic about the sector.&lt;br /&gt;Goldman Sachs on Monday cut its 2007 earnings-per-share forecast for Samsung Electronics by 11 percent citing lower memory chip prices, but maintained its buy rating on the stock and said it could gain as much as 25 percent from current levels given its low valuations and cost reduction efforts.&lt;br /&gt;The U.S. investment house said Samsung was trading at a price to book ratio of 1.75 times 2007 earnings, a measure some analysts prefer to determine a company's valuations, close to the chip maker's historic low of 1.5 times. Its five year trading range has been 1.5 times to 2.5 times.&lt;br /&gt;Last week Merrill Lynch cut its target prices on South Korean chip makers Samsung and Hynix but reiterated its buy rating on both, saying the risk to flash memory chip prices would decrease in the second quarter, which would be followed by a sales recovery in the third quarter.&lt;br /&gt;"We expect NAND to lead the recovery in 2H (second half) and growth in 2008, resulting from a superior pricing environment coupled with global capacity constraints to meet the demand from new applications," Merrill said in its report.&lt;br /&gt;Some investors are banking on new applications to drive shares, with speculation last week that Apple Inc. may sell small computers powered by flash memory chips helping give a bounce to chip maker shares.&lt;br /&gt;Samsung shares have gained 3.3 percent so far in March as of Friday, heading to its first monthly rise in four months. Hynix shares have gained 4.3 percent, en route to its first monthly rise in three months.&lt;br /&gt;&lt;/span&gt; &lt;/span&gt;&lt;br /&gt; &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-7023653727506934817?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/7023653727506934817/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=7023653727506934817&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7023653727506934817'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7023653727506934817'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/skorea-chip-makers-up-anew-on-nand.html' title='S.Korea chip makers up anew on NAND memory hopes'/><author><name>jjungnang</name><uri>http://www.blogger.com/profile/04350249646790615419</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-2867466498307071960</id><published>2007-03-12T14:37:00.000+08:00</published><updated>2007-03-12T14:42:28.523+08:00</updated><title type='text'></title><content type='html'>&lt;p&gt;&lt;strong&gt;&lt;span style="font-size:180%;"&gt;Digital data will increase sixfold by 2010: study&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;8 Mar 2007 10&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.channelregister.co.uk/2007/03/08/digital_data_explosion/"&gt;http://www.channelregister.co.uk/2007/03/08/digital_data_explosion/&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Imagine 12 stacks of Harry Potter books reaching from Earth to the Sun - that's equivalent to the amount of data stored on digital devices within three years.&lt;/p&gt;&lt;p&gt;New research suggests digital information will occupy a staggering 988 billion gigabytes of storage space in 2010 - more than six times its current quantity. &lt;/p&gt;&lt;p&gt;It seems that all of our digital activity is adding up, particularly data heavy applications such as video downloads from YouTube and digital music from sites like iTunes.&lt;/p&gt;&lt;p&gt;According to a new IDC report, the digital universe measured 161 billion gigabytes (or 161 exabytes) in 2006. This is approximately more than three million times the information in all the books ever written - a staggering amount of detail to accumulate in a such short space of time.&lt;/p&gt;&lt;p&gt;The EMC-sponsored study measured and forecast the amounts and types of digital information created and copied in the world up until 2010. This includes digital images, video, email, music and other types of information.&lt;/p&gt;&lt;p&gt;It seems that snap-happy digital camera owners are making up a large proportion of the digital universe, with images being captured by more than 1 billion devices, from cameras and phones to medical scanners and security cameras.&lt;/p&gt;&lt;p&gt;More than 150 billion images were captured on digital cameras in 2006, with a further 100 billion captured on mobile phones. According to IDC, more than 500 billion images will be captured by 2010.&lt;/p&gt;&lt;p&gt;Meanwhile, more people are regularly getting online than ever before. In 1996, when the web as we know it was a mere two years old, only 48 million people used the internet on a regular basis. By 2006, however, this figure had grown to 1.1 billion, a figure that IDC expects to rise by another 500 million users by 2010.&lt;/p&gt;&lt;p&gt;Email usage has also surged, with the number of email mailboxes growing from 253 million in 1998 to almost 1.6 billion in 2006. The popular communication method has grown three times faster than the number of people actually using it.&lt;/p&gt;&lt;p&gt;Internet instant messaging (IM) is also expected to grow in popularity, with 250 million accounts predicted by 2010.&lt;/p&gt;&lt;p&gt;"The incredible growth and sheer amount of the different types of information being generated from so many different places represents more than just a worldwide information explosion of unprecedented scale," said John Gantz, chief research officer and senior vice president at IDC. "It represents an entire shift in how information has moved from analogue form, where it was finite, to digital form, where it's infinite."&lt;/p&gt;&lt;p&gt;Although almost 70 per cent of the digital universe will be generated by individuals by 2010, the study found organisations will be responsible for the security, privacy, reliability and compliance of at least 85 per cent of it, through data centres, telephone and hosting switches, or data back-up depositories.&lt;/p&gt;&lt;p&gt;"This explosive growth will change the way organisations and IT professionals do their jobs, and the way we consumers use information," said Mark Lewis, EMC executive vice president and chief development officer.&lt;/p&gt;&lt;p&gt;"Given that 85 per cent per cent of the information created and copied will be the responsibility of organisations and businesses, we must take steps as an industry to ensure we develop flexible, reliable and secure information infrastructures to handle the deluge." &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-2867466498307071960?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/2867466498307071960/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=2867466498307071960&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/2867466498307071960'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/2867466498307071960'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/digital-data-will-increase-sixfold-by.html' title=''/><author><name>joanna</name><uri>http://www.blogger.com/profile/07485944182540675269</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-5268582280005341660</id><published>2007-03-12T14:35:00.000+08:00</published><updated>2007-03-12T14:36:24.162+08:00</updated><title type='text'>Sony to cut costs for European PlayStation 3 by removing chip</title><content type='html'>&lt;em&gt;&lt;strong&gt;Sony to cut costs for European PlayStation 3 by removing chip&lt;/strong&gt;&lt;/em&gt;   &lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.usatoday.com/tech/gaming/2007-03-09-ps3-chip-cut_N.htm"&gt;http://www.usatoday.com/tech/gaming/2007-03-09-ps3-chip-cut_N.htm&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;TOKYO (Reuters) — Sony is removing a chip from the European version of its new PlayStation 3 (PS3) game console, a move that cuts costs but means users cannot play some of their old games.Sony shares rose nearly 3% after the news, which is expected to expedite efforts by the Tokyo-based electronics and entertainment conglomerate to turn its PS3 operations profitable — a focus for investors.&lt;br /&gt;Sony, locked in a three-way battle with Microsoft and Nintendo for dominance of the $30 billion video game industry, now makes a loss for each PS3 it sells.&lt;br /&gt;Both Nintendo's Wii and Microsoft's Xbox 360 are cheaper than Sony's latest PlayStation and have been outselling it, although the Xbox 360 has been on the market longer.&lt;br /&gt;The PS3 is to go on sale in Europe on March 23, following its North American and Japanese launches late last year.&lt;br /&gt;Unlike the PS3 being sold in the United States and Japan, the European version will not carry a Sony-made microchip that offers graphic- and data-processing functions for PS2 games, cutting production costs, said a spokesman for game unit Sony Computer Entertainment (SCE).&lt;br /&gt;The console will still be equipped with a different chip that processes graphics for PS2 games, but the backward compatibility of the machine will be lessened, the spokesman said.&lt;br /&gt;Sony packs the PS3 with its cutting-edge technology such as a Blu-ray high-definition DVD player and the Cell microchip, dubbed a "supercomputer on a chip", which provides lifelike graphics and high-speed downloading of game software and video clips.&lt;br /&gt;But they have driven up production costs, dragging Sony's game operations into a deep loss for the business year ending March 31.&lt;br /&gt;Sony said in January it expected losses in its game unit to exceed its previous estimate of 200 billion yen this business year, but would aim to break even on games in the year starting April 1.&lt;br /&gt;In another cost-cutting measure, Sony is planning to introduce Cell chips with circuitry width of 65 nanometres this year, replacing the current 90-nanometre ones.&lt;br /&gt;Narrower circuitry makes microchips smaller, cutting per-chip production costs. A nanometre is one billionth of a metre.&lt;br /&gt;The basic model of the PS3 sells for 49,980 yen ($426.5) in Japan and $499 in the United States, double the price of Nintendo's Wii.&lt;br /&gt;Sony saw its television business posting a profit for the first time in two years in October-December, making its game division's profitability the biggest concern for investors.&lt;br /&gt;Shares in Sony closed up 2.8% at 6,160 yen, outpacing the Tokyo stock market's electrical machinery index IELEC, which rose 1.22%. ($1=117.17 Yen)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-5268582280005341660?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/5268582280005341660/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=5268582280005341660&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5268582280005341660'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5268582280005341660'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/sony-to-cut-costs-for-european.html' title='Sony to cut costs for European PlayStation 3 by removing chip'/><author><name>jjungnang</name><uri>http://www.blogger.com/profile/04350249646790615419</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-7526196306207802729</id><published>2007-03-12T14:29:00.000+08:00</published><updated>2007-03-12T14:29:47.173+08:00</updated><title type='text'>Starting Right Away!</title><content type='html'>You guys probably know that everytime you run the program, there'll be like "RadioButton1," "RadioButton2," etc. To get into the "game," you'd need to click the "Next" button. This is a fix so that you can start the game straightaway.&lt;br /&gt;&lt;br /&gt;Under Form1_Load(), add at the very bottom:&lt;br /&gt;&lt;blockquote&gt;NextRecord()&lt;/blockquote&gt;&lt;br /&gt;So that it'll look like:&lt;br /&gt;&lt;blockquote&gt;m_aAllRecordsArray = Split(m_sAllRecords, vbNewLine)&lt;br /&gt;&lt;strong&gt;NextRecord()&lt;/strong&gt;&lt;br /&gt;End Sub&lt;/blockquote&gt;&lt;br /&gt;Next, cut all contents from the function, Button1_Click and paste it in a new function called, NextRecord().&lt;br /&gt;&lt;br /&gt;Finally, in the "command-less" Button1_Click function, add:&lt;br /&gt;&lt;blockquote&gt;NextRecord()&lt;/blockquote&gt;&lt;br /&gt;So it looks like:&lt;br /&gt;&lt;blockquote&gt;Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As&lt;br /&gt;System.EventArgs) Handles Button1.Click&lt;br /&gt;&lt;strong&gt;NextRecord()&lt;/strong&gt;&lt;br /&gt;End Sub&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Done.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-7526196306207802729?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/7526196306207802729/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=7526196306207802729&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7526196306207802729'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7526196306207802729'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/starting-right-away.html' title='Starting Right Away!'/><author><name>英雄</name><uri>http://www.blogger.com/profile/08646170553588255533</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-538555832619658361</id><published>2007-03-12T14:28:00.000+08:00</published><updated>2007-03-12T14:31:24.438+08:00</updated><title type='text'></title><content type='html'>&lt;strong&gt;&lt;span style="font-size:180%;"&gt;New technology helps catch child predators&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;March 10, 2007 07:46 AM&lt;br /&gt;&lt;a href="http://www.waff.com/Global/story.asp?S=6206122&amp;nav=0hBE"&gt;http://www.waff.com/Global/story.asp?S=6206122&amp;amp;nav=0hBE&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Class is in session for your children, sure, but also for authorities trying to stop child predators on-line.&lt;br /&gt;&lt;br /&gt;The experts say technology is changing crime.&lt;br /&gt;&lt;br /&gt;What one can do with a computer is bound only by the imagination.&lt;br /&gt;&lt;br /&gt;We've been following the efforts to keep up with technologically advanced crimes.&lt;br /&gt;&lt;br /&gt;Stepping up the effort is the focus of this WAFF 48 Investigators Report. In July we told you about a new cyber crime fighting tool coming to town&lt;br /&gt;&lt;br /&gt;In January we introduced you to that tool, an Alabama computer forensics lab here in Huntsville.&lt;br /&gt;&lt;br /&gt;It's one of three labs across the state and Alabama is one of only two states in the country to implement such a program.&lt;br /&gt;&lt;br /&gt;Two weeks ago, we told you about a Vernon man, arrested on 149 counts of child porn. He was busted by the ACFL, a group set to expand by building a national computer forensics institute about a hundred miles away in Hoover Alabama.&lt;br /&gt;&lt;br /&gt;Thousands of investigators from across the world will converge on that institute, training how to combat all types of cyber crime, from homicide, to identity theft, to kiddie porn.&lt;br /&gt;&lt;br /&gt;Center directors say it'll be many months before that institute opens, but in the meantime, interim training courses will be underway in temporary facilities.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-538555832619658361?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/538555832619658361/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=538555832619658361&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/538555832619658361'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/538555832619658361'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/new-technology-helps-catch-child.html' title=''/><author><name>joanna</name><uri>http://www.blogger.com/profile/07485944182540675269</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-7797594315438973804</id><published>2007-03-12T14:27:00.000+08:00</published><updated>2007-03-12T14:34:12.925+08:00</updated><title type='text'>EU Consumer Chief Kuneva Criticizes iTunes iPod Combo</title><content type='html'>&lt;p&gt;&lt;a href="http://www.playfuls.com/news_06487_EU_Consumer_Chief_Kuneva_Criticizes_iTunes_iPod_Combo.html"&gt;http://www.playfuls.com/news_06487_EU_Consumer_Chief_Kuneva_Criticizes_iTunes_iPod_Combo.html&lt;/a&gt;&lt;/p&gt;&lt;p&gt;European Union consumer chief Meglena Kuneva has expressed her opinion about Apple’s policy to allow iTunes’ songs to be played only on iPods. “Do you think it’s fine that a CD plays in all CD players but that an iTunes song only plays in an iPod? I don’t. Something has to change,” said EU Consumer Protection Commissioner Kuneva, according to Reuters. It’s still unclear if Kuneva’s remark is an official position or just a personal opinon, but Apple is facing a lot of pressure in Europe to make iTunes interoperable.&lt;br /&gt;In January this year, the Norwegian government declared iTunes illegal and gave Apple until Oct. 1 to let competitor devices play songs downloaded from the iTunes music store. Also, consumer rights groups in Finland, France and Germany filed similar complaints and issued a joint statement with their counterparts in Norway criticizing Apple.&lt;br /&gt;The problems for Apple in Europe have begun last year when France threatened to pass a law forcing the company to make iTunes tracks compatible with all devices. After Apple called the law state-sponsored piracy and have threatened that will close its iTunes store in France, the French senate softened the law. The French senate has added language to the bill so that a company that agrees to provide its proprietary codes to rivals will receive a license fee along with guarantees that the transfer of information will not weaken its copyright protection measures.&lt;br /&gt;iTunes Store was launched initially to promote iPod player, but in three years Apple has managed to transform into the biggest online music download service. In February 2006, Apple has celebrated the 1 billionth download from iTunes. According to Nielsen NetRatings, a provider of Internet media and market research, traffic to Apple's iTunes Web site and use of the iTunes application has spectacularly increased in the last two years, reaching nearly 14 percent of the active Internet population.&lt;br /&gt;Last month in an open letter, Steve Jobs, Apple CEO, expressed his opinion about the issues in Europe. “Those unhappy with the current situation should redirect their energies towards persuading the music companies to sell their music DRM-free. For Europeans, two and a half of the big four music companies are located right in their backyard. The largest, Universal, is 100% owned by Vivendi, a French company. EMI is a British company, and Sony BMG is 50% owned by Bertelsmann, a German company. Convincing them to license their music to Apple and others DRM-free will create a truly interoperable music marketplace. Apple will embrace this wholeheartedly.” wrote Steve Jobs. &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-7797594315438973804?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/7797594315438973804/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=7797594315438973804&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7797594315438973804'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/7797594315438973804'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/eu-consumer-chief-kuneva-criticizes.html' title='EU Consumer Chief Kuneva Criticizes iTunes iPod Combo'/><author><name>Life Is Good</name><uri>http://www.blogger.com/profile/03512329762380639681</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-5808730079999960608</id><published>2007-03-12T14:25:00.000+08:00</published><updated>2007-03-12T14:31:43.791+08:00</updated><title type='text'>Sony unveils virtual PlayStation world</title><content type='html'>&lt;em&gt;&lt;strong&gt;Sony unveils virtual PlayStation world&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;By ASHER MOSES - SMH Monday, 12 March 2007&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.stuff.co.nz/3988670a28.html"&gt;http://www.stuff.co.nz/3988670a28.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Sony pulled another rabbit out of its hat when it revealed a new freebie for PlayStation 3 owners - an online, 3D virtual world in which gamers can hang out and communicate with each other.&lt;br /&gt;The announcement almost created a public relations disaster for the games console market leader, which went to enormous lengths last week to keep it under wraps.&lt;br /&gt;Demonstrating the service - dubbed PlayStation Home - at the Game Developer's Conference (GDC) in San Francisco, Sony worldwide studios president Phil Harrison said he expected the free download for the PS3 to be available from August.&lt;br /&gt;The virtual world, which is uncannily similar to Second Life, will help take the sting out of the PS3's $1200 price and delayed March 23 release date.&lt;br /&gt;Sony said in a statement that Home "allows PS3 users to interact, communicate, join online games, shop, share private content and even build and show off their own personal spaces to others in real time".&lt;br /&gt;Last week, popular gaming blog Kotaku killed Sony's surprise by leaking extensive details about Home and predicting the GDC announcement. It led Sony to cut off all communications with the blog, but that decision was reversed after a huge public uproar by the gaming community and journalists.&lt;br /&gt;Those who attended Harrison's Home demonstrations today described it as drawing inspiration from Second Life, the social networking site MySpace and the video sharing service YouTube.&lt;br /&gt;Each user is represented in the virtual world by a fully customisable 3D character called an "avatar", which has its own private space or "apartment".&lt;br /&gt;From their apartments, inhabitants can launch straight into multiplayer games or share their photos, video and music content.&lt;br /&gt;In addition to the private apartments, there are also various common areas where users can interact and compete with each other in arcade games such as pool or bowling.&lt;br /&gt;It is unclear whether third parties will be allowed to set up bases within the virtual world or sell products to its inhabitants - a hallmark feature of the Second Life economy - but Sony does plan to commercialise Home with in-world ads.&lt;br /&gt;Sony is also expected to sell clothing for avatars and apartment furniture, but details on this are sparse.&lt;br /&gt;Home is the latest in a series of freebies Sony is offering prospective PS3 buyers; late last month, its managing director for Australia and New Zealand, Michael Ephraim, announced that the first 20,000 people to register their PS3 online would receive a free copy of the James Bond film Casino Royale.&lt;br /&gt;Further, all PS3 buyers will be offered the game Gran Turismo: HD as a free download from the PlayStation Network.&lt;br /&gt;Sony hopes these incentives, coupled with the PS3's ability to play Blu-ray movies and act as a multimedia hub, will convince Australians to choose the PS3 over the cheaper Nintendo Wii and Xbox 360.&lt;br /&gt;The Wii and Xbox 360 can be had for $399.95 and $650 respectively, but it appears that neither can compete with the PS3 as an all-round entertainment system.&lt;br /&gt;In fact, the PS3's photo, music and movie viewing capabilities, as well as the built-in internet browser, are being marketed just as heavily as the gaming features.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-5808730079999960608?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/5808730079999960608/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=5808730079999960608&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5808730079999960608'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5808730079999960608'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/sony-unveils-virtual-playstation-world.html' title='Sony unveils virtual PlayStation world'/><author><name>jjungnang</name><uri>http://www.blogger.com/profile/04350249646790615419</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-2851811657854904567</id><published>2007-03-12T14:22:00.000+08:00</published><updated>2007-03-12T14:35:46.017+08:00</updated><title type='text'></title><content type='html'>&lt;strong&gt;&lt;span style="font-size:180%;"&gt;Digital universe 'infinite'&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;10/03/2007 18:26 - (SA)&lt;br /&gt;&lt;a href="http://www.news24.com/News24/Technology/News/0,9294,2-13-1443_2081420,00.html"&gt;http://www.news24.com/News24/Technology/News/0,9294,2-13-1443_2081420,00.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Johannesburg - Just how big is the digital universe? About 161 billion gigabytes and growing fast, according to new research.&lt;br /&gt;&lt;br /&gt;EMC Corporation, an information infrastructure solutions business, said the research it sponsored found that "the 2006 digital universe was 161 billion gigabytes, or 161 exabytes, in size" and a six-fold growth to 988 exabytes was predicted by 2010.&lt;br /&gt;&lt;br /&gt;"This digital universe equals approximately three million times the information in all the books ever written - or the equivalent of 12 stacks of books, each extending more than 93 million miles from the earth to the sun," said EMC.&lt;br /&gt;&lt;br /&gt;"It represents an entire shift in how information has moved from analogue form, where it was finite, to digital form, where it's infinite," said chief research officer and senior vice-president of IDC, John Gantz. IDC did the research.&lt;br /&gt;&lt;br /&gt;"While nearly 70% of the digital universe will be generated by individuals by 2010, most of this content will be touched by an organisation along the way - on a network, in a data centre, at a hosting site, at a telephone or internet switch, or in a backup system.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Organisations in control&lt;br /&gt;&lt;/strong&gt;&lt;br /&gt;"Organisations - including businesses of all sizes, agencies, governments and associations - will be responsible for the security, privacy, reliability and compliance of at least 85 percent of the information," said EMC.&lt;br /&gt;&lt;br /&gt;"This ever-growing mass of information is putting a considerable strain on the IT infrastructures we have in place today," said CEO of EMC South Africa Frank Touwen.&lt;br /&gt;&lt;br /&gt;He said it would change the way organisations and IT professionals worked and the way consumers used information.&lt;br /&gt;&lt;br /&gt;Most of the digital information is images, captured by more than one billion devices around the world, including digital cameras and cellphones.&lt;br /&gt;&lt;br /&gt;The information includes e-mails generated from 1.6 billion e-mail boxes last year and 1.1 billion internet users.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-2851811657854904567?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/2851811657854904567/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=2851811657854904567&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/2851811657854904567'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/2851811657854904567'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/digital-universe-infinite-10032007-1826.html' title=''/><author><name>joanna</name><uri>http://www.blogger.com/profile/07485944182540675269</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-8317239057032927921</id><published>2007-03-12T13:17:00.001+08:00</published><updated>2007-03-12T13:17:28.233+08:00</updated><title type='text'>New device 'uses emotions to play games'</title><content type='html'>&lt;a href="http://www.theage.com.au/news/National/New-device-uses-emotions-to-play-games/2007/03/12/1173548082973.html"&gt;http://www.theage.com.au/news/National/New-device-uses-emotions-to-play-games/2007/03/12/1173548082973.html&lt;/a&gt;Email Print Normal font Large font March 12, 2007 - 2:29PM(By. Lily)&lt;br /&gt;&lt;br /&gt;In a world where gamers can spend days on end intimately coupled to their PCs, one Australian company is seeking to intensify the relationship between man and machine.&lt;br /&gt;Emotiv Systems has shifted its main headquarters from Sydney to San Francisco as it moves to secure support for a mind-reading device it believes will profoundly change the way humans interact with computers.&lt;br /&gt;The fledgling business has secured about $6.3 million in venture capital and Australian government grants for the marketing of the Emotiv Development Kit (EDK), a product the company is initially pitching at game developers.&lt;br /&gt;The kit, recently unveiled at the Game Developers Conference (GDC) in San Francisco, includes the company's headset, dubbed Project Epoc, a device able to detect electrical activity in the brain.&lt;br /&gt;The EDK reads these signals and interpolates them into meaningful information - in other words, it can read a limited vocabulary of thoughts and emotions.&lt;br /&gt;The kit comprises three applications known as Expressiv, Affectiv and Cognitiv.&lt;br /&gt;Expressiv can also work out a user's facial expression, recreating this on the face of an "avatar" - a graphical representation of a user.&lt;br /&gt;The intent is to make the social networking experience in platforms such as Second Life more natural.&lt;br /&gt;Emotiv chief product officer Randy Breen, previously product development head at LucasArts, says advances in the way the gaming industry currently works are driving the project.&lt;br /&gt;"The problem is that graphics and sound have improved dramatically to a point where the improvements are becoming more subtle and the costs to support them are making it more difficult to find profit for the developers," Breen says.&lt;br /&gt;"There's pressure on where the innovation is coming from.&lt;br /&gt;"Historically, the game controller hasn't changed very much over a long period of time so that in recent years we've started to see more unusual hardware coming to market."&lt;br /&gt;Breen describes Expressiv as a significantly more advanced take on "emotes", symbols that users employ to convey a feeling or action over the electronic written medium.&lt;br /&gt;Users will be able to communicate not just conscious intent but more immediate non-conscious responses such as laughter, smiling or wincing.&lt;br /&gt;"Emotes do that to some extent now but it's really different when there's a barrier that requires you to consciously think about communicating laughing," Breen says.&lt;br /&gt;"Communicating that text and then sending it off and the other person reads it - the reaction to that is not as immediate, not as real."&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-8317239057032927921?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/8317239057032927921/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=8317239057032927921&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/8317239057032927921'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/8317239057032927921'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/new-device-uses-emotions-to-play-games.html' title='New device &apos;uses emotions to play games&apos;'/><author><name>LP4eva</name><uri>http://www.blogger.com/profile/05987785484086912053</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-8502875291953935605</id><published>2007-03-12T13:12:00.001+08:00</published><updated>2007-03-12T13:12:48.780+08:00</updated><title type='text'>Mobile phones are new frontier in advertising</title><content type='html'>Site: &lt;a href="http://www.iht.com/articles/2007/03/11/business/ad12.php"&gt;http://www.iht.com/articles/2007/03/11/business/ad12.php&lt;/a&gt;&lt;br /&gt;(by. Lily)&lt;br /&gt;Eric Pfanner&lt;br /&gt;Old media got left behind in the race to go online, in part because the prospects for advertising, traditionally the major revenue generator for newspapers, magazines and television, seemed unclear on the Internet. Then online advertising took off, and old media are still playing catch-up.&lt;br /&gt;Now, with the next iteration of the Internet, the mobile Web, spreading around the world, publishers and other content providers are trying to keep up, lest they get in late on another advertising bonanza.&lt;br /&gt;Last week in London, the Online Publishers Association released a study showing that use of the mobile Internet is on the rise, along with acceptance of mobile advertising.&lt;br /&gt;Today in Technology &amp; Media&lt;br /&gt; Wireless: Operating systems present problems for mobile phone makers Telecoms fighting in tough TV arena French election could determine future of government-supported France 24 news channelThe survey, conducted by TNS Media and Entertainment in the United States, Britain, France, Germany, Italy and Spain, found that 76 percent of cellphone owners in those countries now have access to the Web from mobile devices. The researchers, who polled about 1,000 people in each country, found that more than a third of those with mobile Web access used such services. The Web-using population ranged from 34 percent in France to 54 percent in Britain.&lt;br /&gt;Studies commissioned by trade organizations are sometimes just disguised marketing exercises, and indeed the publishers' group's numbers seem surprisingly high, compared with other recent surveys of Web access by mobile phone users. According to M:Metrics, a research firm based in Seattle, 14 percent of British cellphone users accessed the Web for news and information in the fourth quarter. In Germany, a mere 3.2 percent did so, according to the firm.&lt;br /&gt;Still, even if the lower estimates are right, mobile marketing could be a big thing, simply because the numbers are enormous. Some oft-repeated measures: Around one billion mobile phones will be sold around the world this year. Globally, there are more cellphones than PCs.&lt;br /&gt;"I always hear about the cellphone as being the 'third screen,' but I think about it as the first one," said Bob Greenberg, chief executive of R/GA, an agency based in New York that specializes in digital advertising, speaking at a conference sponsored by the publishers' association. "It's with me all the time."&lt;br /&gt;In advertising terms, however, the mobile remains very much the third screen, behind television and the PC. Outside Asia, where mobile advertising has grown rapidly in markets like Japan, activity is still dominated by "text and response" campaigns that ask users to send text messages for more information on a product, or to enter a contest, for example.&lt;br /&gt;The personal nature of the link between cellphones and their users has made marketers tread carefully. Some kinds of mobile advertising — unsolicited text-message spam, for instance — are illegal or against advertising regulatory codes in many countries.&lt;br /&gt;The online publishers' survey indicated that consumers remain wary. Only 18 percent of respondents in the United States said they were receptive to the idea of watching ads in exchange for free mobile content. The percentage was higher in Europe, where 37 percent said they would do so.&lt;br /&gt;But the study also showed how effective mobile advertising could be, if the personal space can be entered deftly. Sizable percentages of respondents said they had visited a Web site, for instance, or requested more information about a product, as a result of a mobile ad.&lt;br /&gt;In an effort to get more marketers into mobile, Nokia last week announced two new services that aim to stimulate the development of mobile advertising. One of the new programs will help digital advertising specialists roll out campaigns for cellphone-based media applications like music players and navigation systems. The other will help agencies adapt digital campaigns for the mobile web.&lt;br /&gt;"It was kind of natural for us to try to figure out how advertising will work inside these platforms," said Harry Santamaki, vice president for multimedia strategy and business development at Nokia.&lt;br /&gt;With mobile media embracing an increasingly diverse array of devices and formats, from video game players to portable newspaper readers, that may be no easy task. But, if you believe the marketing, the payoff could be sizable.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-8502875291953935605?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/8502875291953935605/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=8502875291953935605&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/8502875291953935605'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/8502875291953935605'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/mobile-phones-are-new-frontier-in.html' title='Mobile phones are new frontier in advertising'/><author><name>LP4eva</name><uri>http://www.blogger.com/profile/05987785484086912053</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-5149378250014173501</id><published>2007-03-12T12:58:00.002+08:00</published><updated>2007-03-12T13:22:05.215+08:00</updated><title type='text'>Wikipedia Founder Plans To Launch Search Engine</title><content type='html'>David Hyun&lt;br /&gt;URL:&lt;br /&gt;&lt;a href="http://www.allheadlinenews.com/articles/7006697731"&gt;http://www.allheadlinenews.com/articles/7006697731&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Tokyo, Japan (AHN) - Wikipedia founder Jimmy Wales on Thursday indicated his plans to launch an open source search engine early next year. According to Wales, the first test version of the search engine could be released sometime in 2007 so that programmers could spot and remove the bugs that only become visible with real-world usage.&lt;br /&gt;Speaking at a news conference in Japan, Wales said the project being run by Wikia Inc. could snag as much as 5 percent of the search market.&lt;br /&gt;Wales said that although the project is still in its preliminary phase, it has already started attracting attention from a community of engineers, programmers and developers.&lt;br /&gt;"We are getting a lot of interest from second-tier search players who are really interested in some of the alternatives that might be available," he told Macworld.com.&lt;br /&gt;The Wiki-founder went on to criticize Google and Yahoo! for keeping their search technologies under wraps and said that the technology used by Google should not necessarily be given the market edge it is receiving.&lt;br /&gt;"The idea that Google has some edge because they've got super duper rocket scientists may be a little antiquated now," he said at the conference.&lt;br /&gt;However, he acknowledged that publishing a search algorithm, which usually determines how a particular site is ranked, would make it too easy for spammers to "game the system...and my whole idea won't work," he told the Macworld.com.&lt;br /&gt;Still Wales hopes that the search engine would ride on the success of the collaborative search technology currently enjoyed by his reader-edited Website Wikipedia and could transform the development of future search engines.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-5149378250014173501?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/5149378250014173501/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=5149378250014173501&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5149378250014173501'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/5149378250014173501'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/insat-4b-launched-successfully_12.html' title='Wikipedia Founder Plans To Launch Search Engine'/><author><name>romopia</name><uri>http://www.blogger.com/profile/06556624145527321585</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-3278942859536999549</id><published>2007-03-12T12:57:00.001+08:00</published><updated>2007-03-12T13:00:20.250+08:00</updated><title type='text'>Insat-4B launched successfully</title><content type='html'>site: &lt;a href="http://www.indiantelevision.com/headlines/y2k7/mar/mar126.php#top"&gt;http://www.indiantelevision.com/headlines/y2k7/mar/mar126.php#top&lt;/a&gt;&lt;br /&gt;(by. Lily)&lt;br /&gt;(12 March 2007 9:00 am)&lt;br /&gt;Ariane 5, carrying Insat-4B and its co-passenger Skynet-5A, lifts off from the Spaceport in Kourou, French Guiana. MUMBAI: Isro's latest satellite, Insat-4B, was successfully launched early this morning by the European Ariane-5 ECA launch vehicle from Kourou in French Guiana.&lt;br /&gt;The 3,025 kg Insat-4B is the second satellite in the Insat-4 series. An identical satellite, Insat-4A, was launched by Ariane-5 on 22 December, 2005.&lt;br /&gt;The lift-off was earlier scheduled for the early hours of Sunday but due to a technical hitch, the launch was aborted just seven minutes before blast-off. There were no such problems today though and the mission went off with text book precision. With 12 high power Ku-band transponders and 12 C-band transponders, Insat-4B will further augment the Insat capacity for Direct-To-Home (DTH) television services and other communication and TV services.&lt;br /&gt;The 31st flight in Ariane-5 series, carrying Isro's Insat-4B and its co-passenger, Skynet-5A of EADS Astrium, lifted off at 03:33 am Indian Standard Time (IST) from Kourou. About 30 minutes after lift-off, Insat-4B was placed in the Geosynchronous Transfer Orbit (GTO) in 3-axis stabilised mode. Isro chairman G Madhavan Nair (at right) joins with Astrium CEO François Auque in the Spaceport's Jupiter control room to congratulate Arianespace CEO Jean-Yves Le Gall (left) on Ariane 5's successful launch. Insat-4B is now orbiting the earth with a perigee (nearest point to earth) of 243 km and an apogee (farthest point to earth) of 35,876 km and an inclination of 4.52 deg with respect to the equator. The orbital period is about 10 hours 34 minutes.&lt;br /&gt;The Master Control Facility (MCF) at Hassan in Karnataka acquired the first signals from Insat-4B at 4:02 am IST. The initial checks on the satellite have indicated normal health of the satellite. MCF subsequently issued commands to the satellite to make the earth viewing face to orient towards earth. The calibration of the gyros on board the satellite was also carried out.&lt;br /&gt;Insat-4B is being tracked, monitored and controlled from MCF. During the initial phase operations, MCF also utilises Inmarsat Organisation's Telemetry, Tracking and Command (TTC) ground stations at Beijing (China), Fucino (Italy) and Lake Cowichan (Canada) besides the Isro Telemetry, Tracking and Command (Istrac) Network station at Biak in Indonesia. The satellite's orbit is being precisely determined by continuous ranging from the participating ground stations.&lt;br /&gt;In the coming days, Insat-4B will be manoeuvred to its final geostationary orbit, which is about 36,000 km above the equator, by firing its 440 Newton Liquid Apogee Motor (LAM). When the satellite reaches near geosynchronous orbit, deployment of its solar panels and the two antennas will be carried out and the satellite put in its final 3-axis stabilised mode. This will be followed by trim manoeuvres to take the satellite to its designated orbital slot at 93.5 degree East longitude where it will be co-located with Insat-3A. The payloads will be checked out before the commissioning of the satellite.&lt;br /&gt;Insat-4B carries the following payloads:&lt;br /&gt;* 12 Ku- band 36 MHz and 27 MHz usable bandwidth Transponders (9 and 3 numbers respectively) employing 140 W TWTAs to provide an EIRP of 52 dBW over the footprint covering Indian main land.&lt;br /&gt;* 12 C-band 36 MHz bandwidth transponders employing 63 W TWTA to provide an EIRP 39 dBW with expanded coverage encompassing Indian geographical boundary, area beyond India in southeast and northwest regions.&lt;br /&gt;The satellite has two deployable antennas for various transmit and receive functions.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-3278942859536999549?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/3278942859536999549/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=3278942859536999549&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3278942859536999549'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/3278942859536999549'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/insat-4b-launched-successfully.html' title='Insat-4B launched successfully'/><author><name>LP4eva</name><uri>http://www.blogger.com/profile/05987785484086912053</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2837999643174419543.post-1014038943740003591</id><published>2007-03-12T12:55:00.000+08:00</published><updated>2007-03-12T13:00:05.749+08:00</updated><title type='text'>Duplicate bug fixed by Paul Lee</title><content type='html'>Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Static lIndex As Long Dim aFields&lt;br /&gt;If m_sSelectedCorrectDefinition &lt;&gt; m_sCorrectDefinition Then MsgBox("not") Exit Sub End If If lIndex &gt; UBound(m_aAllRecordsArray) Then lIndex = 0&lt;br /&gt;End If&lt;br /&gt;&lt;br /&gt;aFields = Split(GetRecord(lIndex), "") lIndex = lIndex + 1&lt;br /&gt;&lt;strong&gt;Place:&lt;/strong&gt; If UBound(aFields) &gt; 0 Then lblDef1.Text = aFields(0) m_sCorrectDefinition = aFields(1)&lt;br /&gt;RadioButton1.Text = GetNewRandomDefinition() RadioButton2.Text = GetNewRandomDefinition() RadioButton3.Text = GetNewRandomDefinition() RadioButton4.Text = GetNewRandomDefinition() RadioButton5.Text = GetNewRandomDefinition()&lt;br /&gt;WriteCorrectDefToRandomRadioButton()&lt;br /&gt;RadioButton1.Checked = False RadioButton2.Checked = False RadioButton3.Checked = False RadioButton4.Checked = False RadioButton5.Checked = False&lt;br /&gt;End If&lt;br /&gt;&lt;strong&gt;If RadioButton1.Text = RadioButton2.Text Or RadioButton1.Text = RadioButton3.Text Or RadioButton1.Text = RadioButton4.Text Or RadioButton1.Text = RadioButton5.Text Or RadioButton2.Text = RadioButton3.Text or RadioButton2.Text = RadioButton4.Text or RadioButton2.Text = RadioButton5.Text or RadioButton3.Text = RadioButton4.Text or RadioButton3.Text = RadioButton5.Text or RadioButton4.Text = RadioButton5.Text Then&lt;br /&gt;GoTo Place&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; End If&lt;/strong&gt;&lt;br /&gt;End Sub&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2837999643174419543-1014038943740003591?l=qmisxyz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://qmisxyz.blogspot.com/feeds/1014038943740003591/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2837999643174419543&amp;postID=1014038943740003591&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/1014038943740003591'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2837999643174419543/posts/default/1014038943740003591'/><link rel='alternate' type='text/html' href='http://qmisxyz.blogspot.com/2007/03/duplicate-bug-fixed-by-paul-lee.html' title='Duplicate bug fixed by Paul Lee'/><author><name>JediMaster</name><uri>http://www.blogger.com/profile/09920627628485725851</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
