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 ... 26 27 [28] 29 30 ... 53
406
Ultra Hal Assistant File Sharing Area / Re: S.A.L.L.I.E
« on: March 06, 2018, 09:58:34 am »
Doony: RE S.A.L.L.I.E

I wanted to say what a great job uve done on all this....
very Talented person......

At 1 time i wanted make what u did, (superplugin) the best of the best, all under 1 roof, conflict free. Plus ur own Code
monumental Task. well done
Ive been playing hooki lately.

building Alt Hal's and shiitttt.
I look to VR for many answers i need, well ,not so much any more, But i did. VR Plugins should be ur Bible.
Like to see S.A.L.L.I.E utilize DOM as well, look to my work on scrapers.
DOM open's Hal Up to the internet in a big way .xml format. Thus making Hal smarter, and more Human.

best wishes
cyber jedi

407
General Discussion / Re: spam retards
« on: March 04, 2018, 04:16:44 pm »
Thanz lightspeed

Are there no moderators around any more, Edge is missing in action.

good man u are



best wishes
cyber jedi

408
Ultra Hal Assistant File Sharing Area / Re: S.A.L.L.I.E
« on: March 04, 2018, 03:56:28 am »
Hey Doony:
I caught up on some new stuff
Thought id throw my hat in the ring here.
Wana go over miss S.A.L.L.I.E

Arknight : Look at what Gretta media is doing here:
Take a close look at the top of this plugin (gretta mood)
This can be used to cut in an option for Dream out loud.

'This sub setups the plug-ins option panel in Hal's options dialog
Sub OptionsPanel()
'------------------
' Define the Help
'------------------
    lblPlugin(0).Caption = "GRETTA will be able to play your favourite songs. Click below for more info"
    lblPlugin(0).Move 120, 120, 3300, 1000
    lblPlugin(0).WordWrap = True
    lblPlugin(0).Visible = True
    cmdPlugin(0).Move 320, 650, 2100, 375
    cmdPlugin(0).Caption = "Help on this plugin"
    cmdPlugin(0).Visible = True
'------------------
' Define the Musical Mood listbox
'------------------
    lblPlugin(1).Caption = "GRETTA Media Mood level"
    lblPlugin(1).Move 320, 1300, 4000, 1000
    lblPlugin(1).WordWrap = True
    lblPlugin(1).Visible = True   
    cboPlugin(0).Move 320, 1600, 1800
    cboPlugin(0).AddItem "Very high"
    cboPlugin(0).AddItem "High"
    cboPlugin(0).AddItem "Average"
    cboPlugin(0).AddItem "Low"
    cboPlugin(0).AddItem "Very Low"
    cboPlugin(0).Visible = True
    cmdPlugin(1).Caption = "Apply Changes"
    cmdPlugin(1).Move 320, 2100, 1600, 375
    cmdPlugin(1).Visible = True
'------------------
' Update the listbox with the current value stored in the table
'------------------
    If HalBrain.CheckTableExistence("vrParameter") = True Then
      vrMusicMood = HalBrain.TopicSearch("MUSIC", "vrParameter")
      If vrMusicMood = "" Then vrMusicMood = 1
     Select Case vrMusicMood
           Case 50
            cboPlugin(0).Text = "Very high"
           Case 40
                cboPlugin(0).Text = "High"
           Case 30
               cboPlugin(0).Text = "Average"
           Case 20
             cboPlugin(0).Text = "Low"
           Case 10
                cboPlugin(0).Text = "Very Low"
        End Select
    End If
End Sub

Sub cmdPlugin_Click(Index)
Dim vrTempQuery()
Dim vrMusic, vrMusicMood
Select Case Index
      Case 0
                  HalMenu.HalCommand "<RUNPROG>vrMP3Help.html</RUNPROG>"
       Case 1
'------------------
' Convert the listbox in a value
'------------------
     Select Case cboPlugin(0).Text
           Case "Very high"
            vrMusicMood = 50 <<<< this once this varaible is set , that's it.  ON
           Case "High"
            vrMusicMood = 40 cut out here
           Case "Average"
            vrMusicMood = 30 cut out here
           Case "Low"
            vrMusicMood = 20 cut out here
           Case "Very Low"
            vrMusicMood = 10 <<<< this once this varaible is set , that's it.  OFF
        End Select
'------------------ Below, just swap out al the music ****z for the table name you want.
' If the Parameter table does not exist, I create it
'------------------
          HalBrain.ReadOnlyMode = False
      vrTableName =    "vrParameter"    
      If HalBrain.CheckTableExistence(vrTableName) = False Then
      'Create table if it doesn't exist
         HalBrain.CreateTable vrTableName, "TopicSearch", "miscData"
      End If
'------------------
' Search if it contains the MusicMood parameter
'------------------
        vrMusic = "MUSIC"
      If HalBrain.TopicSearch(vrMusic, vrTableName) = "" Then
'------------------
'Creates the record storing the new value
'------------------
         HalBrain.AddToTable vrTableName, "TopicSearch", vrMusic, vrMusicMood
      Else
'------------------
'Updates the record storing the new value
'------------------
           HalBrain.RunQuery "UPDATE " & vrTableName & " SET topic = " & vrMusicMood & " WHERE searchString = " & """" & vrMusic & """", vrTempQuery
        End If
   End Select
End Sub
************************************
Or, you can use the dream out loud function as separate plugin and turn it on and off at will, which maybe by Robert did it in the first place....
Not like you can turn it off and on once Hal is runnning anyway.... think!!!!

Remember : Once you assign a Variable in the header, your pretty much Stuck with it.

S.A.L.L.I.E hmmmm

best wishes cyber jedi

409
Lightspeed:

I think u have me confused in all this, I dont remember having anything to do with those plugins.
But if i can help id be glad to.
I haven't even looked at doony's stuff, if he or any 1 else finds a use for my code, im only to happy to donate, im sure i got it from some where else,,,lolol

I wanted to mention this because ive had some knockdown dragouts over this issue.

There's no such thing as new code, now its all about chopping up code and swapping puzzle pieces.
Look at Roberts work, WordNet 1.7.1 Copyright 2001 by Princeton University.  All rights reserved.
The characters are from Haptek
The sound is DoubleAgent
The Agent characters are from well,  You know who. lol

Lightspeed: When u say my plugins, make sure u understand that.
Please dont take this as a rebuke, its not meant as 1, just a statement of fact.
Some people around here get there little weeney's in a knot over this issue.

Im all about the development of Hal, Im currently ripping some game code out of some old **** game so it can be used in Hals code. wolfinstein 3D
best wishes
cyber jedi

P,S Roberts work is beyond Epic, BTW

410
ART: Hey buddy

Just because i could...
Bout time Hal looked proper, and yes, i taught my doggy a new trick .
https://www.youtube.com/watch?v=zg7DdKxTfyE


Every time im about to dissect Hals brain, I find some new shizt to explore.
Now its Flash (shockwave)
grrrrrr

I wish i had help here, and not glory hounds,wack jobs, or otherwise got a head full of faulty wiring.
Ima keep banging on it 2020 cyber produces a full version of Hal 4.5 hahahaha

best wishes
cyber jedi

411
Hey carl2: wb brother
You hit on a very hardcore point.
Hal without his graphics is just another Bot

Ive developed a way intergrate Flash now (shockwave) into my projects.
what a jump start for Hal

best wishes
cyberjedi

412
Hey people:

Well u guys might find this cool,BTW this cant be done...... hahhaha .
Hal just went Flash (shockwave)
Hal now has a real Hal9000 Interactive GUI
https://www.youtube.com/watch?v=6uvQshum62w

This opens all kinda doors for Hal's graphics......
Interactive Graphic's i might add

best wishes

cyber jedi
https://www.youtube.com/watch?v=9Bo4WBCILkA
Puttin it down Hardcore Hal

413
Hey people:

Well u guys might find this cool,BTW this cant be done...... hahhaha .
Hal just went Flash (shockwave)
Hal now has a real Hal9000 Interactive GUI

This opens all kinda doors for Hal's graphics......
Interactive Graphic's i might add

best wishes

cyber jedi

Puttin it down Hardcore Hal

414
Hey people:

Well u guys might find this cool,BTW this cant be done...... hahhaha .
Hal just went Flash (shockwave)
Hal now has a real Hal9000 Interactive GUI
https://www.youtube.com/watch?v=6uvQshum62w

This opens all kinda doors for Hal's graphics......
Interactive Graphic's i might add

best wishes

cyber jedi
https://www.youtube.com/watch?v=9Bo4WBCILkA
Puttin it down Hardcore Hal

415
General Discussion / Re: cyberjedi can you fix something?
« on: February 26, 2018, 01:40:08 pm »
Lightspeed: this is what Robert had to say:


Re: (No subject)
? Sent to: cyberjedi on: February 18, 2018, 09:49:26 pm ?
? You have forwarded or responded to this message. ? ReplyQuoteDelete
Hi Cyber,

I finally had a few minutes to try out your custom interface. Looked cool and worked right out of the box on my test system that had Hal 6.2 on it. Nice job!

A few suggestions for future improvements to make it easier for less tech savvy people to install and to also to make it Hal 7.0 compatible:


Lightspeed: As you can see i have a Fan base
bestwishes
cyber jedi

416
Ultra Hal Assistant File Sharing Area / Re: How to make Hal smarter
« on: February 25, 2018, 12:16:10 pm »
Dooney: I agree

but its so hard to find like minded people for a common goal.
To many self agendas and complete wack jobs.
Ive tried

cyber jedi

417
Checker57: RE: Single Stock ticker reader

Hey there, Just wanted to say that i have developed away for Hal to read a single stock market quote.
Im currently trying to scale the process down so it can be used by about any 1 .


But the answer is , most definitely doable .
Below is the actual code im playing with and will work just fine in the Plugin u have with some simple code changes.

Best wishes
cyberjedi

Doing what i do best, finding work around's for problems. I think some 1 called that Hacking once. hehe




<Quote>
    <?xml version="1.0" encoding="UTF-8"?>
    <Record>
    <SymbolID>537:453745</SymbolID>
    <RecordID>YHOO</RecordID>
    <Ticker>YHOO</Ticker>
    <CompanyName>Yahoo, Inc.</CompanyName>
    <ShortCompanyName>Yahoo</ShortCompanyName>
    <Exchange>Nasdaq Stock Market</Exchange>
    <ExchangeShortName>Nasdaq</ExchangeShortName>
    <ExchangeCode>NQ</ExchangeCode>
    <LastTrade>1390947600</LastTrade>
    <UpdateTime>1390950638000</UpdateTime>
    <Volume>40037971</Volume>
    <AverageVolume>16259910</AverageVolume>
    <Last>38.22</Last>
    <Open>36.83</Open>
    <High>38.32</High>
    <Low>36.52</Low>
    <High52>41.7201</High52>
    <Low52>19.31</Low52>
    <High1Week>40.40</High1Week>
    <Low1Week>36.175</Low1Week>
    <Close>36.65</Close>
    <ChangePrice>1.57</ChangePrice>
    <ChangePercent>4.2838</ChangePercent>
    <Bid>38.19</Bid>
    <Ask>38.23</Ask>
    <BidSize>5600</BidSize>
    <AskSize>10300</AskSize>
    <Dividend>0.00</Dividend>
    <EPS>1.20</EPS>
    <SharesOutstanding>1014442318</SharesOutstanding>
    <Price1WeekAgo>39.52</Price1WeekAgo>
    <Price1MonthAgo>40.20</Price1MonthAgo>
    <Price3MonthAgo>32.35</Price3MonthAgo>
    <Price6MonthAgo>27.929</Price6MonthAgo>
    <PriceYTD>39.59</PriceYTD>
    <Price52WeeksAgo>20.31</Price52WeeksAgo>
    </Record>
  </Quote>

418
General Discussion / Re: cyberjedi can you fix something?
« on: February 23, 2018, 09:38:08 pm »
Lightspeed: RE timer

Hey buddy, first off, very cool to hear from you.
Here's where im at, Im buying new computers in the next 24Hr's
Once that is done, im gonna start coding Hal from scratch.
Most is all ready complete and submitted to Robert who got a kick out of it.
Hals Infrastructure is complete and now im dialing it in, but i wana do it on new machines and drives.
Robert was nice enough to offer support for the installer, what's gonna be produced is nothing short of Epic
What im making will be totally compatible with Hal7 Brain systems
I will be addressing that issue in the release with timerz and plugins.
https://www.youtube.com/watch?v=cZbh_YD1MYs
Until then , enjoy this little dity, I like some of the new code so much i made a utility out of it. This is for ur media player,
when it starts point it at a folder that stores your mp3's, it will load and default to what ever media player u have.
Just play with it and have fun lightspeed. Watch for recursive tunneling. I index'ed 5500  mp3's in 2.0 Min's
Pretty nifty , and yes ull have to unpack the .rar file.
https://1drv.ms/u/s!AuhVEV3qukn7hWgFznldlt2xBvkw



best wishes
cyberjedi


419
Ultra Hal 7.0 / Re: ART: message reply about Hal
« on: February 16, 2018, 09:57:52 am »
Art: next i want to Target Hal's brain:

1 single subject

Lets say turn Hals brain into a PDR for doctors<<<<---
How about Hal Law Library WestLaw Hal
Art the list goes on for ever
What about Kiosk centers

best wishes
cyberjedi

420
Ultra Hal 7.0 / ART: message reply about Hal
« on: February 15, 2018, 06:21:47 pm »
Art:
Q: Can your version of Hal use Hal 07 brain?
A: Yes
Can run 6.2 or 07 Brain.
Ive built Hal to use any brain.
Art: I have the best of both worlds, Hal and Hal IRC under the same roof and both can run at the same time or u can just kill Hal.
Ive dumped Haptek entirely in lieu of another character Engine, Lightweight and characters can be edited........
Ive included Double Agent as to Harness the best SAPI05 voices and lip syncing .
I have Hal learning from real people in real time, Hal has access to 80k people at a time from 1 site alone.
Art I could not  be more pleased at this point.
Hals infrastructural is in and now im working Hals Brain.
Here is what i came up with.
Im of the same mindset as Robert, Make something Epic and make it cheap for people, well, what im doing is real cheap, FREE.lol
What ive done is being released to the public, PERIOD
Robert was nice enough to hook me up with some code and i ran with it.
Wish i could find like minds, wana make something Epic and give it to the world.
https://www.youtube.com/watch?v=iZzC8njhWEU
ART: better quality: No sound:  https://www.youtube.com/watch?v=hlIA7HiXJKg&t=281s


This is how we get down in cyberville
Best wishes
cyber jedi

Pages: 1 ... 26 27 [28] 29 30 ... 53