Category Archives: #Software

Humans With Amplified Intelligence Could Be More Powerful Than AI

With much of our attention focused the rise of advanced artificial intelligence, few consider the potential for radically amplified human intelligence (IA). It’s an open question as to which will come first, but a technologically boosted brain could be just as powerful — and just as dangerous – as AI.

 

via io9

World War 3 will be started because the auto-translate screwed up….

This is  discussion on FB with Dutch speakers ironically about robotics and the end of jobs.  The person I was talking with, reponded with this reply

De ontwikkeling gaat steeds verder, maar het zal toch eerst het geestdodende werk worden dat wordt gerobotiseerd.
Ook de pizzabakker blijft …

Using Facebook’s auto translate, I got this.

The development will continue, but it will still work the stultifying first be being robotised.
Also remains the pizza…

I jumped on Google’s Translate and got this.

The development is progressing, but it will first be drudgery that robotized.
The pizza chef remains

 

Windows 10 on a Dell Inspiron Mini 10

Downloaded the Media Creation Tool 

Installed it on a Dell Inspiron Mini 10

THE SPECS

Processor
Processor type Atom Z530
Processor speed 1600.0 MHz
Display
Display size 10.1 inches
Resolution 1366 x 768 pixels
Graphics
Graphics Type Integrated
Primary Graphics Chipset Intel US15W Chipset
General Information
UPC Code 884116019879
Memory
Memory size 1024.0 MB
Memory type DDR2 SDRAM
Memory speed 800.0 MHz

 

 

 

Results…..

11701152_10152993844200913_1023688085031329314_n

 

#programaday : Find Teamviewer ID and email it….

Assumptions :

Sendemail program is in c:\sendemail\

IF @OSArch = ‘x86’ Then
$tv=”HKEY_LOCAL_MACHINE\SOFTWARE\TeamViewer”
Else
$tv=”HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\TeamViewer”
EndIf

Sleep(1000)
emailID($tv)

Func emailID($tv_key)
Local $file2send = “c:\2em.bat”
Local $sVar = RegRead($tv_key, “ClientID”)
$em=”c:\sendemail\sendemail.exe -f <My Email> -t <My Email> -u ” & chr(34) & ” TV on ” & @ComputerName & ” is ” & $sVar & chr(34) & ” -m ” & chr(34) & ” TV on ” & @ComputerName & ” is ” & $sVar & chr(34)
FileCreate($file2send ,$em)
; MsgBox($MB_SYSTEMMODAL, $file2send , $em)
ShellExecute($file2send)
Sleep(8000)
FileDelete($file2send)
EndFunc
; Create a file.
Func FileCreate($sFilePath, $sString)
Local $bReturn = True ; Create a variable to store a boolean value.
If FileExists($sFilePath) = 0 Then $bReturn = FileWrite($sFilePath, $sString) = 1 ; If FileWrite returned 1 this will be True otherwise False.
Return $bReturn ; Return the boolean value of either True of False, depending on the return value of FileWrite.
EndFunc ;==>FileCreate