#hazzy | Logs for 2018-08-22
Back
[00:08:37] <Lcvette[m]> i just was looking over and toolchange.ngc is very well documents, probably better and easier to follow than i could write it myself i think because it shows the other sub calls for various situations
[00:46:00] * hazzy-lab is playing with:
STATUS.tool_in_spindle.connect(self.on_tool_in_spindle)
STATUS.pocket_prepped.connect(self.on_pocket_prepped)
[00:46:22] <Lcvette[m]> whats that?
[00:46:23] <Lcvette[m]> you did it?
[00:46:45] <hazzy-lab> the pocket_prepped seems to be emitted early in the toolchange
[00:46:50] <hazzy-lab> no :(
[00:47:04] <Lcvette[m]> pocket prepped?
[00:47:53] <hazzy-lab> not sure when the pocket is prepped, but I assume that is when the tool changer has rotated into pos
[00:49:52] <Lcvette[m]> #120
[00:50:05] <Lcvette[m]> line 23 in toolchange.ngc it appears
[00:50:08] <Lcvette[m]> very early
[00:54:01] <Lcvette[m]> actually it looks like line 77
[00:54:43] -RSSBot[turbosssp:#hazzy- Hazzy activity posted a new article: Kurt Jacobson pushed to project branch DynAtc at Hazzy / QtPyVCP ( https://gitlab.com )
[00:54:48] <Lcvette[m]> M10 P#<next_pocket> ;set the carousel to move to the right pocket for the selected too
[00:55:57] <hazzy-lab> yeah, it must be one of those two
[00:56:15] <hazzy-lab> still don't understand how it all goes together :D
[00:56:25] <Lcvette[m]> i do
[00:56:28] <Lcvette[m]> ask questions
[00:56:32] <Lcvette[m]> for the most part
[00:57:02] <Lcvette[m]> the M## are commands to either call other subs or are actual mcommands
[00:57:18] <Lcvette[m]> like M10 is calling the M10 subroutine
[00:57:19] <hazzy-lab> I mean deeper in LCNC, like how does the prepped pocked get back into the status channel?
[00:57:46] <Lcvette[m]> from the variable table
[00:58:01] <Lcvette[m]> has to be because all this does is write to and pull from the variable table
[00:58:45] <Lcvette[m]> for instance, look at line 88
[00:59:49] <Lcvette[m]> sorry, look at line 91
[01:00:26] <Lcvette[m]> #5210 = #100, #100 = #<selected_tool>
[01:01:03] <Lcvette[m]> #5210 = T# you entered during the M6 command
[01:02:43] * TurBoss goes to bed
[01:02:47] <TurBoss> night
[01:03:08] <Lcvette[m]> night turboss!
[01:03:14] <hazzy-lab> tooltable looks good!
[01:03:15] <hazzy-lab> gn8
[01:03:18] <Lcvette[m]> awesome work doood!
[01:03:22] <Lcvette[m]> xD
[01:04:46] <Lcvette[m]> than again at the botom of the toolchange.ngc it has the M61 Q#100
[01:05:12] <Lcvette[m]> this is to remember that the tool in the spindle is the tool number after a power cycle
[01:05:22] <Lcvette[m]> so that status has to come from the var table
[01:05:24] <Lcvette[m]> ?
[01:05:26] <Lcvette[m]> right?
[01:05:43] <Lcvette[m]> or am i understanding it wrong?
[01:08:44] <hazzy-lab> yes, you are basically right I think, but the var file is just used to store the values at shutdown so they can be reloaded, it is not kept up to date with the current values
[01:11:08] <Lcvette[m]> it is
[01:11:25] <Lcvette[m]> the var table is the pocket numbers
[01:11:43] <Lcvette[m]> they are listed in the beginning of the toolchange.ngc file
[01:12:17] <hazzy-lab> oh yes, the parameters are written in real time
[01:12:50] <Lcvette[m]> im right?
[01:12:57] <Lcvette[m]> Hurray!
[01:12:59] <Lcvette[m]> lol
[01:13:31] <hazzy-lab> I think we are talking about diffident things, lol
[01:16:43] <Lcvette[m]> probably
[01:17:37] <Lcvette[m]> the var table is the only place those values could be stored
[01:18:06] <hazzy-lab> you mean the var file?
[01:18:15] <Lcvette[m]> yes
[01:18:27] <Lcvette[m]> where else?
[01:18:42] <hazzy-lab> they are stored in memory, and when LCNC shutdown they are written to the var file
[01:19:27] <Lcvette[m]> ok, except that everytime a tool change happens that var file is changed
[01:19:49] <hazzy-lab> it is? interesting!
[01:19:57] <Lcvette[m]> it clearly shows it writing to the var numbers
[01:20:09] <Lcvette[m]> are you not looking at the ngc files?
[01:20:35] <hazzy-lab> I am looking at the ngc file
[01:21:08] <hazzy-lab> but setting a var to a value does not change the var file
[01:21:17] <hazzy-lab> but that is not really important here
[01:21:42] <Lcvette[m]> ok
[01:22:25] <Lcvette[m]> they use your math method
[01:22:34] <hazzy-lab> I saw!!!!
[01:22:47] <hazzy-lab> ##25
[01:23:36] * Lcvette[m] sent a long message: < https://matrix.org >
[01:24:12] <hazzy-lab> yep, it is very convenient!
[01:24:44] <Lcvette[m]> so what are you looking for?
[01:24:52] <Lcvette[m]> cause im not understanding
[01:25:10] <hazzy-lab> neither am I, lol
[01:25:36] <Lcvette[m]> now we know which pocket the next tool is sitting in
[01:25:37] <Lcvette[m]> ;we need to know if we need to put a tool away
[01:25:38] <Lcvette[m]> ;or if there is not tool in the spindle
[01:25:47] <hazzy-lab> all we need to know is the tool that is currently in the spindle, and the tool that is about to be loaded
[01:25:52] <Lcvette[m]> somehow it says we know the next pocket now
[01:26:25] <hazzy-lab> yes, not sure how all the logic works
[01:26:37] <hazzy-lab> I need to make a toolchanger so I can watch it :D
[01:27:00] <Lcvette[m]> #5210 is tool in spindle
[01:27:29] <Lcvette[m]> #100 in the sub
[01:28:20] <Lcvette[m]> #110 is rewuested tool
[01:28:33] <hazzy-lab> perfect
[01:28:46] <hazzy-lab> so all we need to do it get those exposed to the atc widget
[01:29:10] <hazzy-lab> I think that pocket prepped might be the right thing
[01:29:16] * Lcvette[m] sent a long message: < https://matrix.org >
[01:29:45] <hazzy-lab> the big problem is that we don't have assess to any of the parameters from python :(
[01:29:54] <hazzy-lab> access*
[01:30:47] <Lcvette[m]> not unless you have pathpilot
[01:30:48] <Lcvette[m]> lol
[01:30:58] <Lcvette[m]> they probably have this somewhere
[01:31:38] -!- hazzy-lab has quit [Read error: Connection reset by peer]
[01:31:40] <Lcvette[m]> i watched the video of their atc and it appears to be identical
[01:32:16] <Lcvette[m]> i mean the buttons used compared to the m commands i know
[01:33:57] -!- hazzy-lab has joined #hazzy
[01:33:57] -!- mode/#hazzy [+o hazzy-lab] by ChanServ
[01:47:58] <hazzy-lab> the new VCP launcher is going to be awesome!
[01:48:07] <hazzy-lab> ok, time to sleep
[01:48:26] <hazzy-lab> Lcvette[m]: Goodnight man!!
[01:49:23] <Lcvette[m]> Night Hazzy!
[01:49:29] <Lcvette[m]> I can't wait!
[02:00:54] <hazzy-lab> I can't either, lol
[02:01:00] <hazzy-lab> I'm still working on it
[02:02:29] -!- hazzy-lab1 has joined #hazzy
[02:02:29] -!- mode/#hazzy [+o hazzy-lab1] by ChanServ
[02:03:02] <hazzy-lab1> There are going to be a lot of changes, but I think it will be much better
[02:04:05] <hazzy-lab1> instead of having to do hacks like using singletons and stuff we will have a proper Qt application
[02:05:56] -!- hazzy-lab has quit [Ping timeout: 276 seconds]
[02:05:57] hazzy-lab1 is now known as hazzy-lab
[07:22:30] -!- rudy has joined #hazzy
[07:22:53] rudy is now known as Guest28423
[07:24:31] -!- Guest28423 has quit [Client Quit]
[07:34:15] <jschi[m]> hazzy-lab: it looks like the M6 next tool number is deposited in iocontrol.0.tool-prep-number - am I missing context here?
[09:28:38] <Lcvette[m]> morning
[09:33:06] * Lcvette[m] posted a file: XK7130_INCH.tar (950KB) < https://matrix.org >
[09:33:15] <Lcvette[m]> Jeff, not sure if you have it or not, but this is a complete copy of my config file
[09:33:22] <jschi[m]> k, thx - I'm on lurk mode most of the day here - but will checkout
[09:33:25] * Lcvette[m] uploaded an image: image.png (30KB) < https://matrix.org >
[09:33:50] <Lcvette[m]> your comment got me thinking i know there were some commented out statements under the manual toolchange area
[09:34:01] <Lcvette[m]> wonder if this has anything to do with Hazzy's questions
[09:35:08] <jschi[m]> Yeah, I briefly looks at the iocontrol code in lcnc this am and it does look like the 'next tool' lookahead drops the 'next tool' numbe into iocontrol.0.tool-prep-number - should be easy to verify with halscope or such
[09:36:10] <Lcvette[m]> wpwould it still do so if it is commented out like here?
[09:36:24] <Lcvette[m]> line 500?
[09:36:59] <jschi[m]> The iocontrol prep number should be there even if you don't map it to something else - so yes afaik
[09:37:06] <Lcvette[m]> ok
[09:37:51] <jschi[m]> there are conditions that preclude lcnc from determining the next tool number - I can find the relevant part of the doc
[09:39:17] <Lcvette[m]> http://linuxcnc.org
[09:41:46] <Lcvette[m]> i suspedt this is what Hazzy was looking for
[09:42:00] <Lcvette[m]> hazzy-lab: are you up yet?
[09:49:03] <jschi[m]> Lcvette: would you mind sharing your g0704 configs with me? doing some redecorating in antiicpation of my Y522 upgrade
[09:49:25] -!- Erikcnc[m] has joined #hazzy
[09:51:56] -!- erikcnc2 has joined #hazzy
[09:52:08] <erikcnc2> http://linuxcnc.org
[09:52:26] <Lcvette[m]> sure but i doubt they would help, the G0704 is still running mach3
[09:52:27] <Lcvette[m]> lol
[09:53:09] <jschi[m]> ah
[09:53:12] <erikcnc2> Where do i add spindle soft start? In costom hall?
[09:53:49] -!- Erikcnc[m] has quit [Ping timeout: 244 seconds]
[09:54:38] <jschi[m]> Lcvette: what vfd do you have on your G0704?
[09:56:19] <Lcvette[m]> erikcnc2: not sure what you mean by softstart
[09:56:45] <Lcvette[m]> jschi: i run a Durapulse GS3 22P0 from Automation Direct
[09:56:51] <Lcvette[m]> erikcnc2: erik motor start and stop is genberally habndled in the vfd
[09:57:15] <Lcvette[m]> for accelerationdeceleration characteristics
[09:58:12] <Lcvette[m]> and then you would normall build any required delay into your post processor for spindle ramp up time
[09:58:45] <Lcvette[m]> or use an encoder and the at speed functions
[09:58:49] <Lcvette[m]> in lcnc
[09:59:20] <erikcnc2> If the spindle has a encoder, is ridgid tapping posible?
[10:00:24] <Lcvette[m]> yes
[10:00:47] <Lcvette[m]> but the encoder needs to be a real encoder
[10:00:56] <erikcnc2> Oh....
[10:00:57] <Lcvette[m]> not a single pulse per revolution
[10:01:16] <erikcnc2> Goh like 60 holes.
[10:01:21] <Lcvette[m]> for rigid tapping it needs alot more feedback than lathe threading
[10:01:45] <Lcvette[m]> mmmm... i would not want to rigid tap with such a low pulse count
[10:01:52] <erikcnc2> Are there encoders that can handle 9k rpm?
[10:02:07] <Lcvette[m]> sure
[10:02:14] <Lcvette[m]> but anything over 6k gets very expensive
[10:02:43] <erikcnc2> Indeed
[10:02:43] <Lcvette[m]> the read rate of the encoder is what becomes the issue
[10:03:15] <Lcvette[m]> you are running a servo are you not?
[10:06:53] <Lcvette[m]> jschi: what VFD are youn running?
[10:07:52] <jschi[m]> I have the max y522 teed up for install after I get the shop running again - currently have a hyuang in a box but thinking of switching to the automation direct - why did you go with the GS3 vs GS2?
[10:08:48] <Lcvette[m]> good question
[10:08:48] <jschi[m]> b/c of the vector control?
[10:08:52] <Lcvette[m]> yes
[10:09:51] <Lcvette[m]> i got a smokin deal on a maxplus that came with the encoder
[10:10:02] <Lcvette[m]> same motor as the Y522 but with the encoder on the back
[10:10:15] <Lcvette[m]> and i wanted to be able toi run it in true vector feedbackmode
[10:10:27] <Lcvette[m]> with the addition of the feedback control card
[10:11:12] <Lcvette[m]> if you have the hyuang, make sure its the sensorless vector model
[10:12:11] <Lcvette[m]> you WANT sensorless vectopr control to take advantage of that wonderful 1000:1 constant torque rating and give you that deep low rpm torque right off dead stop
[10:12:41] <Lcvette[m]> not all the hyuang are sensorless vector type
[10:12:52] <Lcvette[m]> the cheaper ones aren't
[10:15:31] <erikcnc2> [16:03] (Lcvette[m]) you are running a servo are you not?
[10:15:31] <erikcnc2> : yes...but does max 4800. With multi v belt to 9000rpm
[10:16:10] <Lcvette[m]> what size servo?
[10:16:32] <erikcnc2> Nema size?
[10:16:51] <erikcnc2> 34 i think
[10:19:31] <Lcvette[m]> po0wer size
[10:19:38] <Lcvette[m]> power*
[10:24:03] <erikcnc2> 1.54kw
[10:24:20] <erikcnc2> 220volts (eu)
[10:24:26] <jschi[m]> Lcvette: so do you have the y538? iso the y522? I don't see any provision for encoders on the micromax motor
[10:25:59] <Lcvette[m]> https://www.automationdirect.com(0.25_-_300HP)/AC_Motors_-_Inverter_Duty,_Marathon_(0.25_-_100HP)/Marathon_MAX_Plus_w-z-_Encoder_(0.5HP_to_5HP)/Y284
[10:26:04] <Lcvette[m]> Y284
[10:26:11] <Lcvette[m]> I also have a Y522
[10:26:30] <Lcvette[m]> they are virtually identical except for the backplate which is encoder compatible
[10:27:47] <Lcvette[m]> i caught a smoking deal from dealers electric on the Y284's they had them for $258 about 3 years ago
[10:28:00] <jschi[m]> yikes, thats awesome
[10:28:13] <Lcvette[m]> yeah, i should have bought all of them..lol
[10:28:29] <Lcvette[m]> they had like 30
[10:28:57] <Lcvette[m]> made kits
[10:29:11] <jschi[m]> crazy - yeah, that's where I got my 522 - ok, will research the VFD specs
[10:29:32] <Lcvette[m]> you don't really need the encoder on the motor
[10:29:54] <Lcvette[m]> the 1000:1 CT is going to give you plenty of stability at all rpmranges
[10:30:12] <Lcvette[m]> but you 100% must have sensorless vector control to take advantage of it
[10:30:39] <jschi[m]> kk, thx for the tip - will make it so
[10:30:46] <Lcvette[m]> :)
[10:33:21] <Lcvette[m]> hazzy-lab: beep beep beep beep beep wake up alarm..lol
[10:38:26] <Lcvette[m]> putting this here because i think this is what you were searching for last night maybe!
[10:38:32] <Lcvette[m]> http://linuxcnc.org
[10:38:54] <Lcvette[m]> read to the bottom from the start point, has LOTS of great info on the REMAP and py stuff
[11:04:28] <hazzy-lab> morning!
[11:04:46] <hazzy-lab> been taking care of some stuff around here
[11:19:07] <hazzy-lab> jschi[m]: Thank you, so the python interface exposes pocket_prepped, which might be the same as iocontrol.0.tool-prep-number, I need set up some HAL watches and some py interface prints and see how everything relates
[11:19:21] <hazzy-lab> Lcvette[m]: yes, that is helpful!
[11:19:47] <jschi[m]> :-/ adding value as a lurker
[11:28:50] <Lcvette[m]> nice!!!
[12:13:29] <Lcvette[m]> quick question for you guys on QGroup Boxes
[12:14:02] <Lcvette[m]> the title bar, it kinda makes placing the QGroupboxes a bit difficult, is there a way to remove the titel bar through stylesheet?
[12:14:51] <Lcvette[m]> i see it can be accessed using the QGroupBox::title entry
[12:15:00] <Lcvette[m]> but not sure what i would put to nuke it beyond that
[12:19:03] <hazzy-lab> Don't use a QGroupBox :P
[12:19:26] <hazzy-lab> I QFrame should be exactly what you want
[12:20:22] <Lcvette[m]> what would i use in its stead?
[12:20:25] <Lcvette[m]> Qframe doesn't seem to have the binding characteristics a groupbox does
[12:20:26] <Lcvette[m]> i tried it
[12:20:30] <hazzy-m> matrix is being SLOOOOW
[12:20:46] <hazzy-m> what do you mean by the binding characteristics?
[12:21:10] <hazzy-m> It should be basicaly the same expect for not haing the title
[12:21:54] <Lcvette[m]> i will try it again
[12:23:51] <Lcvette[m]> well i'll be damned
[12:24:10] <Lcvette[m]> i swear i tried it very early on and it worked differently
[12:24:15] <Lcvette[m]> i was very new to it all though
[12:26:03] <Lcvette[m]> ok have my work cut out transferring lots of things from Gboxes to Frames
[12:26:06] <Lcvette[m]> but will be better
[12:26:13] <hazzy-lab> Excellent!
[12:27:19] <hazzy-lab> You could also just edit the ui file by hand, it might be easier, just change all mentions of QGroupBoxes to QFrames, you could use replace all
[12:27:34] <hazzy-lab> thin you would not have to do as much grunt work in designer
[12:27:52] <Lcvette[m]> yeah?
[12:28:23] <Lcvette[m]> sounds lie major breakage
[12:28:24] <Lcvette[m]> lol
[12:28:27] <Lcvette[m]> i will try
[12:28:41] <Lcvette[m]> i will make a copy of the file first
[12:33:35] <Lcvette[m]> will it automatically change the style sheet from QGroupBox to Qframe too?
[12:34:08] <Lcvette[m]> yes answered my own question
[12:34:13] <Lcvette[m]> lol see it in the code
[12:40:21] * Lcvette[m] sent a long message: < https://matrix.org >
[12:52:17] <Lcvette[m]> hazzy-lab: breakage
[12:52:58] <hazzy-lab> great!
[12:53:33] <hazzy-lab> just delete the <property> title </property> bits from the QFrames
[12:53:53] <hazzy-lab> and you should be done
[12:54:04] <Lcvette[m]> so delete line 23?
[12:54:50] <hazzy-lab> and the opening <property> and closing </property> tags
[12:55:16] <Lcvette[m]> so 23-26 for example?
[12:55:19] <hazzy-lab> which are before and after the title property
[12:55:24] <Lcvette[m]> for the first error?
[12:55:26] <hazzy-lab> yes
[12:55:38] <Lcvette[m]> ok
[12:55:39] <Lcvette[m]> code-fu?
[12:56:08] <hazzy-lab> yes
[12:56:09] <hazzy-lab> lol
[12:56:31] <Lcvette[m]> ok, when i delete, some of the indentions are changing?
[12:56:52] <hazzy-lab> hmm, they should not be
[12:56:54] <Lcvette[m]> just make sure that property type lines up with the same of its kind above and below?
[12:57:02] <hazzy-lab> yes
[12:57:10] <Lcvette[m]> ok
[12:57:11] <Lcvette[m]> code-fu
[12:57:12] <Lcvette[m]> lol
[12:57:13] <Lcvette[m]> waaaa
[12:57:44] <hazzy-lab> for example, just delete
[12:57:49] <hazzy-lab> <property name="title">
[12:57:49] <hazzy-lab> <string>File</string>
[12:57:49] <hazzy-lab> </property>
[12:58:50] * Lcvette[m] uploaded an image: image.png (43KB) < https://matrix.org >
[12:58:51] <Lcvette[m]> post deletion
[13:03:05] <hazzy-lab> looks good!
[13:05:09] * Lcvette[m] sent a long message: < https://matrix.org >
[13:07:12] <Lcvette[m]> did i miss something?
[13:07:16] <Lcvette[m]> it got smaller
[13:07:26] <Lcvette[m]> but still yelling about line 23?
[13:07:56] <hazzy-lab> oops, you either deleted too much or not enough
[13:08:15] <Lcvette[m]> lol
[13:08:31] * Lcvette[m] sent a long message: < https://matrix.org >
[13:08:40] <Lcvette[m]> thats what i deleted
[13:08:44] <hazzy-lab> aha!
[13:09:00] <hazzy-lab> the font property is missing its closing tag
[13:09:27] <hazzy-lab> add </property> right after </font> on line 23
[13:09:34] <hazzy-lab> right below
[13:09:46] <hazzy-lab> yes
[13:09:55] <hazzy-lab> you should only have deleted
[13:09:58] <hazzy-lab> <property name="windowTitle">
[13:09:58] <hazzy-lab> <string>QtPyVCP</string>
[13:09:58] <hazzy-lab> </property>
[13:11:38] <Lcvette[m]> ah.. fixing
[13:13:27] <Lcvette[m]> totally fu'd it
[13:13:37] <Lcvette[m]> thank you for that!!!
[13:13:41] <Lcvette[m]> that saved me many hours
[13:14:55] <hazzy-lab> hurray!
[13:15:07] <Lcvette[m]> Hurray!!!!
[13:15:09] <Lcvette[m]> :D
[13:15:14] <hazzy-lab> some times you gotta live the text editor :D
[13:15:21] <hazzy-lab> love*
[13:15:22] <hazzy-lab> lol
[13:15:43] <Lcvette[m]> indeed
[13:16:49] <Lcvette[m]> so, for the file page and settings page
[13:16:55] <Lcvette[m]> status page etc
[13:17:10] <Lcvette[m]> im not sure what to do
[13:17:11] <Lcvette[m]> :(
[13:18:11] <Lcvette[m]> i found a glimpse of the file page on youtube
[13:18:15] <Lcvette[m]> from pathpilot
[13:18:27] <Lcvette[m]> but wanted to ask you first because im not sure if it will be like it or not
[13:19:02] <hazzy-lab> I kinda like the PP file page, but do what you think it best and we will make it happen!
[13:22:48] * Lcvette[m] uploaded an image: file_screen.png (1080KB) < https://matrix.org >
[13:23:08] <Lcvette[m]> yeah that looks fine i just wasnt sure if thats what you had in mind
[13:23:42] <Lcvette[m]> are those just tables?
[13:27:31] -!- logs has joined #hazzy
[13:30:35] <Lcvette[m]> anybody?
[13:31:32] <hazzy-lab> they are just tables
[13:31:38] -!- mode/#hazzy [+o logs] by ChanServ
[13:31:46] <Lcvette[m]> ok
[13:32:14] <Lcvette[m]> gonna need to be built outside again and brought in like the tool table?
[13:32:25] <hazzy-lab> yes
[13:32:40] <Lcvette[m]> kk
[13:32:55] <hazzy-lab> but go ahead and work on laying it out
[13:34:10] <Lcvette[m]> i will
[13:36:26] <jschi[m]> hazzy-lab: I have some time opening up tomorrow - was going to finish the increment parsing code and some sample styling - what's the next best thing to focus on?
[13:41:48] <Lcvette[m]> hazzy-lab: also real quick, still have group boxes for some reason in the designer?
[13:42:09] <Lcvette[m]> is that normal after changing the xyz.ui file?
[13:42:21] <Lcvette[m]> oh wait
[13:42:26] <Lcvette[m]> nevermind
[13:42:27] <hazzy-lab> jschi[m]: something we need are max vel and jog rate sliders, those should be pretty easy to do, basically the same as the override sliders
[13:42:42] <hazzy-lab> Lcvette[m]: You have to reload the designer
[13:43:00] <hazzy-lab> don't save, or you will loose you changes to the UI file
[13:43:45] <Lcvette[m]> no i copied my afety file over and deleted the 3 lines but forgot to find and replace QGrouBox with QFrame
[13:43:45] <Lcvette[m]> hahahaha
[13:43:50] <Lcvette[m]> duh...
[13:45:12] <jschi[m]> hazzy-lab: kk - will do, more tomorrow
[13:45:52] <hazzy-lab> jschi[m]: Excellent! I am revamping the entry points adding proper setup.py files, hopefully that will be done in not too long
[13:50:54] <Lcvette[m]> whats that?
[13:51:26] <hazzy-lab> making it easy to install QtPyVCP
[13:51:46] <Lcvette[m]> nice
[13:52:07] <Lcvette[m]> ok i got lots of errors again now
[13:52:07] <Lcvette[m]> lol
[13:52:13] * Lcvette[m] sent a long message: < https://matrix.org >
[13:54:16] <hazzy-lab> same as before, just delete the title property
[13:54:31] <Lcvette[m]> i did
[13:54:47] <Lcvette[m]> this is after that
[14:07:28] <Lcvette[m]> ok, figured it out
[14:07:32] <Lcvette[m]> had to do it for ALL the titles
[14:07:41] <hazzy-lab> yes
[14:07:44] <Lcvette[m]> but i ended up doing it for some i probably shouldn't have and broke some things
[14:07:45] <Lcvette[m]> lol
[14:07:56] <hazzy-lab> each groupbox has it own title
[14:08:19] <hazzy-lab> oops
[14:08:20] <hazzy-lab> lol
[14:08:36] <hazzy-lab> You can always add the tiles back in designer
[14:16:04] -!- ChanServ has quit [*.net *.split]
[14:22:07] -!- ChanServ has joined #hazzy
[14:22:07] -!- mode/#hazzy [+o ChanServ] by sinisalo.freenode.net
[14:24:26] <Lcvette[m]> nickserve invited me
[14:24:26] <Lcvette[m]> is it a virus?
[14:24:57] * Lcvette[m] uploaded an image: image.png (47KB) < https://matrix.org >
[14:25:29] <Lcvette[m]> hazzy-lab: ?
[14:35:26] <Lcvette[m]> i guess i got booted from linuxcnc
[14:41:20] <hazzy-lab> opps
[14:41:27] <hazzy-lab> yeah, that is fine
[14:41:34] <hazzy-lab> you must have lost connectin
[14:42:08] <hazzy-lab> they just performed some maintenance on some of the IRC servers
[14:42:23] <Lcvette[m]> i dunno
[14:42:43] <Lcvette[m]> it said my name was already registered
[14:42:44] <Lcvette[m]> and to choose another one
[14:42:44] <Lcvette[m]> ?
[14:42:59] <hazzy-lab> that is fine
[14:43:07] <Lcvette[m]> maybe they registered me?
[14:43:16] <hazzy-lab> after 260s you will be able to go back to your old name
[14:43:33] <hazzy-lab> log
[14:43:37] <hazzy-lab> logs
[14:43:43] <hazzy-lab> he is still alive!
[14:44:35] <Lcvette[m]> lol
[14:44:50] <Lcvette[m]> i broke the tool table
[14:44:54] <Lcvette[m]> :(
[14:45:08] <Lcvette[m]> the colors changed when i made Qframe from Qbox
[14:49:41] <Lcvette[m]> no see me?
[14:49:50] <hazzy-lab> no see you :(
[14:49:56] <Lcvette[m]> :(
[14:50:39] * Lcvette[m] uploaded an image: image.png (103KB) < https://matrix.org >
[14:51:21] <hazzy-lab> you must be using an unregistered nick
[14:51:23] <hazzy-lab> hmm
[14:52:05] <Lcvette[m]> itsd the ssame one ive had registered for ever now
[14:52:31] <Lcvette[m]> the one you helped me make
[14:52:47] <Lcvette[m]> Lcvette[M]
[14:53:13] <hazzy-lab> hmm
[15:10:41] -!- erikcnc2 has quit [Quit: AndroIRC - Android IRC Client ( http://www.androirc.com )]
[17:16:34] -!- Roguish has joined #hazzy
[17:30:12] * hazzy-m uploaded an image: Python2.7.png (44KB) < https://matrix.org >
[17:30:19] <hazzy-m> xD
[17:31:05] <Lcvette[m]> whats that?
[17:32:43] <hazzy-lab> just a funny comment I found in some code, which I thought jepler would like (not)
[17:33:05] <Lcvette[m]> lol
[17:33:06] <hazzy-lab> but sebs response was funny (as usual :) )
[17:34:06] <Lcvette[m]> just finished the Qframe undertaking
[17:34:11] <Lcvette[m]> its pushed
[17:34:15] <Lcvette[m]> much better
[17:34:25] <Lcvette[m]> fixed the tool table in style sheet
[17:34:35] <Lcvette[m]> actually have full control over it now in style sheet for some reason
[17:34:39] <Lcvette[m]> not sure why?
[17:34:48] <Lcvette[m]> maybe because it broke something in the QSS?
[17:34:50] <hazzy-lab> Excellent!!
[17:35:04] <hazzy-lab> yes, could be
[17:35:07] <Lcvette[m]> but it gave me the opportunity to control the header colors now
[17:35:47] <Lcvette[m]> i ended up doing it through the qtdesigner
[17:36:12] <Lcvette[m]> sad face one
[17:36:18] <Lcvette[m]> wasn't to bad
[17:36:29] <Lcvette[m]> used the "morph" function
[17:36:51] <Lcvette[m]> then just changed the top line in the style sheet from QGroupBox to QFrame
[17:37:06] <Lcvette[m]> few things here and there broke
[17:37:40] <Lcvette[m]> mainly borders on things inside the QFrame
[17:38:26] <Lcvette[m]> found some other errors, old stuff i did long ago and used qlineedit for that i changed to labels
[17:38:38] <Lcvette[m]> rearranged a few things and gained some extra space in the process for some more buttons if neded
[17:38:39] <Lcvette[m]> Hurray!
[17:43:15] <Lcvette[m]> I learned also that it matter where you stack things in the style sheet
[17:43:42] <Lcvette[m]> there is an order of how code is applied
[17:44:12] * Lcvette[m] uploaded an image: image.png (42KB) < https://matrix.org >
[17:44:38] <Lcvette[m]> i just fixed the tool table again from the pushed version
[17:44:41] <Lcvette[m]> cause it broke
[17:44:44] <Lcvette[m]> lol
[17:44:58] <Lcvette[m]> had to move the QHeaderView to the top above everything
[18:20:49] -RSSBot[turbosssp:#hazzy- Hazzy activity posted a new article: Kurt Jacobson pushed new project branch VCPLauncher at Hazzy / QtPyVCP ( https://gitlab.com )
[18:49:45] -!- ChanServ has quit [*.net *.split]
[18:57:21] <Lcvette[m]> you did it?
[18:57:25] <Lcvette[m]> the launcher?
[18:59:14] <Lcvette[m]> iconopen source icons
[19:03:50] -!- ChanServ has joined #hazzy
[19:03:50] -!- mode/#hazzy [+o ChanServ] by sinisalo.freenode.net
[19:32:05] <hazzy-lab> Its just a start, but a pretty decent one
[19:32:14] <hazzy-lab> does not work yet
[19:41:26] <Lcvette[m]> nice!
[19:42:32] * Lcvette[m] uploaded an image: image.png (142KB) < https://matrix.org >
[20:00:33] * Lcvette[m] uploaded an image: image.png (149KB) < https://matrix.org >
[20:03:25] <Lcvette[m]> got a start on the file page
[20:14:02] <hazzy-lab> Sweet!!
[20:25:26] <Lcvette[m]> faxing that word wrap problem in a QPushButton again
[20:25:34] <Lcvette[m]> facing*
[20:26:17] <Lcvette[m]> for the copy buttons
[20:29:54] <Lcvette[m]> thoughts?
[20:30:26] * Lcvette[m] uploaded an image: file_screen.png (1080KB) < https://matrix.org >
[20:31:39] <Lcvette[m]> wife time
[20:34:36] <hazzy-lab> You want text on two lines in the buttons?
[20:36:55] <Lcvette[m]> See the way they do it?
[20:38:57] <Lcvette[m]> I thought about just putting copy with an arrow icon maybe
[20:39:52] <Lcvette[m]> But COPY FROM USB is a bit long for a button
[20:40:21] <Lcvette[m]> On one line, even two lines would look funny I think
[20:48:08] * hazzy-m uploaded an image: Screenshot_2018-08-22_20-47-53.png (10KB) < https://matrix.org >
[20:48:18] <hazzy-m> lol
[20:48:20] <hazzy-m> it works
[20:48:32] <Lcvette[m]> How you do that?
[20:48:49] <Lcvette[m]> Show off
[20:48:50] <Lcvette[m]> Lol
[20:49:01] <Lcvette[m]> I looked for 45 minutes
[20:49:07] <hazzy-lab> Go to the button text property and click the three little piggies button
[20:49:10] <Lcvette[m]> Everyone said not supported
[20:49:19] <hazzy-lab> they little dots button, actually
[20:49:26] <hazzy-lab> hahaha
[20:50:51] <hazzy-lab> I love Qt, if you want to do something, most likely you can, and most of the time it is easier than expected, not so with GTK ...
[20:51:40] <Lcvette[m]> i don't see three little piggies
[20:51:48] <hazzy-lab> hmm
[20:51:50] <hazzy-lab> sek
[20:51:54] <hazzy-lab> Ill get apic
[20:52:38] <hazzy-lab> You can also just type \n for a new line in the buton
[20:52:41] <hazzy-lab> button
[20:52:43] <hazzy-lab> like this
[20:52:46] <hazzy-lab> PushButton\nhello
[20:52:55] <hazzy-lab> it hello will be on a new line
[20:53:02] <hazzy-lab> it = and*
[20:53:30] <Lcvette[m]> ah got it
[20:53:42] <Lcvette[m]> next tot he nuke button
[20:53:52] <hazzy-lab> yesm LOL
[20:54:21] * hazzy-lab 's screen-grab-fu is lacking
[21:00:52] <TurBoss> hello
[21:01:10] <hazzy-lab> hey TurBoss!
[21:01:17] <Lcvette[m]> if i need to change formatting from the QSS on a button how do i do it?
[21:01:38] <Lcvette[m]> something i can put in the style sheet to override it
[21:01:41] <Lcvette[m]> ]turboss!
[21:01:42] <Lcvette[m]> hurray!
[21:01:49] * TurBoss is looking at the atc thing
[21:01:56] <TurBoss> works or somethng?
[21:01:58] <TurBoss> hi all!
[21:02:19] <hazzy-lab> TurBoss: I did not do much on the ATC :(
[21:02:39] <TurBoss> ok is fine
[21:02:40] <TurBoss> :)
[21:03:25] <hazzy-lab> TurBoss: To you get the ~/linuxcnc_print.txt file when running LCNC?
[21:03:31] <hazzy-lab> do*
[21:03:35] <TurBoss> hmmm
[21:03:59] <TurBoss> yes I think
[21:04:04] <hazzy-lab> ok, good
[21:04:41] <TurBoss> hmmm
[21:04:48] <TurBoss> I renamed and doesn't come u
[21:04:49] <TurBoss> p
[21:04:51] * Lcvette[m] uploaded an image: image.png (156KB) < https://matrix.org >
[21:04:56] <hazzy-lab> I am trying to use it to get the INI of the currently running LCNC session, but 2.7 does not seem to generate it so I was not sure it an installed version generated it
[21:04:58] <hazzy-lab> hmm
[21:05:17] <TurBoss> hey that looks good
[21:05:17] <TurBoss> !
[21:05:26] <Lcvette[m]> THANKS ITS A START
[21:05:30] <Lcvette[m]> sorry
[21:05:32] <Lcvette[m]> lol
[21:05:33] <hazzy-lab> It does look good!
[21:05:40] <Lcvette[m]> i need to adjust the gradient
[21:05:52] <Lcvette[m]> only on those two buttons though
[21:06:05] <Lcvette[m]> how can i do that?
[21:06:17] <hazzy-lab> The gcode preview should be as wide as possible, the one in PP is way to narrow ...
[21:06:36] <Lcvette[m]> ij
[21:06:40] <Lcvette[m]> ok
[21:06:50] <hazzy-lab> Name the buttons something, then do #myButtonName { ... }
[21:07:05] <TurBoss> hazzy-lab: the vcplauncher branch crashes but generates tha file
[21:07:16] <Lcvette[m]> ok
[21:07:17] <hazzy-lab> Oh, interesting
[21:07:27] <hazzy-lab> Thank you for testing
[21:07:59] <hazzy-lab> So I am doing something that makes it print ...
[21:08:01] <hazzy-lab> hmmm
[21:08:13] <hazzy-lab> maybe it prints only when it crashes!!!!
[21:08:14] <hazzy-lab> LOL
[21:08:42] <hazzy-lab> Then I will have to make it crash xD
[21:17:02] <Lcvette[m]> ok im not sure i foillow what you told me hazzy
[21:17:48] <hazzy-lab> #NameOfButton {
[21:17:48] <hazzy-lab> color: red;
[21:17:48] <hazzy-lab> }
[21:17:56] <Lcvette[m]> i named the individual buttons
[21:18:00] <Lcvette[m]> where?
[21:18:08] <hazzy-lab> should only effect the widget with object name NameOfButton
[21:18:25] <Lcvette[m]> style sheet?
[21:18:26] <hazzy-lab> either in the QSS file or in the designer style sheet
[21:18:29] <Lcvette[m]> or qss
[21:18:30] <hazzy-lab> yes
[21:19:52] <Lcvette[m]> loses the button push
[21:20:01] <Lcvette[m]> just a dead button face
[21:20:13] <hazzy-lab> good, so it works !
[21:20:32] <Lcvette[m]> errrr
[21:20:39] <Lcvette[m]> somewhat?
[21:20:51] <hazzy-lab> oh, I see what you mean
[21:20:53] <hazzy-lab> hmmm
[21:21:14] <Lcvette[m]> turboss did something with the probe buttons
[21:21:23] <TurBoss> ?
[21:21:23] <Lcvette[m]> but im not sure i understand what he did
[21:21:33] <TurBoss> where
[21:21:35] <Lcvette[m]> you changed just the probe buttons
[21:21:45] <Lcvette[m]> without effecting theother buttons
[21:21:51] <TurBoss> let me check
[21:23:33] <TurBoss> what you are trying to do?
[21:24:26] <Lcvette[m]> change the background gradient of just two buttons without effecting any of the others
[21:24:37] <TurBoss> wich ones
[21:26:20] <Lcvette[m]> one sec need to push
[21:26:25] <TurBoss> ok
[21:35:32] * Lcvette[m] uploaded an image: image.png (156KB) < https://matrix.org >
[21:37:02] <Lcvette[m]> pushed
[21:37:47] <TurBoss> now what?
[21:38:16] <Lcvette[m]> the two buttons between the file screens
[21:38:30] <Lcvette[m]> i need to adjust the gradient on them because they are much taller
[21:38:36] <Lcvette[m]> the gradient scales a bit funny
[21:38:44] <TurBoss> ok
[21:39:14] <Lcvette[m]> so i need to access the background gradient for those two buttons without breaking them and without changing all the other buttons in the oprocess
[21:39:34] <TurBoss> ok they are named
[21:40:38] <Lcvette[m]> i named them different names
[21:41:31] <TurBoss> ok
[21:41:41] * TurBoss uploaded an image: Captura de pantalla de 2018-08-23 03-41-23.png (137KB) < https://matrix.org >
[21:41:45] <TurBoss> like this?
[21:42:06] <Lcvette[m]> yes
[21:42:09] <TurBoss> ok
[21:42:12] <Lcvette[m]> they still clickety click?
[21:42:22] <TurBoss> no
[21:42:24] <TurBoss> sek
[21:42:27] <Lcvette[m]> :(
[22:02:04] <TurBoss> hmmmmmmmmmm
[22:02:19] <TurBoss> Lcvette: none of the buttons make nothing when clicked
[22:02:39] <Lcvette[m]> ?
[22:02:49] <Lcvette[m]> they are all broken?
[22:03:13] <TurBoss> can you test?
[22:03:22] <Lcvette[m]> mine are clicking right now
[22:03:27] <Lcvette[m]> change color
[22:03:30] <Lcvette[m]> hover etc
[22:03:36] <TurBoss> ok
[22:03:55] <TurBoss> oj was me
[22:06:37] <TurBoss> ok done
[22:07:33] <TurBoss> ok done
[22:07:34] <TurBoss> opps
[22:08:09] <TurBoss> http://dpaste.com
[22:08:21] <TurBoss> Lcvette: add this to the end of your qss file
[22:08:50] <TurBoss> to tweak de gradiend play with the designer and the paste the resulting gradient in the qs file
[22:09:10] <Lcvette[m]> yup! i know that portion
[22:09:12] <TurBoss> or paste the code in both buttons
[22:09:20] <Lcvette[m]> ok going to paste now!hurray!!
[22:09:21] <Lcvette[m]> :D
[22:31:08] * Lcvette[m] uploaded an image: image.png (154KB) < https://matrix.org >
[22:31:12] <Lcvette[m]> hurray!!!!
[22:34:42] <TurBoss> fantastic
[22:39:33] <Lcvette[m]> pushed
[22:39:40] <Lcvette[m]> i need to restart my computer'
[22:40:01] <Lcvette[m]> its acting funny
[22:40:56] <hazzy-lab> Man that looks good!!!
[22:41:13] <hazzy-lab> PP folks are going to be so envious!
[22:42:16] <Lcvette[m]> yeah?
[22:42:18] <Lcvette[m]> lol
[22:42:27] <Lcvette[m]> there are no fancy icons in the buttons
[22:42:55] <Lcvette[m]> but im ok with that
[22:43:08] <Lcvette[m]> i think it is still easy to make sense of everything
[22:47:36] <TurBoss> hazzy-lab: what you working on?
[22:48:22] <Lcvette[m]> http://linuxcnc.org
[22:48:29] <Lcvette[m]> i found this turboss
[22:48:36] <Lcvette[m]> maybe its helpful for the ATC?
[22:48:48] <TurBoss> checking
[22:50:24] <TurBoss> thats what hazzy did
[22:50:32] <TurBoss> I think
[22:51:01] * Lcvette[m] uploaded an image: image.png (154KB) < https://matrix.org >
[22:51:43] <Lcvette[m]> whoops sorry
[22:51:44] <Lcvette[m]> lol
[22:51:58] <Lcvette[m]> repost
[22:51:59] <TurBoss> I hope they where tit
[22:52:01] <Lcvette[m]> lol
[22:52:10] <TurBoss> s
[22:53:39] <hazzy-lab> TurBoss: I'm working on the new launcher
[22:54:00] <TurBoss> what new things will allow
[22:54:02] <TurBoss> ??
[22:54:31] <TurBoss> ohh I can see a chooser
[22:55:02] <TurBoss> I found on the kraken a way to split vertical
[22:55:10] <hazzy-lab> it will provide a VCP chooser, like the LCNC config picker, and will let you launch vcps that are .ui files, .py files, or complete python packages
[22:55:17] <hazzy-lab> Yes?
[22:55:23] * TurBoss uploaded an image: Captura de pantalla de 2018-08-23 04-55-14.png (209KB) < https://matrix.org >
[22:55:26] <hazzy-lab> that might be nice
[22:55:35] <hazzy-lab> that is Nice!
[22:55:41] <TurBoss> cool
[22:55:46] <hazzy-lab> How are your new screens?
[22:56:01] <TurBoss> great
[22:56:05] <TurBoss> but I only have one
[22:56:08] <TurBoss> :(
[22:56:17] <TurBoss> turboss is angry
[22:56:38] <TurBoss> I'll call again tomorrow
[22:58:17] <TurBoss> :(( no mail
[22:58:19] <TurBoss> even not spam
[22:58:27] <Lcvette[m]> https://forum.linuxcnc.org
[22:58:39] <Lcvette[m]> posted new screen and shameless plug for help
[22:58:41] <Lcvette[m]> :D
[22:58:46] <hazzy-lab> TurBoss: That is not good :(
[22:58:48] <Lcvette[m]> still no second screen turboss?
[22:59:01] <TurBoss> no...
[22:59:02] <TurBoss> 20 days
[22:59:11] <TurBoss> report is open
[22:59:16] <Lcvette[m]> thats bolognia
[22:59:58] <TurBoss> tormach will patent its GUI desgins lol
[23:00:12] <TurBoss> :P
[23:00:19] <hazzy-lab> xD
[23:00:34] <hazzy-lab> They already have
[23:00:49] <TurBoss> lol=
[23:00:50] <TurBoss> ?
[23:00:52] <TurBoss> yes?
[23:01:10] <hazzy-lab> yes, they copyrighted the button images, lol
[23:01:26] <Lcvette[m]> thats about all they can copyright
[23:01:30] <hazzy-lab> I guess they are not code, so don't fall under the GPL
[23:01:38] <hazzy-lab> right! xD
[23:02:04] <Lcvette[m]> our layout is different enough now that i don't think they would be able to say anything
[23:02:39] <hazzy-lab> Brenda has been quiet lately ....
[23:02:54] <hazzy-lab> No, that can't say anything
[23:03:19] <TurBoss> hehehe
[23:03:21] <Lcvette[m]> she has
[23:03:49] <hazzy-lab> And I have their entire inventory system info, that I can use as black mail if needed xD
[23:04:08] <Lcvette[m]> nice
[23:04:34] <hazzy-lab> Some how I am on there internal mailing list, and I keep complaining about it, but they can't get me off of it, lol
[23:04:50] <Lcvette[m]> hahahaha
[23:05:15] <TurBoss> hazzy-lab: lol
[23:05:15] <Lcvette[m]> with pricing?
[23:05:40] <hazzy-lab> Everything, even the items that are not standard stock
[23:06:03] <Lcvette[m]> wow
[23:06:13] <Lcvette[m]> as in cost?
[23:06:17] <Lcvette[m]> or retail?
[23:06:54] <TurBoss> hazzy-lab: if you tired of working on the launcher....
[23:06:57] <TurBoss> :P
[23:07:03] <TurBoss> HALP!!
[23:07:04] <hazzy-lab> Not sure, it says confidential at the bottom, so I honor there request and delete them immediately
[23:07:18] <Lcvette[m]> hahahaha
[23:08:17] <hazzy-lab> Some times I can't help peeking into them a bit though, but they are huge excel spread sheets, so kinda a pain
[23:08:32] <Lcvette[m]> i bet
[23:08:49] <Lcvette[m]> what you need halp with turboss?
[23:09:05] <TurBoss> code-fu
[23:09:08] <hazzy-lab> TurBoss: I am not tired of the ATC, but I don't think it is the most important thing at the moment
[23:09:36] <TurBoss> the tool table thing
[23:10:06] <hazzy-lab> checking
[23:10:18] <TurBoss> I wan't to understand how the model roles work
[23:10:23] <Lcvette[m]> hazzy! how dare you!
[23:10:24] <Lcvette[m]> lol
[23:10:25] <TurBoss> https://stackoverflow.com
[23:10:30] <Lcvette[m]> it moves
[23:10:31] <TurBoss> here is an example
[23:10:53] <Lcvette[m]> its the neatest thing ive seen in a gui
[23:11:03] <hazzy-lab> sorting, nice!
[23:11:04] <Lcvette[m]> :D
[23:11:10] <hazzy-lab> Lcvette[m]: LOL
[23:11:19] <TurBoss> hazzy-lab: the question is about sorting...
[23:11:34] <TurBoss> but his example implement roles
[23:13:31] * hazzy-lab lost the kraken
[23:13:37] <hazzy-lab> too many window open
[23:13:40] <hazzy-lab> lol
[23:14:01] <TurBoss> they will find you
[23:14:21] <TurBoss> now with your supper computer lol
[23:14:31] <hazzy-lab> haha
[23:14:49] <TurBoss> where is the thinkpad
[23:14:50] <TurBoss> fire it
[23:14:58] <hazzy-lab> I should
[23:15:09] <TurBoss> he crashed too
[23:15:09] <hazzy-lab> it is hazzy-dev
[23:15:09] <TurBoss> lol
[23:15:18] <hazzy-lab> xD
[23:15:25] <TurBoss> /kick hazzy-dev
[23:15:27] <TurBoss> oops
[23:15:28] <TurBoss> lol
[23:15:32] <hazzy-lab> hahahahahaha
[23:15:33] <TurBoss> joke
[23:16:16] <TurBoss> I lost my ban hammer onthe irc
[23:16:27] <TurBoss> you wy is that
[23:16:47] <hazzy-lab> hmm, you should be an op
[23:16:58] <TurBoss> no star
[23:17:19] -!- TurBoss_backup has joined #hazzy
[23:17:54] <hazzy-lab> BTW the PyDM folks are great, they are sending me stuff to help with QtPyVCP!
[23:17:54] <TurBoss> doesn't matter
[23:17:56] <hazzy-lab> https://github.com
[23:18:24] <TurBoss> modbus?
[23:18:25] <TurBoss> lol
[23:18:27] <Lcvette[m]> yeah?
[23:18:37] <Lcvette[m]> shweet
[23:19:19] -!- mode/#hazzy [+o TurBoss] by hazzy-lab
[23:19:29] <hazzy-lab> there :)
[23:19:29] <TurBoss_backup> hrray!!
[23:19:50] <hazzy-lab> ToBoOp
[23:19:53] <TurBoss_backup> I found that nickserv can reclaim nicks
[23:20:02] <hazzy-lab> oh, nice
[23:20:13] <Lcvette[m]> no more matrix pals?
[23:20:19] <TurBoss> ok
[23:20:24] <Lcvette[m]> :(
[23:20:32] <Lcvette[m]> hurray
[23:20:34] -!- TurBoss_backup has parted #hazzy
[23:21:00] <TurBoss> hazzy-lab: thanks
[23:21:01] <TurBoss> :P
[23:21:08] <hazzy-lab> np
[23:21:14] <hazzy-lab> You created this chan :P
[23:21:25] <TurBoss> true
[23:21:28] <Lcvette[m]> it can?
[23:21:39] <Lcvette[m]> can it reclaim my nickname on the linuxcnc irc?
[23:21:41] <TurBoss> hazzy-lab: promote Lcvette to mod?
[23:21:42] <Lcvette[m]> im banned again
[23:21:47] * hazzy-lab goes to work in the tooltable
[23:22:04] <TurBoss> ty!
[23:22:09] <Lcvette[m]> ty!
[23:22:26] <hazzy-lab> Lcvette[m]: you might need to log in again I guess
[23:22:43] <TurBoss> you need to talk with @appservice-irc:matrix.org
[23:23:10] <Lcvette[m]> turboss how do i do it?
[23:23:19] <TurBoss> do you have your nick registered ?
[23:23:35] <TurBoss> in the irc?
[23:23:54] -!- Roguish has quit [Quit: ChatZilla 0.9.92-rdmsoft [XULRunner 35.0.1/20150122214805]]
[23:24:17] <TurBoss> hazzy-lab: what I want to do in the tooltable is implement roles!
[23:24:36] <Lcvette[m]> yes im registered
[23:24:39] <TurBoss> ok
[23:24:47] <Lcvette[m]> through matrix
[23:24:57] <TurBoss> start a direct chat with @appservice-irc:matrix.org
[23:25:05] <Lcvette[m]> just did
[23:25:16] <TurBoss> ok
[23:25:20] <TurBoss> but
[23:25:24] <TurBoss> the question
[23:25:28] <TurBoss> lets move to provate
[23:25:35] <TurBoss> *private
[23:25:53] <TurBoss> so don't spam over here
[23:31:33] -!- TurBoss_backup has joined #hazzy
[23:38:25] Lcvette[m] is now known as Lcvette
[23:49:13] <TurBoss> Lcvette: you are not Lcvette[m] any more
[23:49:53] <Lcvette> sweet!
[23:50:43] <Lcvette> im irc immortal!!1
[23:50:50] <Lcvette> wahahaha
[23:50:52] <Lcvette> :D
[23:51:03] <hazzy-lab> Hurray!!!
[23:51:24] <Lcvette> Hurray!
[23:52:18] <TurBoss> only one can left
[23:52:25] <TurBoss> is that quote right?
[23:53:14] <TurBoss> "solo puede quedar uno"
[23:53:19] <TurBoss> from the inmortals
[23:53:38] <Lcvette> lol!
[23:53:44] <Lcvette> ok joining now
[23:53:55] <TurBoss> it can take long to join
[23:53:59] <TurBoss> be patient
[23:54:04] -!- TurBoss_backup has parted #hazzy
[23:54:17] <TurBoss> hazzy any luck with the table model roles?
[23:54:21] <Lcvette> i don't ask appasrvice?
[23:54:40] <TurBoss> just say to him !join #qt
[23:54:43] <TurBoss> or #pyqt
[23:57:59] <hazzy-lab> TurBoss: No, I've been chatting with a girl friend, takes all my time, lol
[23:58:27] <TurBoss> ok
[23:58:27] <TurBoss> n'p
[23:58:48] <TurBoss> a or the?
[23:58:52] <TurBoss> do you have much?
[23:59:02] <hazzy-lab> no, lol, only one