jhass[m] changed the topic of #ruby to: Rules: https://ruby-community.com | Ruby 3.1.2, 3.0.4, 2.7.6: https://www.ruby-lang.org | Paste 4+ lines to: https://gist.github.com | Books: https://goo.gl/wpGhoQ
eddof13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
eddof13 has joined #ruby
aeris has quit [Remote host closed the connection]
aeris has joined #ruby
Marie80 has quit [Quit: Client closed]
mikecmpbll has joined #ruby
crundar has quit [Quit: Client closed]
Al2O3 has joined #ruby
mikecmpbll has quit [Ping timeout: 260 seconds]
Sankalp has quit [Ping timeout: 252 seconds]
Sankalp- has joined #ruby
Sankalp- is now known as Sankalp
jpn has joined #ruby
ua__ has joined #ruby
ua_ has quit [Ping timeout: 260 seconds]
ur5us has quit [Ping timeout: 244 seconds]
ur5us has joined #ruby
Successus has quit []
jpn has quit [Ping timeout: 260 seconds]
nirvdrum has joined #ruby
jpn has joined #ruby
jpn has quit [Ping timeout: 268 seconds]
scottg489 has quit [Remote host closed the connection]
scottg489 has joined #ruby
eddof13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
littlebuddy has joined #ruby
<littlebuddy> hi!
<littlebuddy> I'm currently using https://github.com/faker-ruby/faker/ to create dummy user accounts with photos from Unsplash.com. But how would I go about using Google's Imagen AI (https://github.com/lucidrains/imagen-pytorch) instead? Ideally it should be aware of each user's face and use that to create the user's photoalbum.
<littlebuddy> 1. Does this look okay? What should I do next? https://clbin.com/K47T1
<littlebuddy> 2. To get imagen-pytorch up and running basically all I need is a server with GPU (ie. https://www.vultr.com/products/talon-cloud-gpu/) and then the training data (ie. https://laion.ai/blog/laion-aesthetics/) right?
<littlebuddy> What you guys think? Pretty cool yeah? :-)
mikecmpbll has joined #ruby
nirvdrum has quit [Ping timeout: 268 seconds]
mikecmpbll has quit [Ping timeout: 252 seconds]
EternalSunshine has joined #ruby
eddof13 has joined #ruby
eddof13 has quit [Client Quit]
nirvdrum has joined #ruby
EternalSunshine has quit [Quit: WeeChat 3.6]
Linux_Kerio has joined #ruby
jpn has joined #ruby
jpn has quit [Ping timeout: 252 seconds]
dviola has quit [Ping timeout: 244 seconds]
ikonia_ is now known as ikonia
dviola has joined #ruby
protektwar has joined #ruby
protektwar has joined #ruby
protektwar has quit [Changing host]
ur5us has quit [Ping timeout: 244 seconds]
jpn has joined #ruby
comet23 has joined #ruby
protektwar has quit [Ping timeout: 260 seconds]
ur5us has joined #ruby
jpn has quit [Ping timeout: 248 seconds]
Rounin has joined #ruby
jpn has joined #ruby
jpn has quit [Ping timeout: 252 seconds]
comet23 has quit [Quit: Client closed]
mikecmpbll has joined #ruby
gr33n7007h has quit [Quit: WeeChat 3.6]
ur5us has quit [Ping timeout: 260 seconds]
gr33n7007h has joined #ruby
teclator has joined #ruby
dionysus69 has joined #ruby
jpn has joined #ruby
teclator has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
dionysus69 has quit [Ping timeout: 244 seconds]
dionysus69 has joined #ruby
oxfuxxx has joined #ruby
oxfuxxx has quit [Remote host closed the connection]
oxfuxxx has joined #ruby
c10l has quit [Quit: See ya! o/]
c10l has joined #ruby
protektwar has joined #ruby
protektwar has quit [Changing host]
protektwar has joined #ruby
ur5us has joined #ruby
Sankalp has quit [Ping timeout: 260 seconds]
weaksauc_ has joined #ruby
Sankalp has joined #ruby
weaksauce has quit [Ping timeout: 244 seconds]
weaksauc_ has quit [Ping timeout: 244 seconds]
Jonopoly has joined #ruby
jpn has quit [Ping timeout: 252 seconds]
desnudopenguino has quit [Ping timeout: 248 seconds]
weaksauce has joined #ruby
desnudopenguino has joined #ruby
Marie72 has joined #ruby
<Marie72> hhi everbody
<Marie72> hi everybody*
<Marie72> I'm trying to make sense of a ruby script and i'm not super familiar with ruby
jpn has joined #ruby
<Marie72> i'm hoping that i might be able to get some help from one more experienced
<Marie72> https://github.com/mudcube/MIDI.js/blob/master/generator/ruby/soundfont_builder.rb this is the relevant script that I want to run and i'm having trouble locating the required tools
<Marie72> you can see it lists them in the script
<Marie72> i think i found the correct version of vorbis-tools, however the LAME and FluidSynth command line tools that I found don't seem to be compatible with the script
<Marie72> the ruby script will call the tools and then those tools are more like applications that will halt execution and wait for input. So I guess that I've not got the right gear, but I'm not sure where else to look. The encoders I found come from the LAME and FluidSynth project websites respectively
<Marie72> i figure that yall ppl who are good at ruby are more likely to know the specific kind of software to put in there
aeris has quit [Remote host closed the connection]
markong has joined #ruby
aeris has joined #ruby
markong has quit [Ping timeout: 244 seconds]
oxfuxxx has quit [Ping timeout: 248 seconds]
markong has joined #ruby
Sankalp has quit [Ping timeout: 252 seconds]
Sankalp has joined #ruby
<mikecmpbll> Marie72: are you on mac os? it tells you exactly what to run to install them with brew. it doesn't specify version numbers, so if that doesn't work then it's anybody's guess really.
<Marie72> I'm not on mac, in this case i'm on windows. I'm not sure what to make of the brew commands, i assumed they were a package manager that is mac-only
<Marie72> im not familiar with brew in any case
<Marie72> which writes "(on osx)" next to the brew commands
<mikecmpbll> yes, they are that.
<Marie72> perhaps there's a package manager on windows that has some of the same libraries hosted on it?
<mikecmpbll> the script won't work on windows, it uses system commands that are available on nix-like systems (`which` for instance)
<Marie72> that's troubling
<Marie72> in the case of the `which` i was able to replace it with a raw file path to the tool and get them to execute but i can't speak for the rest of the script
<Marie72> my usecase is that im writing a react app to play some midi files
<Marie72> so I have MIDI.js, and I have a variety of soundfont sf2 files i want to use, but to get those soundfonts into midi.js it seems i need to interpret them with this ruby script
<mikecmpbll> ok, if you're having further problems then you'll probably need to describe what they are :)
<Marie72> ah, the problem is that the libraries that i found are not correct shjkbs
<Marie72> the script requires lame and fluidsynth, and while i downloaded some lame and fluidsynth command-line tools, they aren't the right ones, lol
<mikecmpbll> ah :)
<Marie72> if the libraries that the script uses are not available on windows then i'm not sure i might be SOL
oxfuxxx has joined #ruby
ur5us has quit [Ping timeout: 244 seconds]
Linux_Kerio has quit [Ping timeout: 260 seconds]
oxfuxxx has quit [Ping timeout: 252 seconds]
nirvdrum has quit [Read error: Connection reset by peer]
nirvdrum_ has joined #ruby
aeris has quit [Remote host closed the connection]
aeris has joined #ruby
nirvdrum_ has quit [Ping timeout: 252 seconds]
aeris has quit [Remote host closed the connection]
aeris has joined #ruby
Linux_Kerio has joined #ruby
dionysus69 has quit [Ping timeout: 248 seconds]
Laplace has joined #ruby
dionysus69 has joined #ruby
protektwar has quit [Ping timeout: 240 seconds]
oxfuxxx has joined #ruby
oxfuxxx has quit [Read error: Connection reset by peer]
oxfuxxx has joined #ruby
oxfuxxx has quit [Read error: Connection reset by peer]
oxfuxxx has joined #ruby
protektwar has joined #ruby
protektwar has quit [Changing host]
protektwar has joined #ruby
oxfuxxx has quit [Read error: Connection reset by peer]
eddof13 has joined #ruby
nirvdrum has joined #ruby
nirvdrum has quit [Ping timeout: 260 seconds]
Linux_Kerio has quit [Ping timeout: 248 seconds]
protektwar has quit [Ping timeout: 268 seconds]
Aminda has quit [Remote host closed the connection]
Aminda has joined #ruby
eddof13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Marie72 has quit [Quit: Client closed]
eddof13 has joined #ruby
dviola has quit [Ping timeout: 244 seconds]
eddof13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
oxfuxxx has joined #ruby
Jonopoly has quit [Quit: WeeChat 3.0]
Jonopoly has joined #ruby
mdemo has joined #ruby
comet23 has joined #ruby
Linux_Kerio has joined #ruby
oxfuxxx has quit [Ping timeout: 252 seconds]
dionysus69 has quit [Ping timeout: 260 seconds]
dionysus69 has joined #ruby
dionysus69 has quit [Ping timeout: 248 seconds]
oxfuxxx has joined #ruby
protektwar has joined #ruby
protektwar has joined #ruby
eddof13 has joined #ruby
Jonopoly has quit [Quit: WeeChat 3.0]
oxfuxxx has quit [Ping timeout: 252 seconds]
protektwar has quit [Ping timeout: 260 seconds]
comet23 has quit [Ping timeout: 252 seconds]
fercell has joined #ruby
Successus has joined #ruby
ferr_ has quit [Ping timeout: 260 seconds]
artemis has joined #ruby
CrazyEddy has quit [Ping timeout: 244 seconds]
Laplace has quit [Quit: Connection closed for inactivity]
mikecmpbll has quit [Ping timeout: 260 seconds]
mikecmpbll has joined #ruby
teclator has joined #ruby
teclator has quit [Client Quit]
_ht has joined #ruby
mikecmpbll has quit [Ping timeout: 248 seconds]
artemis has quit [Ping timeout: 244 seconds]
oxfuxxx has joined #ruby
eddof13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jpn has quit [Ping timeout: 268 seconds]
mikecmpbll has joined #ruby
eddof13 has joined #ruby
markong has quit [Ping timeout: 260 seconds]
protektwar has joined #ruby
protektwar has quit [Changing host]
protektwar has joined #ruby
oxfuxxx has quit [Ping timeout: 260 seconds]
John_Ivan has quit [Remote host closed the connection]
John_Ivan has joined #ruby
r3m has joined #ruby
eron has joined #ruby
mikecmpbll has quit [Ping timeout: 252 seconds]
mikecmpbll has joined #ruby
polishdub has quit [Remote host closed the connection]
mikecmpbll has quit [Ping timeout: 252 seconds]
polishdub has joined #ruby
protektwar has quit [Ping timeout: 248 seconds]
mikecmpbll has joined #ruby
eron has quit [Quit: Client closed]
eddof13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mikecmpbll has quit [Ping timeout: 268 seconds]
_ht has quit [Remote host closed the connection]
mikecmpbll has joined #ruby
rvalue has quit [Ping timeout: 244 seconds]
mikecmpbll has quit [Ping timeout: 260 seconds]
maroloccio has joined #ruby
oxfuxxx has joined #ruby
yxhuvud has quit [Read error: Connection reset by peer]
eddof13 has joined #ruby
Sankalp has quit [Ping timeout: 240 seconds]
yxhuvud has joined #ruby
mikecmpbll has joined #ruby
mikecmpbll has quit [Ping timeout: 252 seconds]
polishdub has quit [Ping timeout: 252 seconds]
polishdub has joined #ruby
mitt3ns has joined #ruby
ur5us has joined #ruby
dionysus69 has joined #ruby
Sankalp has joined #ruby
aeris has quit [Remote host closed the connection]
aeris has joined #ruby
ssh0732 has joined #ruby
aeris has quit [Remote host closed the connection]
aeris has joined #ruby
oxfuxxx has quit [Ping timeout: 252 seconds]
Linux_Kerio has quit [Ping timeout: 244 seconds]
victori has quit [Quit: ZNC 1.8.2 - https://znc.in]
weaksauc_ has joined #ruby
victori has joined #ruby
weaksauce has quit [Ping timeout: 248 seconds]
eddof13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mikecmpbll has joined #ruby
justache is now known as justache_test
justache_test is now known as justache
mikecmpbll has quit [Ping timeout: 252 seconds]
ssh0732 has quit [Quit: The Lounge - https://thelounge.chat]
ssh0732 has joined #ruby
ssh0732 has quit [Ping timeout: 258 seconds]
jpn has joined #ruby
Successus has quit []
mikecmpbll has joined #ruby
jetchisel has quit [Ping timeout: 260 seconds]
Manouchehri has joined #ruby
dionysus69 has quit [Ping timeout: 268 seconds]
cocalero has joined #ruby
eddof13 has joined #ruby
oxfuxxx has joined #ruby
oxfuxxx has quit [Ping timeout: 244 seconds]
jetchisel has joined #ruby