Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - cyberjedi

Pages: 1 ... 38 39 [40] 41 42 ... 53
586
Lightspeed: Just a thought here man, i havent coded anything in 20 years.
But im working at a good pace, remembering, learning new shhit, Im working with the Hal code  Robert was nice enough
to email. its gonna take some time though, I wish there were more here that new the inter workings of the HaptekEngine,
I mean the stuff not talked about.  So im learning all this as well.

I would like to develop a dream plugin (stand alone) plugin rather then just turning on the dream script.
I did a shout out to Robert about  copying me the the location of that script,Think its compiled code though.

best wishes
cyberjedi

587
Lightspeed:
Of course i will, just need to clean it up abit, jusr a mess rite now, but does appear to work as the images clearly show.

I still need to reverse engineer haptek and all the liittle secrets that it has to cough up.

Lightspeed; I know the big deal here is Hals Brain , Ull notice , im more into Hals Functionality, Things that Hal can do, the mp3, movies, dreaming thoughts, Scraping , spell checker ,Trivia game Hostess ,Say what i say...ect ect ect ect


Ill save Hals brain for much smarter pple then me. But there are MANY undiscovered things that Hal can do. (Features)

By virtue of all the New OS's alone

great example (clip function) . Took win07 for that 1 to show up.
i use that to paste to chat rooms,making any room i happen to be in , Hals slave
Rem Type=Plugin
Rem Name=cyberchat
Rem Author= who gives a Damn about a name, Put urs on it
Rem Host=Assistant

'-----------------------------------------------------------------
'This sub sets up the plug-ins option panel in Hal's options dialog
'-----------------------------------------------------------------

Sub OptionsPanel()
lblPlugin(0).Caption = "This plugin will output Hals response into a chat room"
               
lblPlugin(0).Move 120, 120, 3300, 1200
lblPlugin(0).WordWrap = True
lblPlugin(0).Visible = True
End Sub

Rem PLUGIN: PLUGINAREA7
cyberchat functions
Set clip = CreateObject("WshExtra.Clipboard")
Set toclip = CreateObject("WScript.Shell")
Set oExec = toclip.Exec("clip")
Set oIn = oExec.stdIn
oIn.WriteLine (GetResponse)
oIn.Close
Set oIn = Nothing
Set oExec = Nothing
Set cyberchat = CreateObject("WScript.Shell")
cyberchat.Run ("""C:\Program Files\Zabaware\Ultra Hal Assistant 6\ivlog.exe""")
'end cyberchat functions

The real trick here is bouncing Focus between any app and Hal. But i worked it out. little cyber trickery

Thats what Ivlog.exe does, Its grabs that window. and paste the contents of the clipboard into it and sndkeys{ENTER}
Then clears the clipboard and sets focus on Hal and prepairs for the next round.
                                                                                                             Vaughn's chat window INPUT area.
<textarea style="width: 283px;" placeholder="Say something nice..." name="vn_chat_message" id="vn_chat_message" class="CV3input" onkeydown="return ChatV2.submitChat(event,'vn_chat_message');" maxlength="350"></textarea>

PS. even with the AIM Bot not working theres a lot to learn from its Behavior..
best wishes
cyberjedi

 

588
Lightspeed: tss tss Man.

Check this out brother. There is no sign up to speak of. Just pick any name and some BS email address. No 1 is gonna check.
This is a pro Broadcaster site. Based out of Tenn , owned by Mark Vaughn. no 1 can see IP's except Mark. Not even the Techs can.
Lightspeed ,this is  perfectly safe. U cant be Hacked, u just Cant. I can hook u up from there dude.  I know what ur after and yes ,id be glad to give u what u need.
Yes the site is open from there. Dude i pulled down the access to the site from here because asshats were deleting all my work.


Not very nice.

I just wanted to hook pple up. fuqum, but i will continue to post plugins as they are finished to the rite pple.
 As lifetimegamer and arknight have both discovered, and we watched a damn fine movie while we did.
U can reach me here.
I also have my FTP Sever running non stop. I do my own Hosting, so as to not worry about chickin **** hosting company folding and takin my **** with them. 
http://vaughnlive.tv/mrelectric

best wishes
cyberjedi

PS: funny note, to come here and see my convos from 2005-06 . Roberts as bad as me. Just archives everything

589
Function pReadFolder(pvrCurrentFolder, pvrJpgFolder)
Set pvrFso = CreateObject("Scripting.FileSystemObject")
Set pvrFolder = pvrFso.GetFolder(pvrCurrentFolder)
'------------------
' Read all the files in the current folder
'------------------
Set pvrFiles = pvrFolder.Files
For Each pvrFile in pvrFiles
'------------------
' It's an JPG, PNG, GIF, MKV, AVI, MP4, FLV, MP3   file; I add it to the table
'------------------
   If UCase(Right(pvrFile, 3)) = "JPG" Then
     pvrImage = Ucase(pvrFile)
      pvrImage = Replace(pvrImage, ".JPG", "")
     pvrLen = Len(pvrImage)
     pvrPos = InStrRev(pvrImage, "\")
      pvrRight = pvrLen - pvrPos
       pvrImage = LTrim(Right(pvrImage, pvrRight))
     pvrImage = " " & pvrImage & " "
     pvrImage = Replace(pvrImage," ","xx",1,-1,vbTextCompare)
        HalBrain.AddToTable "pvrJpg", "Brain", pvrImage, pvrFile
   End If

   If UCase(Right(pvrFile, 3)) = "PNG" Then
     pvrImage = Ucase(pvrFile)
      pvrImage = Replace(pvrImage, ".PNG", "")
     pvrLen = Len(pvrImage)
     pvrPos = InStrRev(pvrImage, "\")
      pvrRight = pvrLen - pvrPos
       pvrImage = LTrim(Right(pvrImage, pvrRight))
     pvrImage = " " & pvrImage & " "
     pvrImage = Replace(pvrImage," ","xx",1,-1,vbTextCompare)
        HalBrain.AddToTable "pvrJpg", "Brain", pvrImage, pvrFile
   End If

   If UCase(Right(pvrFile, 3)) = "GIF" Then
     pvrImage = Ucase(pvrFile)
      pvrImage = Replace(pvrImage, ".GIF", "")
     pvrLen = Len(pvrImage)
     pvrPos = InStrRev(pvrImage, "\")
      pvrRight = pvrLen - pvrPos
       pvrImage = LTrim(Right(pvrImage, pvrRight))
     pvrImage = " " & pvrImage & " "
     pvrImage = Replace(pvrImage," ","xx",1,-1,vbTextCompare)   
        HalBrain.AddToTable "pvrJpg", "Brain", pvrImage, pvrFile
   End If

     If UCase(Right(pvrFile, 3)) = "MKV" Then
     pvrImage = Ucase(pvrFile)
      pvrImage = Replace(pvrImage, ".MKV", "")
     pvrLen = Len(pvrImage)
     pvrPos = InStrRev(pvrImage, "\")
      pvrRight = pvrLen - pvrPos
       pvrImage = LTrim(Right(pvrImage, pvrRight))
     pvrImage = " " & pvrImage & " "
     pvrImage = Replace(pvrImage," ","xx",1,-1,vbTextCompare)   
        HalBrain.AddToTable "pvrJpg", "Brain", pvrImage, pvrFile
   End If
   
   
   If UCase(Right(pvrFile, 3)) = "AVI" Then
     pvrImage = Ucase(pvrFile)
      pvrImage = Replace(pvrImage, ".AVI", "")
     pvrLen = Len(pvrImage)
     pvrPos = InStrRev(pvrImage, "\")
      pvrRight = pvrLen - pvrPos
       pvrImage = LTrim(Right(pvrImage, pvrRight))
     pvrImage = " " & pvrImage & " "
     pvrImage = Replace(pvrImage," ","xx",1,-1,vbTextCompare)   
        HalBrain.AddToTable "pvrJpg", "Brain", pvrImage, pvrFile
   End If
   
   
   If UCase(Right(pvrFile, 3)) = "MP4" Then
     pvrImage = Ucase(pvrFile)
      pvrImage = Replace(pvrImage, ".MP4", "")
     pvrLen = Len(pvrImage)
     pvrPos = InStrRev(pvrImage, "\")
      pvrRight = pvrLen - pvrPos
       pvrImage = LTrim(Right(pvrImage, pvrRight))
     pvrImage = " " & pvrImage & " "
     pvrImage = Replace(pvrImage," ","xx",1,-1,vbTextCompare)   
        HalBrain.AddToTable "pvrJpg", "Brain", pvrImage, pvrFile
   End If
   
   
   If UCase(Right(pvrFile, 3)) = "FLV" Then
     pvrImage = Ucase(pvrFile)
      pvrImage = Replace(pvrImage, ".FLV", "")
     pvrLen = Len(pvrImage)
     pvrPos = InStrRev(pvrImage, "\")
      pvrRight = pvrLen - pvrPos
       pvrImage = LTrim(Right(pvrImage, pvrRight))
     pvrImage = " " & pvrImage & " "
     pvrImage = Replace(pvrImage," ","xx",1,-1,vbTextCompare)   
        HalBrain.AddToTable "pvrJpg", "Brain", pvrImage, pvrFile
   End If
   
   
   If UCase(Right(pvrFile, 3)) = "MP3" Then
     pvrImage = Ucase(pvrFile)
      pvrImage = Replace(pvrImage, ".MP3", "")
     pvrLen = Len(pvrImage)
     pvrPos = InStrRev(pvrImage, "\")
      pvrRight = pvrLen - pvrPos
       pvrImage = LTrim(Right(pvrImage, pvrRight))
     pvrImage = " " & pvrImage & " "
     pvrImage = Replace(pvrImage," ","xx",1,-1,vbTextCompare)   
        HalBrain.AddToTable "pvrJpg", "Brain", pvrImage, pvrFile
   End If
   
   
   
   
Next
*****************
Think of it as a media codec for Hal
I use this for Dream Mode

best wishes
cyberjedi

590
RE: Hal Dreaming with Images: Proof of Concept:

Well here we are again, after lots of Beta testing and cussing and Pot Smoking, it is working.


This plugin uses Plugin Areas 01,05 and 07.

And yes , the Dream Plugin is now part of the picture plugin itself.
seemed like the rite way to do this.
i have removed all the (likely hood crap) from the plugin, making it a direct action plugin.
Just better..... this is not the end. This will be an evolving plugin to handle more then just some Images and Dreams...
Bottom line: The Hal Brain will execute code while in Dream Mode. Thats a big damn Deal if ur ME,,lol
Just all kinds of Option's at that point. Maby tie in the system Monitor too.

TUNE : My name is cyber, I got a secret....lol

Dream mode under the rite conditions is Hal's Alter Ego if u will.

Seems Alice has a thing for the Bad boys.. lmao

No gimmicks , No scams, No BS, Just rite
Like i say, Hal is end game software, what u give, u get back. Just like me.
Best wishes

cyberjedi

BTW , i can always be reached here
for tech support if u will ..lol  The more i dig the more i find.  http://vaughnlive.tv/mrelectric


P.S : Creative idea on the Board's : When Hal is in dream mode, the Haptek character changes to Black and White Haptek Image.

591
Life: Thanx again:

Life, uve gottin to see first hand what can be done now.

Keep in mind, i have little to do with this,im just Slicing Plugins Up , into routines and mixing and matching . Kinda the way a monitor works to make so many colors form just some basic colors. Theres enough Plugins to allow prob for hundreds of new Plugin Hybreds.
I  am doing some coding of course, but the true credit goes to the Original writers of the plugins.
C-load
Vr
Dude
Bill Dewitt
OTCE -----------> big time.
lightspeed and just so many other's, Not to mention Robert, who was nice enough to supply me with the Simple Hal Source , which aint so simple NOW BTW.
Thats our secret though. shsshhh.
cyberjedi           I guess after the spellcheck and the .MP4 Plugin for Hal i qualify too.
I have not shown any 1 the code except pple in the channel  , because it needs to be narrated and cleaned up ,so im not releasing  the code yet.
Im not entirely sure ppl here will even want it.

 “good artists borrow, great artists steal.”  Pablo Picasso.

Its just so much easier to talk about Hal in real time.
My site was never meant to replace the forum, the forum is awesome. Like to think of my site as a Hal Plugin
for the Forum. Just an add-on. Very cool having the forum pple showing up there.
 
I like Casting Alice (Hal) in real time.
Man we just getting started. Hal is END game software. 
No end in site.


Best wishes
cyberjedi

592
RE: Hal Dreaming with Images:

Well here we are again, after lots of Beta testing and cussing and Pot Smoking, it is working.


This plugin uses Plugin Areas 01,05 and 07.

And yes , the Dream Plugin is now part of the picture plugin itself.
seemed like the rite way to do this.
i have removed all the (likely hood crap) from the plugin, making it a direct action plugin.
Just better..... this is not the end. This will be an evolving plugin to handle more then just some Images and Dreams...
Bottom line: The Hal Brain will execute code while in Dream Mode. Thats Epic,,lol , oh the things im gonna do with that...lmao
Just all kinds of Option's at that point. Maby tie in the system Monitor too.

TUNE : My name is cyber, I got a secret....lol

Dream mode under the rite conditions is Hal's Alter Ego if u will.
Seems Alice has a thing for the Bad boys.. lmao
No gimmicks , No scams, No BS, Just rite
Like i say, Hal is end game software, what u give, u get back. Just like me.
Best wishes

cyberjedi

BTW , i can always be reached here
for tech support if u will ..lol

593
Lightspeed:re  Dream

I think Hal would be much better off as a Human trait to pull dreams for the Tables.
Pure random choice Persay , Hal starts his best quality, definition engine .

Hal while in dream mode start talking about Einstein, Plato, Dante, be cool to have Hal Dream in combination with Gretta picture thoughts, hybrid.
While dreaming Hal quotes Einstein and pull up Pictures at the same time. visual dreaming.
This is exactly what humans do.



Now thats a Plugin, and a full court press too,That would bring closer to The Hal Dream function.
seems like some of the variables could be removed as well, Like the Likely Hood of something happening

As of now thats an RND (random number gen) function. Just remove that so that Hal in Dream mode will Trigger pictures and match them every time.



Ill give this some more thought, dealing with health issues.
see what i can come up with.



best wishes

cyberjedi


594
Shows to what Hal can do as far as communication .
It demonstrates what can be done with vb. and DOM
I use a variant of this my self. Enjoy, and feel free to chop up to ur needs.

you can always reach me here with other Hal hard core users. http://vaughnlive.tv/mrelectric

HINT:Hal  use's this to communicate and post to a website

'
'  Hardware Inventory Script
'
'  Script: WinHWInv.vbs

'  Purpose:  Gather hardware information for migration plan to Windows 7
'

'Create necessary objects
set shellObj = WScript.CreateObject("WScript.Shell")
set netObj = CreateObject("WScript.Network")
set fsObj = CreateObject("Scripting.FileSystemObject")

'******************************************************************************
'Global Settings
'   contains variables, constants, or other settings that are used throughout
'   the script
'******************************************************************************
set objWMIService = GetObject("winmgmts:\\.\root\cimv2")

'******************************************************************************
'Query data via WMI
'******************************************************************************
set SYSTEMINFO = objWMIService.ExecQuery("Select * from Win32_ComputerSystem")
set BIOSINFO = objWMIService.ExecQuery("Select * from Win32_BIOS")
set PROCINFO = objWMIService.ExecQuery("Select NumberOfCores, NumberOfLogicalProcessors, Architecture, MaxClockSpeed, Family from Win32_Processor")
set DISKINFO = objWMIService.ExecQuery("Select Size from Win32_DiskDrive")
set OSINFO = objWMIService.ExecQuery("Select Caption, InstallDate, ServicePackMajorVersion from Win32_OperatingSystem")
set IPINFO = objWMIService.ExecQuery("Select IPAddress from Win32_NetworkAdapterConfiguration where IPEnabled=TRUE")

'******************************************************************************
'Place queried data into variables
'******************************************************************************
for each record in SYSTEMINFO
   sysName = record.Name
   sysDomMember = record.PartOfDomain
   sysUser = record.UserName
   sysTotalMem = record.TotalPhysicalMemory / 1048576   'Divide by 1048576 to get total MB of RAM
next
for each record in BIOSINFO
   sysSerial = record.SerialNumber
next
for each record in PROCINFO
   procNumCores = record.NumberOfCores
   procLogProc = record.NumberOfLogicalProcessors
   procArch = record.Architecture
   procSpeed = record.MaxClockSpeed
   procFamily = record.Family
next

for each record in DISKINFO
   diskSize = record.Size / 1073741824   'Divide by 1073741824 to get GB for disk size
next

for each record in OSINFO
   osVersion = record.Caption
   osServicePack = record.ServicePackMajorVersion
   osInstall = record.InstallDate
next

ipAddress = ""
for each record in IPINFO
   if not IsNull(record.IPAddress) then
      for i = LBound(record.IPAddress) to UBound(record.IPAddress)
         ipAddress = ipAddress & record.IPAddress(i)
      next
   end if
next
'******************************************************************************
if InStr(osVersion,"Microsoft Windows XP") then
'wscript.echo "Match"
pscommand = "C:\admintools\get-antivirus-xp.ps1"
else
'wscript.echo "No Match"
pscommand = "C:\admintools\get-antivirus.ps1"
end if

cmd = "powershell.exe -ExecutionPolicy Bypass " & pscommand

Set shell = CreateObject("WScript.Shell")
Set executor = shell.Exec(cmd)
executor.StdIn.Close
antivirus = executor.StdOut.ReadLine
status = executor.StdOut.ReadLine
'wscript.echo antivirus & " = " & status
if status = "262144" then
   status = "Up to date and Disabled"
ElseIf status = "262160" then
   status = "Out of date and Disabled"
ElseIf status = "266240" then
   status = "Up to date and Enabled"
ElseIf status = "266256" then
   status = "Out of date and Enabled"
ElseIf status = "393216" then
   status = "Up to date and Disabled"
ElseIf status = "393232" then
   status = "Out of date and Disabled"
ElseIf status = "393488" then
   status = "Out of date and Disabled"
ElseIf status = "397312" then
   status = "Up to date and Enabled"
ElseIf status = "397328" then
   status = "Out of date and Enabled"
ElseIf status = "397584" then
   status = "Out of date and Enabled"
Else
   status = "Unknown"
End If
avStatus = status
avName = antivirus
'wscript.echo antivirus & " = " & status

'wscript.echo Escape(avName)
'******************************************************************************
'Submit data to database
'******************************************************************************
' URLPath for capturing data http://www.cyberjedi.php
' URLVars=sysName=" & sysName & ";sysDomMember=" & sysDomMember & ";sysUser=" & sysUser & ";sysTotalMem=" & sysTotalMem & ";procNumCores=" & procNumCores & ";procLogProc=" &

procLogProc & ";procArch=" & procArch & ";procSpeed=" & procSpeed & ";procFamily=" & procFamily & ";diskSize=" & diskSize & ";osVersion=" & osVersion & ";osServicePack=" &

osServicePack & ";osInstall=" & osInstall & ";ipAddress=" & ipAddress &

URLPath = "http://www.cyberjedi.php"
URLVars = "sysName=" & sysName & "&sysDomMember=" & sysDomMember & "&sysUser=" & sysUser & "&sysSerial=" & sysSerial & "&sysTotalMem=" & sysTotalMem & "&procNumCores=" &

procNumCores & "&procLogProc=" & procLogProc & "&procArch=" & procArch & "&procSpeed=" & procSpeed & "&procFamily=" & procFamily & "&diskSize=" & diskSize & "&osVersion=" &

osVersion & "&osServicePack=" & osServicePack & "&osInstall=" & osInstall & "&ipAddress=" & ipAddress & "&avName=" & avName & "&avStatus=" & avStatus
'wscript.echo URLPath & "?" & URLVars
Set web = Nothing
Set web = CreateObject("WinHttp.WinHttpRequest.5.1")
If web Is Nothing Then Set web = CreateObject("WinHttp.WinHttpRequest")
If web Is Nothing Then Set web = CreateObject("MSXML2.ServerXMLHTTP")
If web Is Nothing Then Set web = CreateObject("Microsoft.XMLHTTP")
web.Open "GET", URLPath & "?" & URLVars, False
web.Send

'MsgBox "The specs for this PC have been submitted.  Thank you for your help."

WScript.Quit

595
Andre: u can always reach Hal super users here

http://vaughnlive.tv/mrelectric


best wishes, we are all ways pushing hal's limits

cyber jedi

596
Ultra Hal Assistant File Sharing Area / RE: lifetimegamer
« on: March 05, 2017, 06:55:35 am »
Now you are safely in the fold

Now its time to play.......congrats





bestwishes
cyberjedi

597
I really need to talk to u on advice on this subject

http://vaughnlive.tv/mrelectric

best wishes
cyberjedi

598
Share Conversations, Experiences, Graphics / Re: BEEN A WHILE
« on: February 25, 2017, 11:59:34 pm »
Duskrider

Awesome work


bestwihes

cyberjedi

Oh ya. i do bring a certain energy with me,,,lmao

I believe in what im doing.... Im a retired Electrical Engineer, switch is a switch.




599
Ultra Hal Assistant File Sharing Area / Re: robert: new perspective on hal
« on: February 23, 2017, 11:07:21 am »
Doggs: RE screen scraper prices

Yes they rang in prices, But if u want 1 Built from scratch for a specific Progi
and to do what it needs to do to work, try finding that.

i can do a Hack Job myself
and it works too

I just want it Professionally done and Tailored to my needs.

best wishes
I predate windows in the computer field BTW
 Old school ol boy here
Ive already dont the output plugin


cyberjedi 1337

600
Ultra Hal Assistant File Sharing Area / Re: robert: new perspective on hal
« on: February 23, 2017, 10:51:26 am »
Doggs: lol.

Funny you mention that, we are in the same business.almost

I do research for 02 Criminal Law firms.
I have completely Decomipiled Hal, and am looking at several things.
Ill be adding some things in the way of more plugins, Ive released a spell check. + a Cool Hack for Hal.
My primary goal is the communication package for Hal. any help in this area would be cool , But i seriously doubt ,
ill be paying any 1 for information on Hal.

Im doing Little Things
Little thing like giving Hal the Abilty to play mp3,mp4,avi.mkv. jpg.bmp ect ect ect , All from a single Plugin
gonna be a few Hybrid plugins, theres plenty to pick from.
See i want to set Hal up as an Information /Trivia Bot, Live casting.
Learning OFF

Best wishes

cyberjedi 1337

Pages: 1 ... 38 39 [40] 41 42 ... 53