teepee changed the topic of #openscad to: OpenSCAD - The Programmers Solid 3D CAD Modeller | This channel is logged! | Website: http://www.openscad.org/ | FAQ: https://goo.gl/pcT7y3 | Request features or report bugs: https://goo.gl/lj0JRI | Tutorial: https://bit.ly/37P6z0B | Books: https://bit.ly/3xlLcQq | FOSDEM 2020: https://bit.ly/35xZGy6 | Logs: https://libera.irclog.whitequark.org/openscad | don't ask to ask
LordOfBikes has quit [Ping timeout: 268 seconds]
LordOfBikes has joined #openscad
aiyion has quit [Remote host closed the connection]
aiyion has joined #openscad
ferdna has quit [Quit: Leaving]
qeed_ has joined #openscad
qeed has quit [Ping timeout: 265 seconds]
splud has joined #openscad
<gbruno> [github] thehans pushed 1 modifications (Update msys path in windows workflow to match latest runner version.). https://github.com/openscad/openscad/commit/7ed8ee3985e1a5539249380bd716096ca854a6d1
<peepsalot> figured it out by doing a diff between raw logs of failed and last successful one. looks like all the paths under D:/a/_temp/msys/msys64/ changed to D:/a/_temp/msys64/
<peepsalot> looks like that path change also correspond to change from "Current runner version: '2.283.1'" to '2.283.2'
snaked has joined #openscad
arebil has joined #openscad
ur5us has quit [Ping timeout: 265 seconds]
arebil has quit [Quit: My keyboard has gone to sleep. ZZZzzz…]
<gbruno> [github] thehans pushed 11 modifications (Merge pull request #3942 from thehans/test_update
arebil has joined #openscad
rogeliodh5 has joined #openscad
rogeliodh5 is now known as rogeliodh
gbruno_ has joined #openscad
gbruno_ is now known as gbruno
<gbruno> [github] thehans pushed 18 modifications (Merge pull request #3941 from thehans/CGAL_DEBUG
little_blossom has joined #openscad
arebil has quit [Quit: My keyboard has gone to sleep. ZZZzzz…]
mhroncok has joined #openscad
RichardP_ has joined #openscad
RichardPotthoff has quit [Read error: Connection reset by peer]
mhroncok has quit [Quit: Leaving.]
lastrodamo has joined #openscad
veverak has joined #openscad
<Scopeuk> nice spot
mhroncok has joined #openscad
qeed_ has quit [Read error: Connection reset by peer]
qeed_ has joined #openscad
ochafik has joined #openscad
ochafik has quit [Remote host closed the connection]
ochafik has joined #openscad
p3ck has joined #openscad
ochafik has quit [Remote host closed the connection]
randypfau has quit [Remote host closed the connection]
randypfau has joined #openscad
ochafik has joined #openscad
veverak has quit [Quit: The Lounge - https://thelounge.chat]
ziggurat_ has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
gunnbr has joined #openscad
othx has joined #openscad
arebil has joined #openscad
Guest6 has joined #openscad
Guest6 has left #openscad [#openscad]
mhroncok has quit [Quit: Leaving.]
arebil has quit [Quit: My keyboard has gone to sleep. ZZZzzz…]
ochafik has quit [Remote host closed the connection]
ochafik has joined #openscad
gunnbr has quit [Ping timeout: 252 seconds]
ochafik has quit [Ping timeout: 252 seconds]
qeed_ has quit [Read error: Connection reset by peer]
qeed has joined #openscad
ochafik has joined #openscad
lastrodamo has quit [Quit: Leaving]
ochafik has quit [Remote host closed the connection]
ochafik has joined #openscad
ochafik has quit [Remote host closed the connection]
ochafik has joined #openscad
ochafik has quit [Ping timeout: 252 seconds]
TheAssassin has quit [Remote host closed the connection]
TheAssassin has joined #openscad
ochafik has joined #openscad
randypfau has quit [Ping timeout: 265 seconds]
The_Jag has joined #openscad
randypfau has joined #openscad
TheAssassin has quit [Remote host closed the connection]
TheAssassin has joined #openscad
TheAssassin has quit [Client Quit]
TheAssassin has joined #openscad
drew has joined #openscad
drew has quit [Quit: Quit]
drew has joined #openscad
drew has left #openscad [WeeChat 3.2]
Jack21 has joined #openscad
ochafik has quit [Ping timeout: 264 seconds]
<Jack21> 🔴🟢🔵 found a way to get color into echo text (at least for my system)
<InPhase> For console or for gui?
<Jack21> the console window in scad where echo() text are shown
<InPhase> Yeah, I guess you can dump ansi codes there if your system is one of the decent ones.
<InPhase> Oh wait, the console window in gui?
<InPhase> This I don't know. What was the method?
<Jack21> there are utf-8 characters that have colors 🔴🟢 so i can highlight warnings .
<InPhase> Oh, ok.
<InPhase> They're showing in monochrome here in my IRC terminal.
<Jack21> yeah i assumed this is OS dependant
<InPhase> Jack21: If memory serves you disconnected right before I posted the csv code last time: https://github.com/thehans/funcutils/blob/master/string.scad#L55
<InPhase> Jack21: Usage like, echo(csv_parse("-1, 0,2,4, 3.14159, 6.67408e-11, 1.0545e-34, 6.022e23, -1.602e-19"));
<InPhase> Jack21: Maybe that opens up some customizer functionality for you.
<InPhase> The float() was a little tricky, but I was in a favorable brain state and hammered it out.
<peepsalot> it could be interesting to implement a full literal value parser in openscad (besides function literal), including nested vectors etc
<InPhase> peepsalot: Just as long as it's not an eval. :)
<InPhase> We do not want any introduced risk of web customizers importing /etc/passwd into a text() or something.
<peepsalot> right, i mean as a user library, analogous to json parsing
<InPhase> json to object literal would be intriguing.
<InPhase> I don't know what syntax they'd need though. object literal comprehensions or something?
<InPhase> paired list to literal?
<peepsalot> hmm? i'm just talking about extending your csv to support other OpenSCAD literal types. bool, string, vector, maybe range
<InPhase> I suppose that's doable as-is, with sufficient effort.
<InPhase> The shunting-yard algorithm should work well for this with a functional approach.
<peepsalot> i guess the most crucial one in my eyes is vector, then you could pass a arbitrary length list of points via customizer for example
<InPhase> Nested vectors would be pretty easy then as well.
<InPhase> Vector of numbers would be an easy add on top of that.
<InPhase> [ recurse, ] return basically.
<peepsalot> i still think a builtin string to number function would be a good addition too of course
<InPhase> Agreed.
<InPhase> That funcutils float is a good experiment to poke around for use cases.
<InPhase> Integrated makes a lot of sense though.
<Jack21> inPhase: nice functions
ochafik has joined #openscad
gunnbr has joined #openscad
randypfau has quit [Ping timeout: 252 seconds]
ferdna has joined #openscad
gunnbr has quit [Ping timeout: 264 seconds]