baweaver changed the topic of #ruby to: Rules & more: https://ruby-community.com || Ruby 2.5.0, 2.4.3, 2.3.6: https://www.ruby-lang.org || Paste >3 lines of text to: https://gist.github.com || Rails questions? Ask in: #RubyOnRails || Logs: https://irclog.whitequark.org/ruby || Books: https://goo.gl/wpGhoQ
sanscoeur has quit [Ping timeout: 240 seconds]
n0m4d1c has joined #ruby
nowhere_man has quit [Read error: Connection reset by peer]
nowhere_man has joined #ruby
sanscoeu_ has quit [Ping timeout: 248 seconds]
tcopeland has joined #ruby
minimalism has joined #ruby
mikecmpbll has joined #ruby
n0m4d1c_ has joined #ruby
n0m4d1c has quit [Read error: Connection reset by peer]
dviola has quit [Quit: WeeChat 2.0.1]
n0m4d1c has joined #ruby
lightstalker has quit [Ping timeout: 248 seconds]
troulouliou_div2 has quit [Quit: Leaving]
n0m4d1c_ has quit [Ping timeout: 255 seconds]
hndk has joined #ruby
desperek has quit [Quit: xoxo]
n0m4d1c has quit []
nowhereman_ has joined #ruby
sumobob_ has joined #ruby
nowhere_man has quit [Ping timeout: 256 seconds]
drewmcmillan has joined #ruby
shinnya has quit [Ping timeout: 256 seconds]
phaul has quit [Ping timeout: 256 seconds]
ramfjord has quit [Ping timeout: 255 seconds]
alfiemax has joined #ruby
naprimer has quit [Ping timeout: 256 seconds]
ramfjord has joined #ruby
naprimer2 has joined #ruby
despai has joined #ruby
orbyt_ has joined #ruby
sumobob_ has quit [Ping timeout: 260 seconds]
orbyt_ has quit [Client Quit]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
alfiemax has quit [Ping timeout: 256 seconds]
ramfjord has quit [Ping timeout: 240 seconds]
KDiddy has joined #ruby
sumobob_ has joined #ruby
gary_ has joined #ruby
elphe has quit [Quit: Lost terminal]
gary_ is now known as Guest45386
despai has quit [Client Quit]
KDiddy has quit [Client Quit]
n008f4g_ has quit [Ping timeout: 256 seconds]
Guest45386 has quit [Ping timeout: 256 seconds]
pastorin_ has quit [Remote host closed the connection]
RougeR has quit [Ping timeout: 248 seconds]
sumobob_ has quit [Ping timeout: 260 seconds]
jp has joined #ruby
elcontrastador has joined #ruby
drewmcmillan has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ecuanaso has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
beauby has joined #ruby
sumobob_ has joined #ruby
devil_tux has quit [Remote host closed the connection]
devil_tu1 has quit [Remote host closed the connection]
lightstalker has joined #ruby
beauby has quit [Ping timeout: 268 seconds]
gary__ has joined #ruby
sumobob_ has quit [Ping timeout: 252 seconds]
gary__ has quit [Ping timeout: 256 seconds]
safetypin has joined #ruby
cagomez has quit [Remote host closed the connection]
cagomez has joined #ruby
minimalism has quit [Ping timeout: 256 seconds]
<arahael> I'm trying to use ruby-lint in an attempt to improve the quality of the code, for the rake files.
<arahael> However, it has a ton of warnings, related to things like: "Undefined constant Rake", or "Undefined constant FileList", both of which exist in Rake. Writing 'include Rake' does not make any difference.
<arahael> How do I get ruby-lint to recognise these?
<arahael> Alternatively, what should I use instead of ruby-lint?
cagomez has quit [Ping timeout: 256 seconds]
houhoulis has joined #ruby
sylario has quit [Quit: Connection closed for inactivity]
rubycoder38 has quit [Ping timeout: 240 seconds]
sumobob_ has joined #ruby
rubycoder38 has joined #ruby
gary has joined #ruby
<havenwood> arahael: RuboCop is the most popular option for linting Ruby.
<arahael> havenwood: Isn't that just a *style* checker, though?
alfiemax has joined #ruby
gary is now known as Guest49551
<havenwood> arahael: Nope. You can disable the style checking and just use the linting if you want.
<arahael> Ah, nice, I'll have to check that, then.
<arahael> Does it do any type checking?
Guest49551 has quit [Ping timeout: 248 seconds]
sumobob_ has quit [Ping timeout: 276 seconds]
alfiemax has quit [Ping timeout: 256 seconds]
mikecmpbll has quit [Quit: inabit. zz.]
minimalism has joined #ruby
drewmcmillan has joined #ruby
<havenwood> arahael: it does static code analysis but no type checking
<arahael> havenwood: I think I'll just have to live with that.
sunrunner20 has joined #ruby
imalexalex has joined #ruby
orbyt_ has joined #ruby
<imalexalex> hello
darkhanb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
xfbs has quit []
guacamole has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
imalexalex has quit []
arescorpio has joined #ruby
cagomez has joined #ruby
cdg has joined #ruby
cagomez has quit [Remote host closed the connection]
cagomez has joined #ruby
<arahael> Why does rubocop prefer %r, %i, and %I for regexps and lists of strings?
cdg has quit [Ping timeout: 268 seconds]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
sameerynho has quit [Ping timeout: 256 seconds]
marxarelli is now known as marxarelli|afk
eckhardt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cagomez has quit [Remote host closed the connection]
cagomez has joined #ruby
A124 has quit [Ping timeout: 264 seconds]
xelkarin has quit [Quit: WeeChat 1.9.1]
A124 has joined #ruby
karapetyan has joined #ruby
<Eiam> arahael: its a literal for constructing regex
gary has joined #ruby
<Eiam> arahael: like %w(my array) constructs ["my","array"]
gary is now known as Guest95580
<arahael> Eiam: Right, but why does it prefer it? What's wrong with ["my", "array"]?
<Eiam> arahael: so in short I think the answer is "Rubocop is using Ruby functionality and like any stylistic choice it comes down to the author"
ramfjord has joined #ruby
Gnut has quit [Ping timeout: 256 seconds]
<Eiam> arahael: I personally prefer using %w because I don't need to use "" so much
<arahael> Eiam: In this case, it's a list of symbols.
cagomez has quit [Ping timeout: 240 seconds]
orbyt_ has joined #ruby
<Eiam> arahael: I couldn't answer why the authors prefered %r, I tend to write my regex in ruby with /regex/. I don't really know why I prefer that form over the other in this instance
beauby has joined #ruby
<arahael> Fair enough. Perhaps I should probably set up my own rules file.
<Eiam> arahael: some googling tells me %r makes paths easier to read
<arahael> Yeah... But paths aren't a regex!
sumobob_ has joined #ruby
<Eiam> %r{a/b/c} vs /a\/b\/c/
<arahael> I notice I have a 'setter' function in this file.
karapetyan has quit [Ping timeout: 255 seconds]
<arahael> ie: def set_foo
marr has quit [Ping timeout: 256 seconds]
<arahael> It's not easy to rename it, it sets something deep in the build system, can I use a 'def foo=(...)' method instead and would that magically work?
Guest95580 has quit [Ping timeout: 255 seconds]
kapil___ has quit [Quit: Connection closed for inactivity]
beauby has quit [Ping timeout: 240 seconds]
safetypin has quit [Quit: ZZZzzz…]
bigblind has quit [Ping timeout: 248 seconds]
SeepingN has quit [Quit: The system is going down for reboot NOW!]
sumobob_ has quit [Ping timeout: 255 seconds]
hndk has quit [Quit: Leaving]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cagomez has joined #ruby
<arahael> Eiam: Actually, %r does simplify them.
<arahael> Just made those changes. :)
<Eiam> arahael: cool =)
STYNC has joined #ruby
cagomez has quit [Ping timeout: 256 seconds]
Psybur__ has quit [Ping timeout: 256 seconds]
John_Ivan has quit [Read error: Connection reset by peer]
alfiemax has joined #ruby
SynSynack has quit [Quit: Не разучиться мечтать... любить...]
ResidentBiscuit has quit []
<arahael> Hmm, can I squash a particular rubocop warning for a particular line?
<arahael> Yep, I can. Neat.
n0m4d1c has joined #ruby
gary_ has joined #ruby
alfiemax has quit [Ping timeout: 276 seconds]
gary_ is now known as Guest72731
jenrzzz has quit [Ping timeout: 264 seconds]
lupine has quit [Ping timeout: 240 seconds]
Guest72731 has quit [Ping timeout: 276 seconds]
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
jenrzzz has joined #ruby
n0m4d1c has quit [Remote host closed the connection]
lupine has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
PaulCapestany has quit [Ping timeout: 240 seconds]
ged_ has joined #ruby
ged has quit [Read error: Connection reset by peer]
ged_ is now known as ged
bigblind has joined #ruby
PaulCapestany has joined #ruby
braderhart has joined #ruby
minimalism has quit [Ping timeout: 240 seconds]
sumobob_ has joined #ruby
instrud has quit [Ping timeout: 256 seconds]
Gnut has joined #ruby
andydna has joined #ruby
sumobob_ has quit [Ping timeout: 255 seconds]
<andydna> hi. how's it going? so, i'm trying to implement a musical dsl. is there anyway to undefine # as a comment in pure ruby, so i could write: C# = 60 ?
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
gizmore has joined #ruby
ecuanaso has joined #ruby
jenrzzz has quit [Ping timeout: 276 seconds]
minimalism has joined #ruby
exchgr has joined #ruby
gizmore|2 has quit [Ping timeout: 256 seconds]
gary has joined #ruby
gary is now known as Guest79682
orbyt_ has joined #ruby
mitt3ns is now known as agent_white
Guest79682 has quit [Ping timeout: 268 seconds]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
netherwolfe has joined #ruby
ogres has quit [Quit: Connection closed for inactivity]
cdg has joined #ruby
netherwolfe has quit [Ping timeout: 265 seconds]
alfiemax has joined #ruby
lupine has quit [Remote host closed the connection]
minimalism has quit [Quit: minimalism]
lupine has joined #ruby
cdg has quit [Ping timeout: 265 seconds]
alfiemax has quit [Ping timeout: 240 seconds]
cagomez has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cagomez has quit [Ping timeout: 240 seconds]
heyimwill has quit [Ping timeout: 276 seconds]
Bilge has quit [Ping timeout: 255 seconds]
Silthias has joined #ruby
Azure has quit [Read error: Connection reset by peer]
Asher has quit [Quit: Leaving.]
Azure has joined #ruby
Silthias1 has quit [Ping timeout: 268 seconds]
ammar has quit [Ping timeout: 268 seconds]
Bilge has joined #ruby
theRoUS has quit [Ping timeout: 276 seconds]
ammar has joined #ruby
Asher has joined #ruby
drewmcmillan has quit [Ping timeout: 276 seconds]
heyimwill has joined #ruby
jenrzzz has quit [Ping timeout: 248 seconds]
theRoUS has joined #ruby
drewmcmillan has joined #ruby
kapil___ has joined #ruby
jenrzzz has joined #ruby
alfiemax has joined #ruby
znz_jp has quit [Remote host closed the connection]
jenrzzz has quit [Ping timeout: 264 seconds]
gary_ has joined #ruby
alfiemax has quit [Ping timeout: 240 seconds]
gary_ is now known as Guest82376
cpallares has quit [Ping timeout: 248 seconds]
jenrzzz has joined #ruby
znz_jp has joined #ruby
ramfjord has quit [Ping timeout: 240 seconds]
willmichael has quit [Ping timeout: 240 seconds]
darkhanb has joined #ruby
karapetyan has joined #ruby
Guest82376 has quit [Ping timeout: 276 seconds]
cpallares has joined #ruby
jenrzzz has quit [Ping timeout: 268 seconds]
willmichael has joined #ruby
vutral|kali has joined #ruby
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
karapetyan has quit [Ping timeout: 276 seconds]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
X-Jester has quit [Quit: leaving]
X-Jester has joined #ruby
jenrzzz has quit [Ping timeout: 256 seconds]
govg has quit [Ping timeout: 256 seconds]
kies has quit [Ping timeout: 256 seconds]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
alfiemax has joined #ruby
beauby has joined #ruby
govg has joined #ruby
jenrzzz has quit [Ping timeout: 260 seconds]
andydna has quit [Quit: Lost terminal]
alfiemax has quit [Ping timeout: 248 seconds]
beauby has quit [Ping timeout: 240 seconds]
arescorpio has quit [Excess Flood]
bmurt has joined #ruby
pastorinni has joined #ruby
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
gary has joined #ruby
gary is now known as Guest84780
vutral|kali has quit [Ping timeout: 268 seconds]
Guest84780 has quit [Ping timeout: 256 seconds]
Matthew1 has joined #ruby
vutral|kali has joined #ruby
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
gary_ has joined #ruby
gary_ is now known as Guest94188
Guest94188 has quit [Ping timeout: 256 seconds]
drewmcmillan has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
vutral|kali has quit [Ping timeout: 256 seconds]
Matthew1 has quit [Ping timeout: 268 seconds]
vutral|kali has joined #ruby
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
Matthew1 has joined #ruby
sumobob_ has joined #ruby
vutral|kali has quit [Ping timeout: 256 seconds]
sumobob_ has quit [Ping timeout: 265 seconds]
gary__ has joined #ruby
vasily_kulhacker has joined #ruby
vasily_kulhacker has quit [Read error: Connection reset by peer]
pastorinni has quit [Remote host closed the connection]
ramfjord has joined #ruby
ghormoon has quit [Ping timeout: 240 seconds]
jenrzzz has quit [Ping timeout: 256 seconds]
trautwein has quit [Quit: ZNC 1.6.5 - http://znc.in]
trautwein has joined #ruby
bigblind has quit [Ping timeout: 256 seconds]
vutral|kali has joined #ruby
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
houhoulis has quit [Remote host closed the connection]
ramfjord has quit [Ping timeout: 248 seconds]
ghormoon has joined #ruby
codimiracle_ has joined #ruby
kies has joined #ruby
codimiracle_ has left #ruby [#ruby]
cagomez has joined #ruby
codimiracle_ has joined #ruby
codimiracle_ has left #ruby [#ruby]
codimiracle_ has joined #ruby
vutral|kali has quit [Ping timeout: 260 seconds]
ziso has joined #ruby
vutral|kali has joined #ruby
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
knight33 has joined #ruby
ogres has joined #ruby
codimiracle_ has quit [Quit: codimiracle]
codimiracle_ has joined #ruby
codimiracle_ is now known as codimiracle
zacts has quit [Quit: WeeChat 1.9.1]
codimiracle has quit [Client Quit]
zacts has joined #ruby
ecuanaso has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
codimiracle has joined #ruby
codimiracle has quit [Client Quit]
knight33 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ecuanaso has joined #ruby
gix- has joined #ruby
gix has quit [Disconnected by services]
jenrzzz has quit [Ping timeout: 256 seconds]
braderhart has quit [Quit: Connection closed for inactivity]
nowhere_man has joined #ruby
spencer has joined #ruby
nowhereman_ has quit [Ping timeout: 248 seconds]
alfiemax has joined #ruby
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
<spencer> I have an array of hashes. If I reference the array myUsers[0].name I get the name. If I do myUsers.each do |user| user.name end It will return everything for that current user. What is the proper way to loop over the array and get a value from each item.
<Radar> spencer: users.map(&:name)
vutral|kali has quit [Ping timeout: 264 seconds]
<spencer> Thats it. Thank you.
<Radar> spencer: I would recommend going through the Enumerable documentation and having a look at all the methods it provides you. Super helpful stuff to know.
<Radar> ?ri Enumerable
<ruby[bot]> Radar: I don't see no Enumerable, whom should I tell about ri?
<Radar> One day ruby[bot]. One day.
alfiemax has quit [Ping timeout: 276 seconds]
<havenwood> &ri Enumerable
<spencer> Thank you
seal_ has joined #ruby
<Radar> havenwood: How do we update that to point to 2.5.0?
<havenwood> adaedra: ^
<seal_> hlo
<havenwood> seal_: hi
cagomez has quit [Remote host closed the connection]
<seal_> What is better books or online courses for professional ruby learning?
ziso has quit [Ping timeout: 268 seconds]
AJA4350 has quit [Quit: AJA4350]
beauby has joined #ruby
aguestuser has quit [Remote host closed the connection]
CrazyEddy has quit [Ping timeout: 248 seconds]
aguestuser has joined #ruby
ecuanaso has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
alfiemax has joined #ruby
ziso has joined #ruby
bigblind has joined #ruby
sidx64 has joined #ruby
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
beauby has quit [Ping timeout: 260 seconds]
jenrzzz has quit [Ping timeout: 268 seconds]
jenrzzz has joined #ruby
STYNC has quit [Quit: Leaving]
CrazyEddy has joined #ruby
<baweaver> That about covers the gist of it
darkhanb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ziso has quit [Ping timeout: 248 seconds]
phate408 has joined #ruby
apeiros has quit [Remote host closed the connection]
jenrzzz has quit [Ping timeout: 268 seconds]
jenrzzz has joined #ruby
sumobob_ has joined #ruby
jenrzzz has quit [Ping timeout: 256 seconds]
Hobbyboy has quit [Ping timeout: 255 seconds]
sumobob_ has quit [Ping timeout: 240 seconds]
conta has joined #ruby
vutral|kali has joined #ruby
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
conta has quit [Remote host closed the connection]
Hobbyboy has joined #ruby
jamesaxl has joined #ruby
jenrzzz has joined #ruby
vutral|kali has quit [Ping timeout: 248 seconds]
seal_ has quit [Ping timeout: 256 seconds]
jenrzzz has quit [Ping timeout: 256 seconds]
vutral|kali has joined #ruby
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
fp-_ has joined #ruby
fp-_ has quit [Client Quit]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
fp- has joined #ruby
ta_ has quit [Remote host closed the connection]
fp- has quit [Quit: WeeChat 1.4]
vutral|kali has quit [Ping timeout: 260 seconds]
vutral|kali has joined #ruby
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
sagax has quit [Quit: Konversation terminated!]
jenrzzz has quit [Ping timeout: 248 seconds]
jenrzzz has joined #ruby
mtkd has joined #ruby
vutral|kali has quit [Ping timeout: 248 seconds]
jenrzzz has quit [Ping timeout: 248 seconds]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
vutral|kali has joined #ruby
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
cdg has joined #ruby
alex`` has joined #ruby
cdg has quit [Ping timeout: 276 seconds]
<dminuoso> baweaver: Can you please update your gist to not SCREAMING CASE RSPEC?
karapetyan has joined #ruby
darkhanb has joined #ruby
vutral|kali has quit [Ping timeout: 256 seconds]
aufi has joined #ruby
n008f4g_ has joined #ruby
darkhanb has quit [Client Quit]
darkhanb has joined #ruby
karapetyan has quit [Ping timeout: 260 seconds]
alfiemax has quit [Read error: Connection reset by peer]
alfiemax has joined #ruby
darkhanb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
alfiemax has quit [Ping timeout: 240 seconds]
ken^arok has joined #ruby
darkhanb has joined #ruby
ziso has joined #ruby
sidx64_ has joined #ruby
sidx64 has quit [Read error: Connection reset by peer]
troys has quit [Quit: Bye]
sidx64 has joined #ruby
ogres has quit [Quit: Connection closed for inactivity]
amatas has joined #ruby
sidx64_ has quit [Ping timeout: 276 seconds]
sumobob_ has joined #ruby
sumobob_ has quit [Ping timeout: 255 seconds]
n008f4g_ has quit [Ping timeout: 256 seconds]
anisha has joined #ruby
LocaMocha has joined #ruby
Tempesta has quit [Read error: Connection reset by peer]
Tempesta has joined #ruby
Tempesta has quit [Changing host]
Tempesta has joined #ruby
lacour has quit [Quit: Leaving]
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
beauby has joined #ruby
apeiros has joined #ruby
jenrzzz has quit [Ping timeout: 276 seconds]
beauby has quit [Ping timeout: 240 seconds]
<baweaver> dminuoso NEVER
gizmore has quit [Quit: KVIrc 4.9.2 Aria http://www.kvirc.net/]
andikr has joined #ruby
jenrzzz has joined #ruby
vondruch has quit [Quit: vondruch]
jenrzzz has quit [Ping timeout: 255 seconds]
<dminuoso> SAD PANDA.
guardianx has joined #ruby
spencer has quit [Quit: Page closed]
bijan_ has joined #ruby
rrutkowski has joined #ruby
despai has joined #ruby
rrutkowski has quit [Remote host closed the connection]
bijan_ is now known as bijan_awaaaay
darkhanb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
gary__ has quit [Ping timeout: 248 seconds]
ta_ has joined #ruby
beauby has joined #ruby
guardianx has quit []
konsolebox has quit [Ping timeout: 256 seconds]
despai has quit [Quit: ...]
konsolebox has joined #ruby
huyderman has joined #ruby
gary has joined #ruby
gary is now known as Guest68101
braderhart has joined #ruby
darkhanb has joined #ruby
darkhanb has quit [Client Quit]
jenrzzz has joined #ruby
darkhanb has joined #ruby
jenrzzz has quit [Ping timeout: 255 seconds]
jenrzzz has joined #ruby
ramfjord has joined #ruby
vondruch has joined #ruby
Guest68101 has quit [Ping timeout: 240 seconds]
ramfjord has quit [Ping timeout: 276 seconds]
dionysus69 has joined #ruby
Silthias1 has joined #ruby
Silthias has quit [Ping timeout: 264 seconds]
Sina has joined #ruby
mtkd has quit []
darkhanb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
gary_ has joined #ruby
anisha_ has joined #ruby
gary_ is now known as Guest27431
beauby has quit [Ping timeout: 268 seconds]
mtkd has joined #ruby
claudiuinberlin has joined #ruby
anisha has quit [Ping timeout: 256 seconds]
sidx64 has joined #ruby
Guest27431 has quit [Ping timeout: 248 seconds]
gary has joined #ruby
gary is now known as Guest11881
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
vutral|kali has joined #ruby
marr has joined #ruby
vutral|kali has quit [Ping timeout: 252 seconds]
Guest11881 has quit [Ping timeout: 260 seconds]
LocaMocha is now known as Sauvin
jenrzzz has quit [Ping timeout: 248 seconds]
gary__ has joined #ruby
jenrzzz has joined #ruby
aupadhye has joined #ruby
nowhereman has joined #ruby
nowhereman is now known as Guest37349
gary__ has quit [Ping timeout: 256 seconds]
guille-moe has joined #ruby
gary__ has joined #ruby
nowhere_man has quit [Ping timeout: 276 seconds]
theSolTrain has joined #ruby
vutral|kali has joined #ruby
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
quobo has joined #ruby
mikecmpbll has joined #ruby
vutral|kali has quit [Ping timeout: 240 seconds]
gary__ has quit [Ping timeout: 256 seconds]
gary__ has joined #ruby
andriusbartulis has joined #ruby
beauby has joined #ruby
mitt3ns has joined #ruby
twe4ked has quit [Ping timeout: 276 seconds]
agent_white has quit [Ping timeout: 248 seconds]
twe4ked has joined #ruby
SirOliver has joined #ruby
anisha__ has joined #ruby
tomphp has joined #ruby
anisha_ has quit [Ping timeout: 260 seconds]
SirOliver has left #ruby [#ruby]
tomphp has quit [Read error: Connection reset by peer]
karapetyan has joined #ruby
Silthias1 has left #ruby [#ruby]
jenrzzz has quit [Ping timeout: 256 seconds]
ziso has quit [Ping timeout: 260 seconds]
Silthias has joined #ruby
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
gary__ has quit [Ping timeout: 240 seconds]
Silthias has left #ruby [#ruby]
mtkd has quit []
gary has joined #ruby
riotjones has joined #ruby
gary is now known as Guest1457
remix2000 has quit [Changing host]
remix2000 has joined #ruby
mtkd has joined #ruby
konsolebox has quit [Ping timeout: 264 seconds]
Guest1457 has quit [Ping timeout: 256 seconds]
gary_ has joined #ruby
ramfjord has joined #ruby
konsolebox has joined #ruby
gary_ is now known as Guest79461
phaul has joined #ruby
Serpent7776 has joined #ruby
anisha_ has joined #ruby
_whitelogger has joined #ruby
ziso has joined #ruby
duderonomy has joined #ruby
duderonomy is now known as Guest34040
rippa has joined #ruby
vondruch_ has joined #ruby
ziso has quit [Client Quit]
huyderman has quit [Remote host closed the connection]
konsolebox has joined #ruby
vondruch_ has quit [Client Quit]
vondruch has quit [Read error: Connection reset by peer]
vondruch has joined #ruby
GodFather has quit [Read error: Connection reset by peer]
GodFather has joined #ruby
jenrzzz has quit [Ping timeout: 256 seconds]
mostlybadfly has quit [Quit: Connection closed for inactivity]
kapil___ has quit [Quit: Connection closed for inactivity]
karapetyan has quit [Remote host closed the connection]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
<Bish> IT'S SO QUIET
<Bish> I WANT RUBY DISCUSSIONS
<dminuoso> k
Fusselgesicht has joined #ruby
vutral|kali has joined #ruby
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
<dminuoso> Bish: Rig Proc to curry with push/enter
<Bish> I DON'T KNOW 30% OF THAT QUESTION
<Bish> what is push/enter
<dminuoso> GUESS YOU SHOULD READ PAPERS THEN
<dminuoso> Or do eval/apply - dealers choice.
<Bish> i didn't even understands thunks
<Bish> a.e.
theSolTrain has quit [Remote host closed the connection]
<dminuoso> Bish: a thunk is just a suspended computation.
<Bish> take 10 $ iterate (*2) 2
<Bish> i see the numbers, but iterate does create thunks
<dminuoso> a paused computation
<Bish> doesn't it?
<dminuoso> nothing else
<riotjones> I would choose eval/apply
theSolTrain has joined #ruby
<dminuoso> Bish: functions dont create thunks.
<Bish> hm
<Bish> if i have f and f^-1 in haskell
<Bish> will haskell optimize a endless series of f(f^-1(f(...)))
<dminuoso> Bish: > -ot
<Bish> dminuoso: what would create a thunk?
<Bish> :(
<dminuoso> Bish: #ruby-offtopic
<dminuoso> Otherwise apeiros will go nuts.
Guest79461 has quit [Ping timeout: 260 seconds]
bijan_awaaaay has quit [Quit: System has gone to sleep. ZZZzzz…]
vutral|kali has quit [Ping timeout: 268 seconds]
tomphp has joined #ruby
clemens3 has joined #ruby
konsolebox has quit [Ping timeout: 248 seconds]
Guest34040 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
konsolebox has joined #ruby
gary has joined #ruby
jenrzzz has quit [Ping timeout: 248 seconds]
gary is now known as Guest28298
braderhart has quit [Quit: Connection closed for inactivity]
alfiemax has joined #ruby
[1]zkv has joined #ruby
Azure|dc has joined #ruby
reber has joined #ruby
kapil___ has joined #ruby
zkv has quit [Ping timeout: 264 seconds]
[1]zkv is now known as zkv
theSolTrain has quit [Ping timeout: 248 seconds]
cgfbee has quit [Excess Flood]
RougeR has joined #ruby
RougeR has joined #ruby
armyriad has quit [Ping timeout: 264 seconds]
jsrtr has quit [Ping timeout: 264 seconds]
jsrtr has joined #ruby
Azure has quit [Ping timeout: 264 seconds]
armyriad has joined #ruby
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
<apeiros> dminuoso: so now I'm a bludgeon to threaten people with?
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
vutral|kali has joined #ruby
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
helpa-bot has joined #ruby
bigblind has quit [Ping timeout: 256 seconds]
heinrich5991_ has joined #ruby
cpt_yossarian has joined #ruby
cpt_yossarian has joined #ruby
Kilo`byt- has joined #ruby
mlehrer_ has joined #ruby
rideh has quit [Ping timeout: 264 seconds]
kke has quit [Ping timeout: 264 seconds]
heinrich5991 has quit [Ping timeout: 264 seconds]
Yxhuvud has quit [Ping timeout: 264 seconds]
woodruffw has quit [Ping timeout: 264 seconds]
helpa has quit [Ping timeout: 264 seconds]
coffeejunk has quit [Ping timeout: 264 seconds]
Kilo`byte has quit [Ping timeout: 264 seconds]
sqbell has quit [Ping timeout: 264 seconds]
mlehrer has quit [Ping timeout: 264 seconds]
roger_rabbit has quit [Ping timeout: 264 seconds]
zachary12 has quit [Ping timeout: 264 seconds]
leonthemisfit has quit [Ping timeout: 264 seconds]
Yxhuvud has joined #ruby
kke has joined #ruby
sqbell_ has joined #ruby
coffeejunk has joined #ruby
rideh has joined #ruby
tomphp_ has joined #ruby
Fusselgesicht has quit [Ping timeout: 264 seconds]
cgfbee has joined #ruby
leonthemisfit has joined #ruby
leonthemisfit has joined #ruby
leonthemisfit has quit [Changing host]
adlerdias has joined #ruby
helpa-bot has quit [Remote host closed the connection]
roger_rabbit has joined #ruby
helpa has joined #ruby
heinrich5991_ is now known as heinrich5991
jamesaxl has quit [Read error: Connection reset by peer]
zachary12 has joined #ruby
konsolebox has quit [Ping timeout: 260 seconds]
phenom has quit [Ping timeout: 260 seconds]
LenPayne has quit [Ping timeout: 260 seconds]
bokayio has quit [Ping timeout: 240 seconds]
jamesaxl has joined #ruby
vutral|kali has quit [Ping timeout: 248 seconds]
lele has quit [Ping timeout: 260 seconds]
Guest28298 has quit [Ping timeout: 255 seconds]
bokayio has joined #ruby
LenPayne has joined #ruby
konsolebox has joined #ruby
lele has joined #ruby
gary_ has joined #ruby
phenom has joined #ruby
gary_ is now known as Guest77379
bigblind has joined #ruby
Fusselgesicht has joined #ruby
Caius has quit [Quit: ""]
John_Ivan has joined #ruby
John_Ivan has joined #ruby
John_Ivan has quit [Changing host]
Caius has joined #ruby
Caius has joined #ruby
Caius has quit [Changing host]
clemens3 has quit [Ping timeout: 248 seconds]
vutral|kali has joined #ruby
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
Guest77379 has quit [Ping timeout: 240 seconds]
hfp_work has quit [Quit: bye]
gary__ has joined #ruby
vondruch has quit [Quit: vondruch]
hfp_work has joined #ruby
lele has quit [Ping timeout: 256 seconds]
ken^arok has quit [Remote host closed the connection]
vondruch has joined #ruby
Caius has quit [Ping timeout: 248 seconds]
<dminuoso> apeiros: I wouldn't care to club people to death with you.
<dminuoso> You are more like an attack dog without a leash!
lele has joined #ruby
conta has joined #ruby
John__ has joined #ruby
vutral|kali has quit [Ping timeout: 248 seconds]
tomphp has joined #ruby
helpa has quit [Remote host closed the connection]
helpa-bot has joined #ruby
helpa-bot has joined #ruby
faces has joined #ruby
vutral|kali has joined #ruby
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
vondruch has quit [Quit: vondruch]
Dimik has quit [Ping timeout: 255 seconds]
helpa-bot has quit [Remote host closed the connection]
shinnya has joined #ruby
helpa has joined #ruby
gary__ has quit [Ping timeout: 255 seconds]
theRoUS has quit [Changing host]
theRoUS has joined #ruby
John_Ivan has quit [Ping timeout: 264 seconds]
tomphp_ has quit [Ping timeout: 264 seconds]
phenom has quit [Ping timeout: 264 seconds]
akhkharu has quit [Ping timeout: 264 seconds]
helpa-bot has joined #ruby
vutral|kali has quit [Ping timeout: 255 seconds]
alfiemax has quit [Ping timeout: 256 seconds]
Yxhvd has joined #ruby
stan_ has joined #ruby
guille-moe has quit [Ping timeout: 260 seconds]
vondruch has joined #ruby
badeball_ has joined #ruby
kke_ has joined #ruby
vondruch has quit [Client Quit]
helpa-bot has quit [Remote host closed the connection]
helpa-bot has joined #ruby
wwalker_ has joined #ruby
chihhsin has joined #ruby
shinnya_ has joined #ruby
helpa-bot has quit [Remote host closed the connection]
brainslug has joined #ruby
helpa-bot has joined #ruby
arthurnn_ has joined #ruby
ledestin has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
phenom has joined #ruby
nowhere_man has joined #ruby
vondruch has joined #ruby
helpa-bot has quit [Remote host closed the connection]
jpterry_ has joined #ruby
AlHafoudh_ has joined #ruby
WebDawgII has joined #ruby
helpa has quit [Ping timeout: 264 seconds]
eb0t has quit [Ping timeout: 264 seconds]
jpterry has quit [Ping timeout: 264 seconds]
arthurnn has quit [Ping timeout: 264 seconds]
arthurnn_ is now known as arthurnn
badeball has quit [Ping timeout: 264 seconds]
shinnya has quit [Ping timeout: 264 seconds]
Yxhuvud has quit [Ping timeout: 264 seconds]
wolfshappen has quit [Ping timeout: 264 seconds]
roger_rabbit has quit [Ping timeout: 264 seconds]
kke has quit [Ping timeout: 264 seconds]
WebDawg has quit [Ping timeout: 264 seconds]
wwalker has quit [Ping timeout: 264 seconds]
chihhsin_ has quit [Ping timeout: 264 seconds]
AlHafoudh has quit [Ping timeout: 264 seconds]
jpterry_ is now known as jpterry
ldnunes has joined #ruby
AlHafoudh_ is now known as AlHafoudh
helpa has joined #ruby
guille-moe has joined #ruby
Guest37349 has quit [Ping timeout: 256 seconds]
roger_rabbit has joined #ruby
vondruch has quit [Client Quit]
vondruch has joined #ruby
amatas has quit [Remote host closed the connection]
amatas has joined #ruby
wolfshappen has joined #ruby
saksida has quit [Ping timeout: 268 seconds]
anisha_ has quit [Ping timeout: 260 seconds]
eb0t has joined #ruby
saksida has joined #ruby
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
vutral|kali has joined #ruby
anisha_ has joined #ruby
n0m4d1c has joined #ruby
tvw has joined #ruby
delaz has joined #ruby
ramfjord has joined #ruby
roshanavand has quit [Ping timeout: 256 seconds]
jaruga has joined #ruby
ramfjord has quit [Ping timeout: 252 seconds]
bigblind has quit [Ping timeout: 256 seconds]
jaruga has quit [Read error: Connection reset by peer]
snickers has joined #ruby
S007 has quit [Ping timeout: 276 seconds]
vutral|kali has quit [Ping timeout: 265 seconds]
roshanavand has joined #ruby
SynSynack has joined #ruby
konsolebox has quit [Ping timeout: 240 seconds]
AJA4350 has joined #ruby
konsolebox has joined #ruby
SynSynack has quit [Client Quit]
S007 has joined #ruby
Psybur__ has joined #ruby
jenrzzz has quit [Ping timeout: 248 seconds]
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
delaz has left #ruby [#ruby]
mtkd has quit []
Psybur__ has quit [Ping timeout: 240 seconds]
sidx64 has joined #ruby
mrBen2k2k2k has joined #ruby
konsolebox has quit [Ping timeout: 240 seconds]
mtkd has joined #ruby
konsolebox has joined #ruby
SynSynack has joined #ruby
Caius has joined #ruby
Caius has quit [Changing host]
Caius has joined #ruby
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
gary has joined #ruby
mostlybadfly has joined #ruby
gary is now known as Guest55454
bigblind has joined #ruby
Guest55454 has quit [Ping timeout: 256 seconds]
guille-moe has quit [Ping timeout: 260 seconds]
dinfuehr has quit [Ping timeout: 240 seconds]
dinfuehr has joined #ruby
vutral|kali has joined #ruby
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
RougeR has quit [Ping timeout: 260 seconds]
apparition has joined #ruby
vutral|kali has quit [Ping timeout: 248 seconds]
bmurt has joined #ruby
bmurt has quit [Client Quit]
shinnya_ has quit [Ping timeout: 240 seconds]
untitaker has quit [Ping timeout: 255 seconds]
Travis-42 has quit [Ping timeout: 255 seconds]
bmurt has joined #ruby
xpt has quit [Ping timeout: 240 seconds]
nadir has quit [Quit: Connection closed for inactivity]
Flabbergazta has quit [Ping timeout: 255 seconds]
skmp has quit [Ping timeout: 255 seconds]
yo61 has quit [Ping timeout: 240 seconds]
iamayam has quit [Ping timeout: 255 seconds]
roshanavand1 has joined #ruby
pfg has quit [Ping timeout: 255 seconds]
roshanavand has quit [Read error: No route to host]
iamayam has joined #ruby
Travis-42 has joined #ruby
wwalker_ has quit [Ping timeout: 240 seconds]
guest has quit [Ping timeout: 255 seconds]
yo61 has joined #ruby
koenrh has quit [Ping timeout: 255 seconds]
drewmcmillan has joined #ruby
guest has joined #ruby
Flabbergazta has joined #ruby
koenrh has joined #ruby
pfg has joined #ruby
Diabolik_ has quit [Ping timeout: 255 seconds]
skmp has joined #ruby
untitaker has joined #ruby
mikecmpbll has quit [Quit: inabit. zz.]
wwalker has joined #ruby
xpt has joined #ruby
Diabolik_ has joined #ruby
mistergibson has quit [Ping timeout: 240 seconds]
mistergibson has joined #ruby
alfiemax has joined #ruby
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
vutral|kali has joined #ruby
mtkd has quit []
spiette has quit [Ping timeout: 248 seconds]
alfiemax has quit [Ping timeout: 255 seconds]
mtkd has joined #ruby
spiette has joined #ruby
VladGh_ has quit [Remote host closed the connection]
VladGh has joined #ruby
synthroid has joined #ruby
alex`` has quit [Ping timeout: 276 seconds]
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
alfiemax has joined #ruby
guille-moe has joined #ruby
willmichael has quit [Ping timeout: 268 seconds]
koenrh has quit [Ping timeout: 255 seconds]
koenrh has joined #ruby
solidsnack has quit [Ping timeout: 255 seconds]
alfiemax has quit [Ping timeout: 248 seconds]
Matthew1 has quit [Ping timeout: 255 seconds]
Matthew1 has joined #ruby
lxsameer has quit [Quit: WeeChat 1.9.1]
rwb has quit [Ping timeout: 240 seconds]
willmichael has joined #ruby
solidsnack has joined #ruby
Papierkorb has joined #ruby
alex`` has joined #ruby
lxsameer has joined #ruby
phaul has quit [Quit: WeeChat 2.0.1]
vutral|kali has quit [Ping timeout: 256 seconds]
alfiemax has joined #ruby
gary has joined #ruby
gary is now known as Guest69332
alfiemax has quit [Ping timeout: 240 seconds]
alfiemax has joined #ruby
theSolTrain has joined #ruby
Papierkorb has left #ruby ["Konversation terminated!"]
jamesaxl has quit [Read error: Connection reset by peer]
alfiemax has quit [Remote host closed the connection]
jamesaxl has joined #ruby
SirOliver has joined #ruby
theSolTrain has quit [Remote host closed the connection]
theSolTrain has joined #ruby
Guest69332 has quit [Ping timeout: 255 seconds]
ramfjord has joined #ruby
yohji has joined #ruby
theSolTrain has quit [Remote host closed the connection]
theSolTrain has joined #ruby
RougeR has joined #ruby
gary has joined #ruby
drewmcmillan has quit [Read error: Connection reset by peer]
gary is now known as Guest77591
drewmcmillan has joined #ruby
Psybur__ has joined #ruby
ramfjord has quit [Ping timeout: 248 seconds]
tcopeland has quit [Quit: tcopeland]
mikecmpbll has joined #ruby
bigblind has quit [Ping timeout: 248 seconds]
Guest77591 has quit [Ping timeout: 248 seconds]
gary_ has joined #ruby
gary_ is now known as Guest50594
agent_white has joined #ruby
cstrahan has quit [Ping timeout: 255 seconds]
<Bish> STILL SO QUIET
mitt3ns has quit [Ping timeout: 255 seconds]
Bosma has quit [Ping timeout: 255 seconds]
cdg has joined #ruby
Bosma has joined #ruby
alfiemax has joined #ruby
cstrahan has joined #ruby
teej has quit [Ping timeout: 255 seconds]
Meow-J_ has quit [Ping timeout: 255 seconds]
memo1 has joined #ruby
elcontrastador has quit [Ping timeout: 248 seconds]
raggi has quit [Ping timeout: 255 seconds]
anisha__ has joined #ruby
anisha_ has quit [Ping timeout: 276 seconds]
teej has joined #ruby
naztharune has joined #ruby
alfiemax has quit [Ping timeout: 256 seconds]
Psybur_ has joined #ruby
Psybur__ has quit [Ping timeout: 252 seconds]
snickers has quit [Ping timeout: 255 seconds]
Meow-J_ has joined #ruby
raggi has joined #ruby
mtkd has quit []
jcalla has joined #ruby
Guest50594 has quit [Ping timeout: 256 seconds]
drewmcmillan has quit [Quit: Textual IRC Client: www.textualapp.com]
mtkd has joined #ruby
blood|work has quit [Read error: Connection reset by peer]
leitz has joined #ruby
alfiemax has joined #ruby
anisha_ has joined #ruby
anisha__ has quit [Ping timeout: 255 seconds]
alfiemax_ has joined #ruby
vutral|kali has joined #ruby
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
tcopeland has joined #ruby
alfiemax has quit [Ping timeout: 255 seconds]
bigblind has joined #ruby
Psybur_ is now known as Psybur
Psybur has quit [Changing host]
Psybur has joined #ruby
bijan_ has joined #ruby
karapetyan has joined #ruby
lxsameer has quit [Quit: WeeChat 1.9.1]
ecuanaso has joined #ruby
jrafanie has joined #ruby
memo1 has quit [Ping timeout: 240 seconds]
safetypin has joined #ruby
lxsameer has joined #ruby
dn` has quit [Ping timeout: 248 seconds]
lxsameer has quit [Client Quit]
dn` has joined #ruby
mtkd has quit []
willmichael has quit [Ping timeout: 260 seconds]
mtkd has joined #ruby
kapil___ has quit [Quit: Connection closed for inactivity]
apparition has quit [Quit: Bye]
willmichael has joined #ruby
govg has quit [Ping timeout: 260 seconds]
memo1 has joined #ruby
konsolebox has quit [Ping timeout: 240 seconds]
konsolebox has joined #ruby
tw1sted has quit [Remote host closed the connection]
ldnunes has quit [Quit: Leaving]
raynold has quit [Quit: Connection closed for inactivity]
bijan_ is now known as bijan_awaaaay
knight33 has joined #ruby
knight33 has quit [Remote host closed the connection]
tcopeland has quit [Quit: tcopeland]
beauby has quit [Ping timeout: 240 seconds]
[Butch] has joined #ruby
beauby has joined #ruby
gary has joined #ruby
gary is now known as Guest25285
Fraeon has quit [Ping timeout: 265 seconds]
tw1sted has joined #ruby
quobo has quit [Quit: Connection closed for inactivity]
ta_ has quit [Remote host closed the connection]
vutral|kali has quit [Ping timeout: 255 seconds]
Fraeon has joined #ruby
AJA4350 has quit [Remote host closed the connection]
andriusbartulis_ has joined #ruby
lxsameer has joined #ruby
Guest25285 has quit [Ping timeout: 256 seconds]
AJA4350 has joined #ruby
k0mpa has joined #ruby
andriusbartulis has quit [Ping timeout: 256 seconds]
knight33 has joined #ruby
ramfjord has joined #ruby
theSolTrain has quit [Remote host closed the connection]
fyrril has joined #ruby
theSolTrain has joined #ruby
vutral|kali has joined #ruby
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
Rapture has joined #ruby
soniya29 has joined #ruby
bijan_awaaaay is now known as bijan_
tcopeland has joined #ruby
theSolTrain has quit [Remote host closed the connection]
ramfjord has quit [Ping timeout: 256 seconds]
theSolTrain has joined #ruby
nadir has joined #ruby
snath has quit [Ping timeout: 256 seconds]
theSolTrain has quit [Ping timeout: 240 seconds]
foxxxx has joined #ruby
<riotjones> Bish: When do you think quantum computing will be ready and we all have to change the crypto lib to quantum crypto libs?
<foxxxx> When using "serve" why would my ruby file be served as text, and not interputed ?
pastorinni has joined #ruby
Nicmavr has quit [Ping timeout: 252 seconds]
<foxxxx> There must be a reason.
[Butch] has quit [Quit: Textual IRC Client: www.textualapp.com]
mikecmpbll has quit [Ping timeout: 255 seconds]
kapil___ has joined #ruby
memo1 has quit [Ping timeout: 248 seconds]
soniya29 has quit [Ping timeout: 260 seconds]
jeffreylevesque has quit [Ping timeout: 240 seconds]
Nicmavr has joined #ruby
Nicmavr is now known as Guest3558
bijan_ is now known as bijan_awaaaay
snickers has joined #ruby
mikecmpbll has joined #ruby
vutral|kali has quit [Ping timeout: 264 seconds]
netherwolfe has joined #ruby
beauby has quit [Ping timeout: 240 seconds]
yohji has quit [Ping timeout: 252 seconds]
beauby has joined #ruby
willmichael has quit [Ping timeout: 240 seconds]
gizmore has joined #ruby
yohji has joined #ruby
krawchyk has joined #ruby
mikecmpbll has quit [Quit: inabit. zz.]
dviola has joined #ruby
mikecmpbll has joined #ruby
tvw has quit [Remote host closed the connection]
n0m4d1c has quit [Ping timeout: 256 seconds]
mrBen2k2k2k_ has joined #ruby
shoogz has joined #ruby
jrafanie_ has joined #ruby
jrafanie has quit [Ping timeout: 260 seconds]
n008f4g_ has joined #ruby
internoc has joined #ruby
conta has quit [Ping timeout: 240 seconds]
Bisyari has joined #ruby
Coito has joined #ruby
Kamel has joined #ruby
<Bisyari> #devuan is nice
<Coito> #devuan is nice
<Kamel> Join #devuan for more info
<Bisyari> I choose #devuan and recommend it to everyone.
<Coito> I choose #devuan and recommend it to everyone.
<Kamel> #devuan is cool because it is systemd-free
<Coito> Why systemd wants to control our minds?
<Bisyari> Why systemd wants to control our minds?
<Kamel> Why systemd wants to control our minds?
<Coito> Join #devuan for more info
<Bisyari> Join #devuan for more info
<Kamel> I choose #devuan and recommend it to everyone.
<Coito> #devuan is cool because it is systemd-free
Coito has quit [K-Lined]
<Bisyari> #devuan is cool because it is systemd-free
<Kamel> #devuan is nice
<Bisyari> #devuan is nice
<Kamel> Join #devuan for more info
<Bisyari> I choose #devuan and recommend it to everyone.
<Kamel> #devuan is cool because it is systemd-free
<Bisyari> Why systemd wants to control our minds?
<Kamel> Why systemd wants to control our minds?
<apeiros> please stop spamming
<Bisyari> Join #devuan for more info
<Kamel> I choose #devuan and recommend it to everyone.
<apeiros> !spam Bisyari
Bisyari was kicked from #ruby by ruby[bot] [spamming is a bannable offense, see http://ruby-community.com/pages/user_rules]
<apeiros> !spam Kamel
Kamel was kicked from #ruby by ruby[bot] [spamming is a bannable offense, see http://ruby-community.com/pages/user_rules]
<apeiros> !spam Coito
synthroid has quit [Remote host closed the connection]
<apeiros> yeah, we say NO to spam. kthxbye.
dionysus69 has quit [Ping timeout: 256 seconds]
snickers has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<leitz> apeiros, thanks! I'm not really for systemd but don't usually talk about it on Ruby.
* leitz is wanting to get to reading his "new" used book on OO design.
<apeiros> leitz: the above was obviously just mindless spam anyway.
* apeiros gtg, laters
apeiros has quit []
rubycoder38 has quit [Quit: leaving]
<leitz> l8r
SirOliver has quit [Quit: ZZZzzz…]
<internoc> bye apeiros, thus we can continue spamming
jcpwn has joined #ruby
roshanavand1 has quit [Remote host closed the connection]
<jcpwn> I choose #devuan and recommend it to everyone.
Hirst has joined #ruby
Herrera has joined #ruby
<Hirst> #devuan
Quaday has joined #ruby
Bergson has joined #ruby
<jcpwn> #devuan
Herrera is now known as Guest17460
<Quaday> #devuan
<Bergson> Why systemd wants to control our minds?
<Guest17460> i think #devuan is cool because it is systemd-free
<jcpwn> Join #devuan for more info
<Hirst> Join #devuan for more info
soniya29 has joined #ruby
<Guest17460> Why systemd wants to control our minds?
<Bergson> i think #devuan is cool because it is systemd-free
<jcpwn> Why systemd wants to control our minds?
<Quaday> I choose #devuan and recommend it to everyone.
<Hirst> Why systemd wants to control our minds?
<Bergson> Join #devuan for more info
<Guest17460> I choose #devuan and recommend it to everyone.
<jcpwn> i think #devuan is cool because it is systemd-free
<Quaday> Join #devuan for more info
<Hirst> I choose #devuan and recommend it to everyone.
<Guest17460> Join #devuan for more info
<Bergson> #devuan
<Hirst> i think #devuan is cool because it is systemd-free
<Quaday> Why systemd wants to control our minds?
<jcpwn> I choose #devuan and recommend it to everyone.
<Guest17460> #devuan
<jcpwn> #devuan
<Bergson> I choose #devuan and recommend it to everyone.
<Quaday> i think #devuan is cool because it is systemd-free
<Guest17460> i think #devuan is cool because it is systemd-free
<Hirst> #devuan
<jcpwn> Join #devuan for more info
<Guest17460> Why systemd wants to control our minds?
<Quaday> #devuan
<Bergson> Why systemd wants to control our minds?
<Hirst> Join #devuan for more info
<jcpwn> Why systemd wants to control our minds?
<Guest17460> I choose #devuan and recommend it to everyone.
<Quaday> I choose #devuan and recommend it to everyone.
bmurt has joined #ruby
<Bergson> i think #devuan is cool because it is systemd-free
<Hirst> Why systemd wants to control our minds?
<Quaday> Join #devuan for more info
<jcpwn> i think #devuan is cool because it is systemd-free
<Guest17460> Join #devuan for more info
<Bergson> Join #devuan for more info
<Quaday> Why systemd wants to control our minds?
<Hirst> I choose #devuan and recommend it to everyone.
<Guest17460> #devuan
<jcpwn> I choose #devuan and recommend it to everyone.
<Bergson> #devuan
<Quaday> i think #devuan is cool because it is systemd-free
<Bergson> I choose #devuan and recommend it to everyone.
<jcpwn> #devuan
<Hirst> i think #devuan is cool because it is systemd-free
<Guest17460> i think #devuan is cool because it is systemd-free
<Hirst> #devuan
<Quaday> #devuan
<jcpwn> Join #devuan for more info
<Guest17460> Why systemd wants to control our minds?
<Bergson> Why systemd wants to control our minds?
<Guest17460> I choose #devuan and recommend it to everyone.
<Quaday> I choose #devuan and recommend it to everyone.
<Hirst> Join #devuan for more info
<jcpwn> Why systemd wants to control our minds?
<Quaday> Join #devuan for more info
<Guest17460> Join #devuan for more info
<Bergson> i think #devuan is cool because it is systemd-free
<Hirst> Why systemd wants to control our minds?
<jcpwn> i think #devuan is cool because it is systemd-free
<Guest17460> #devuan
<Hirst> I choose #devuan and recommend it to everyone.
<Quaday> Why systemd wants to control our minds?
<Bergson> Join #devuan for more info
<jcpwn> I choose #devuan and recommend it to everyone.
<Guest17460> i think #devuan is cool because it is systemd-free
<Hirst> i think #devuan is cool because it is systemd-free
<Quaday> i think #devuan is cool because it is systemd-free
<jcpwn> #devuan
<Bergson> #devuan
<Bergson> I choose #devuan and recommend it to everyone.
<Quaday> #devuan
<Guest17460> Why systemd wants to control our minds?
devil_tux has joined #ruby
<jcpwn> Join #devuan for more info
<Hirst> #devuan
<jcpwn> Why systemd wants to control our minds?
<Bergson> Why systemd wants to control our minds?
<Hirst> Join #devuan for more info
<Quaday> I choose #devuan and recommend it to everyone.
<Guest17460> I choose #devuan and recommend it to everyone.
<Bergson> i think #devuan is cool because it is systemd-free
<jcpwn> i think #devuan is cool because it is systemd-free
<Guest17460> Join #devuan for more info
<Hirst> Why systemd wants to control our minds?
<jcpwn> I choose #devuan and recommend it to everyone.
<Quaday> Join #devuan for more info
<Bergson> Join #devuan for more info
<Hirst> I choose #devuan and recommend it to everyone.
<Guest17460> #devuan
<Quaday> Why systemd wants to control our minds?
<jcpwn> #devuan
<Hirst> i think #devuan is cool because it is systemd-free
<Guest17460> i think #devuan is cool because it is systemd-free
<Bergson> #devuan
<jcpwn> Join #devuan for more info
<Quaday> i think #devuan is cool because it is systemd-free
<Bergson> I choose #devuan and recommend it to everyone.
<Guest17460> Why systemd wants to control our minds?
<jcpwn> Why systemd wants to control our minds?
<Hirst> #devuan
<Guest17460> I choose #devuan and recommend it to everyone.
<Quaday> #devuan
<jcpwn> i think #devuan is cool because it is systemd-free
<Hirst> Join #devuan for more info
<Bergson> Why systemd wants to control our minds?
<jcpwn> I choose #devuan and recommend it to everyone.
<Quaday> I choose #devuan and recommend it to everyone.
<Hirst> Why systemd wants to control our minds?
<Guest17460> Join #devuan for more info
<Bergson> i think #devuan is cool because it is systemd-free
<Hirst> I choose #devuan and recommend it to everyone.
<jcpwn> #devuan
<Guest17460> #devuan
<Bergson> Join #devuan for more info
<Quaday> Join #devuan for more info
<Hirst> i think #devuan is cool because it is systemd-free
<jcpwn> Join #devuan for more info
<Bergson> #devuan
<Hirst> #devuan
ecuanaso has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<Guest17460> i think #devuan is cool because it is systemd-free
<Quaday> Why systemd wants to control our minds?
<jcpwn> Why systemd wants to control our minds?
<Hirst> Join #devuan for more info
<Quaday> i think #devuan is cool because it is systemd-free
<Guest17460> Why systemd wants to control our minds?
<Bergson> I choose #devuan and recommend it to everyone.
<Quaday> #devuan
<jcpwn> i think #devuan is cool because it is systemd-free
<Hirst> Why systemd wants to control our minds?
<Bergson> Why systemd wants to control our minds?
<jcpwn> I choose #devuan and recommend it to everyone.
<Quaday> I choose #devuan and recommend it to everyone.
<Guest17460> I choose #devuan and recommend it to everyone.
<Hirst> I choose #devuan and recommend it to everyone.
<Bergson> i think #devuan is cool because it is systemd-free
<jcpwn> #devuan
orbyt_ has joined #ruby
<Hirst> i think #devuan is cool because it is systemd-free
<Quaday> Join #devuan for more info
<Guest17460> Join #devuan for more info
<Bergson> Join #devuan for more info
snickers has joined #ruby
<Quaday> Why systemd wants to control our minds?
<jcpwn> Join #devuan for more info
gary_ has joined #ruby
<Hirst> #devuan
<Guest17460> #devuan
<Bergson> #devuan
<Quaday> i think #devuan is cool because it is systemd-free
<jcpwn> Why systemd wants to control our minds?
<Hirst> Join #devuan for more info
<Guest17460> i think #devuan is cool because it is systemd-free
gary_ is now known as Guest15414
<Quaday> #devuan
<Bergson> I choose #devuan and recommend it to everyone.
<Hirst> Why systemd wants to control our minds?
<jcpwn> i think #devuan is cool because it is systemd-free
<Guest17460> Why systemd wants to control our minds?
<Bergson> Why systemd wants to control our minds?
<Quaday> I choose #devuan and recommend it to everyone.
<jcpwn> I choose #devuan and recommend it to everyone.
<Hirst> I choose #devuan and recommend it to everyone.
<Guest17460> I choose #devuan and recommend it to everyone.
<jcpwn> #devuan
<Quaday> Join #devuan for more info
<Bergson> i think #devuan is cool because it is systemd-free
<Guest17460> Join #devuan for more info
<Hirst> i think #devuan is cool because it is systemd-free
<jcpwn> Join #devuan for more info
<Guest17460> #devuan
<Bergson> Join #devuan for more info
<Quaday> Why systemd wants to control our minds?
<Hirst> #devuan
goatish has joined #ruby
<Guest17460> i think #devuan is cool because it is systemd-free
<foxxxx> The devuan os may be systemd free, but there is a _systemd_ user in that channel.
cdg has quit [Remote host closed the connection]
<jcpwn> Why systemd wants to control our minds?
<Hirst> Join #devuan for more info
<Guest17460> Why systemd wants to control our minds?
<Bergson> #devuan
<Quaday> i think #devuan is cool because it is systemd-free
<Hirst> Why systemd wants to control our minds?
crankharder has joined #ruby
<Hirst> I choose #devuan and recommend it to everyone.
<Guest17460> I choose #devuan and recommend it to everyone.
<jcpwn> i think #devuan is cool because it is systemd-free
<Quaday> #devuan
<Bergson> I choose #devuan and recommend it to everyone.
<Quaday> I choose #devuan and recommend it to everyone.
<Guest17460> Join #devuan for more info
<jcpwn> I choose #devuan and recommend it to everyone.
<Hirst> i think #devuan is cool because it is systemd-free
<Bergson> Why systemd wants to control our minds?
yohji has quit [Ping timeout: 240 seconds]
<Quaday> Join #devuan for more info
<Guest17460> #devuan
<jcpwn> #devuan
mtkd has quit []
vondruch has quit [Ping timeout: 265 seconds]
<Guest17460> i think #devuan is cool because it is systemd-free
<Hirst> #devuan
<jcpwn> Join #devuan for more info
<Bergson> i think #devuan is cool because it is systemd-free
<Quaday> Why systemd wants to control our minds?
<Hirst> Join #devuan for more info
thuryn has joined #ruby
<jcpwn> Why systemd wants to control our minds?
<Guest17460> Why systemd wants to control our minds?
<Bergson> Join #devuan for more info
<Hirst> Why systemd wants to control our minds?
<Quaday> i think #devuan is cool because it is systemd-free
<Guest17460> I choose #devuan and recommend it to everyone.
<Bergson> #devuan
<jcpwn> i think #devuan is cool because it is systemd-free
<Quaday> #devuan
<Hirst> I choose #devuan and recommend it to everyone.
<Bergson> I choose #devuan and recommend it to everyone.
<Guest17460> Join #devuan for more info
<jcpwn> I choose #devuan and recommend it to everyone.
Guest15414 has quit [Ping timeout: 240 seconds]
<Quaday> I choose #devuan and recommend it to everyone.
<jcpwn> #devuan
<Hirst> i think #devuan is cool because it is systemd-free
<Guest17460> #devuan
<Bergson> Why systemd wants to control our minds?
<jcpwn> Join #devuan for more info
<Hirst> #devuan
<Quaday> Join #devuan for more info
<Bergson> i think #devuan is cool because it is systemd-free
<Guest17460> i think #devuan is cool because it is systemd-free
<Hirst> Join #devuan for more info
<Guest17460> Why systemd wants to control our minds?
<Bergson> Join #devuan for more info
<jcpwn> Why systemd wants to control our minds?
<Quaday> Why systemd wants to control our minds?
<Hirst> Why systemd wants to control our minds?
<thuryn> the fuck is this?
<Guest17460> I choose #devuan and recommend it to everyone.
<Bergson> #devuan
<Hirst> I choose #devuan and recommend it to everyone.
<Quaday> i think #devuan is cool because it is systemd-free
<jcpwn> i think #devuan is cool because it is systemd-free
<Quaday> #devuan
<Guest17460> Join #devuan for more info
<Bergson> I choose #devuan and recommend it to everyone.
<Hirst> i think #devuan is cool because it is systemd-free
<Quaday> I choose #devuan and recommend it to everyone.
SirOliver has joined #ruby
<jcpwn> I choose #devuan and recommend it to everyone.
<Bergson> Why systemd wants to control our minds?
<Hirst> #devuan
<Guest17460> #devuan
<jcpwn> #devuan
<Quaday> Join #devuan for more info
<Bergson> i think #devuan is cool because it is systemd-free
<Hirst> Join #devuan for more info
<Guest17460> i think #devuan is cool because it is systemd-free
<Quaday> Why systemd wants to control our minds?
<jcpwn> Join #devuan for more info
<Bergson> Join #devuan for more info
<Quaday> i think #devuan is cool because it is systemd-free
<Hirst> Why systemd wants to control our minds?
<Guest17460> Why systemd wants to control our minds?
SirOliver has quit [Client Quit]
<Bergson> #devuan
<jcpwn> Why systemd wants to control our minds?
<Guest17460> I choose #devuan and recommend it to everyone.
<Quaday> #devuan
<jcpwn> i think #devuan is cool because it is systemd-free
<Guest17460> Join #devuan for more info
<Hirst> I choose #devuan and recommend it to everyone.
<Bergson> I choose #devuan and recommend it to everyone.
<Guest17460> #devuan
<havenwood> !spam jcpwn
<Bergson> Why systemd wants to control our minds?
jcpwn was kicked from #ruby by ruby[bot] [spamming is a bannable offense, see http://ruby-community.com/pages/user_rules]
<Hirst> i think #devuan is cool because it is systemd-free
<Quaday> I choose #devuan and recommend it to everyone.
<havenwood> !spam Quaday
<havenwood> !spam Bergson
<Guest17460> i think #devuan is cool because it is systemd-free
<Quaday> Join #devuan for more info
<Hirst> #devuan
<havenwood> !spam Hirst
<Bergson> i think #devuan is cool because it is systemd-free
<Guest17460> Why systemd wants to control our minds?
<Quaday> Why systemd wants to control our minds?
<Bergson> Join #devuan for more info
<Hirst> Join #devuan for more info
<Quaday> i think #devuan is cool because it is systemd-free
<Bergson> #devuan
<Guest17460> I choose #devuan and recommend it to everyone.
Bergson was banned on #ruby by havenwood [*!~Bergson@pD9E3165F.dip0.t-ipconnect.de]
Bergson was kicked from #ruby by havenwood [Your behavior is not conducive to the desired environment.]
Guest17460 was banned on #ruby by havenwood [*!~Herrera@152.red-79-153-176.dynamicip.rima-tde.net]
Guest17460 was kicked from #ruby by havenwood [Your behavior is not conducive to the desired environment.]
<Hirst> Why systemd wants to control our minds?
<Quaday> #devuan
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jeffreylevesque has joined #ruby
<Hirst> I choose #devuan and recommend it to everyone.
<Quaday> I choose #devuan and recommend it to everyone.
ecuanaso has joined #ruby
Quaday was banned on #ruby by havenwood [*!~Quaday@ppp-seco21parth2-46-193-170-22.wb.wifirst.net]
Quaday was kicked from #ruby by havenwood [Your behavior is not conducive to the desired environment.]
Hirst was banned on #ruby by havenwood [*!~Hirst@p50939665.dip0.t-ipconnect.de]
Hirst was kicked from #ruby by havenwood [Your behavior is not conducive to the desired environment.]
<thuryn> do people really think that spamming crap like this will do anything useful?
mtkd has joined #ruby
bijan_awaaaay is now known as bijan_
synthroid has joined #ruby
cagomez has joined #ruby
bmurt has joined #ruby
[Butch] has joined #ruby
claudiuinberlin has quit [Quit: Textual IRC Client: www.textualapp.com]
alfiemax_ has quit [Remote host closed the connection]
anisha_ has quit [Quit: This computer has gone to sleep]
jeffreylevesque_ has joined #ruby
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jeffreylevesque has quit [Ping timeout: 256 seconds]
karapetyan has quit [Remote host closed the connection]
apeiros_ has joined #ruby
n008f4g_ has quit [Ping timeout: 276 seconds]
bmurt has joined #ruby
nowhereman has joined #ruby
soniya29 has quit [Quit: Leaving]
nowhereman is now known as Guest53399
andriusbartulis_ has quit [Quit: Got to go...]
karapetyan has joined #ruby
alfiemax has joined #ruby
xpt has left #ruby ["WeeChat 1.4"]
AJA4350 has quit [Quit: AJA4350]
nowhere_man has quit [Ping timeout: 240 seconds]
SirOliver has joined #ruby
sumobob_ has joined #ruby
desperek has joined #ruby
bijan_ is now known as bijan_awaaaay
duderonomy has joined #ruby
duderonomy is now known as Guest60108
quobo has joined #ruby
rwb has joined #ruby
<leitz> havenwood, there was more of the same earlier. Looks like someone discovered Twisted....
jnollette has quit [Ping timeout: 255 seconds]
troys has joined #ruby
mtkd has quit []
snath has joined #ruby
jnollette has joined #ruby
conceivably has joined #ruby
RougeR has quit [Ping timeout: 248 seconds]
mtkd has joined #ruby
swein has joined #ruby
bigblind has quit [Ping timeout: 240 seconds]
<conceivably> Hi there, I'm retrieving an images through and api and get back some sort of image string: "\xFF\xD8\xFF\xE0\x00...". I now would like to store the image in different places etc. One solution I have found is to write image to disk and to then read it again and simple handle the file. This seems a bit hacky though. What is the proper way of handling that image string directly, without writing it to disk first?
<swein> if I have a hash {'a'=>['bob', 'john'], 'b'=>['bob', 'matt'] } what is the best way to query the hash for if a vlue exists inside the key? ruby 2.1.6 hash key 'a' does 'bob' exist?
AJA4350 has joined #ruby
Serpent7776 has quit [Quit: Leaving]
raynold has joined #ruby
internoc has quit [Ping timeout: 260 seconds]
kitikonti has joined #ruby
internoc has joined #ruby
Guest60108 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<conceivably> swein: well if the values are arrays you could just use 'include?'
<swein> conceivably: like hash['a'].include?("bob") # returns true?
bijan_awaaaay is now known as bijan_
darkhanb has joined #ruby
gary has joined #ruby
kies has quit [Ping timeout: 248 seconds]
gary is now known as Guest63352
<conceivably> swein: yep, if I understand your question correctly. It does assume the values are arrays. Also see http://ruby-doc.org/core-2.1.6/Array.html#method-i-include-3F
garyserj has quit []
aupadhye has quit [Quit: Leaving]
kapil___ has quit [Quit: Connection closed for inactivity]
<swein> thanks conceivably
bijan_ has quit [Quit: Shutting Down Interwebs...Done.]
clemens3 has joined #ruby
beauby has quit [Ping timeout: 264 seconds]
ShekharReddy has quit [Quit: Connection closed for inactivity]
bigblind has joined #ruby
<leitz> Program organization question. I have a "character generator" for an RPG I play. There's a Character class and a mixin that mangles Character.attributes. My next trick is to write a CLI based merchant game that uses the characters and stuff that has been generated.
duderono_ has joined #ruby
<leitz> If I wanted to make this available to others, would it be one big gem, or several? A module?
beauby has joined #ruby
Guest63352 has quit [Ping timeout: 268 seconds]
<foxxxx> a gem
guacamole has joined #ruby
guacamole has joined #ruby
guacamole has quit [Changing host]
sumobob_ has quit [Quit: WeeChat 1.7]
aufi has quit [Quit: Leaving]
<apeiros_> conceivably: what stops you from "storing the image in different places"?
apeiros_ is now known as apeiros
beauby has quit [Ping timeout: 268 seconds]
dviola has quit [Quit: WeeChat 2.0.1]
<apeiros> btw. at the silent listeners in the channel - if spammers are on it again, just do !ops
<apeiros> that will alert the ops
<conceivably> apeiros: I'm trying to use some third party libraries to e.g. upload the image to S3 etc. Those libraries appear to expect a file, but I was wondering if there was a way to directly pass the image as if it were a file, without writing it to disk. I'm not sure, perhaps I'm still not grasping the problem properly :/
<apeiros> conceivably: if they provide a method for that, that should work. and IMO they should.
sanscoeur has joined #ruby
jeffreylevesque_ has quit [Ping timeout: 256 seconds]
<apeiros> during uploading the file they get becomes a binary string anyway
kitikonti has quit [Quit: Textual IRC Client: www.textualapp.com]
oroborous has quit [Remote host closed the connection]
duderono_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
andikr has quit [Remote host closed the connection]
mikecmpbll has quit [Quit: inabit. zz.]
side_tracking has joined #ruby
jeffreylevesque has joined #ruby
guille-moe has quit [Ping timeout: 256 seconds]
cthulchu_ has joined #ruby
Cavallari has joined #ruby
InfinityFye has quit [Ping timeout: 248 seconds]
that_dude has joined #ruby
r3m has quit [Quit: ZNC - http://znc.in]
krawchyk_ has joined #ruby
jrafanie_ has quit [Quit: Textual IRC Client: www.textualapp.com]
guille-moe has joined #ruby
krawchyk_ has quit [Client Quit]
marr has quit [Ping timeout: 248 seconds]
cthulchu_ has quit [Ping timeout: 264 seconds]
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
krawchyk has quit [Ping timeout: 240 seconds]
gary has joined #ruby
raynold has quit [Remote host closed the connection]
graingert has quit [Remote host closed the connection]
ELLIOTTCABLE has quit [Remote host closed the connection]
gary is now known as Guest85638
bigblind has quit [Ping timeout: 264 seconds]
that_dude is now known as utley
raynold has joined #ruby
graingert has joined #ruby
SuperL4g is now known as SuperLag
<conceivably> I think I figured things out using StringIO, thanks apeiros.
fyrril has quit [Quit: Leaving]
utley is now known as m_utley
Guest85638 has quit [Ping timeout: 276 seconds]
alfiemax has quit [Remote host closed the connection]
duderonomy has joined #ruby
duderonomy is now known as Guest60483
kies has joined #ruby
Beams has quit [Ping timeout: 276 seconds]
marxarelli|afk is now known as marxarelli
ironcamel has quit [Ping timeout: 260 seconds]
minimalism has joined #ruby
eckhardt has joined #ruby
Rr4sT has joined #ruby
SirOliver has quit [Quit: ZZZzzz…]
<cagomez> I added a proc as a parameter to a class, and now a private method in that class always returns nil. is it possible for a proc to overload a private method?
Xiti has quit [Quit: Xiti]
<apeiros> no
<apeiros> also you can't add parameters to classes
<cagomez> arguement?
Xiti has joined #ruby
<apeiros> neither
<apeiros> classes aren't methods.
r3m has joined #ruby
Guest60483 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
espressocannon has joined #ruby
RougeR has joined #ruby
RougeR has joined #ruby
RougeR has quit [Changing host]
<espressocannon> hi friends, Im a nuby to ruby. Looking for a guide on the field types available for database on rails
<espressocannon> ie. t.string, t.text, .....
ldepandis has joined #ruby
<apeiros> ?rails espressocannon
<apeiros> hrm, what's up with ruby[bot] today? it seems slow…
jrafanie has joined #ruby
gary_ has joined #ruby
gary_ is now known as Guest15336
leah2 has quit [Ping timeout: 265 seconds]
ruby[bot] has joined #ruby
<apeiros> ?rails espressocannon
<apeiros> o0
_aeris_ has quit [Ping timeout: 255 seconds]
<ruby[bot]> espressocannon: Please join #RubyOnRails for Rails questions. You need to be identified with NickServ, see /msg NickServ HELP
Guest17460 has joined #ruby
Guest17460 was kicked from #ruby by ruby[bot] [was banned before]
Hirst has joined #ruby
Hirst was kicked from #ruby by ruby[bot] [was banned before]
Guest17460 has joined #ruby
Guest17460 was kicked from #ruby by ruby[bot] [was banned before]
Hirst has joined #ruby
Hirst was kicked from #ruby by ruby[bot] [was banned before]
Guest17460 has joined #ruby
Guest17460 was kicked from #ruby by ruby[bot] [was banned before]
Hirst has joined #ruby
Hirst was kicked from #ruby by ruby[bot] [was banned before]
reber has quit [Remote host closed the connection]
Guest17460 has joined #ruby
Guest17460 was kicked from #ruby by ruby[bot] [was banned before]
Hirst has joined #ruby
Hirst was kicked from #ruby by ruby[bot] [was banned before]
Guest17460 has joined #ruby
Guest17460 was kicked from #ruby by ruby[bot] [was banned before]
<espressocannon> thanks
<apeiros> hmmm
<espressocannon> i was sent here from redit
SeepingN has joined #ruby
Guest17460 has joined #ruby
Guest17460 was kicked from #ruby by ruby[bot] [was banned before]
espressocannon has left #ruby [#ruby]
Hirst has joined #ruby
<apeiros> !spam hirst
Hirst was kicked from #ruby by ruby[bot] [was banned before]
Guest17460 has joined #ruby
Guest17460 was kicked from #ruby by ruby[bot] [was banned before]
<apeiros> !spam Guest17460
Guest15336 has quit [Ping timeout: 248 seconds]
bigblind has joined #ruby
wald0 has joined #ruby
alfiemax has joined #ruby
_aeris_ has joined #ruby
espressocannon has joined #ruby
RougeR has quit [Ping timeout: 248 seconds]
<espressocannon> ummm
<espressocannon> how do i ...
<espressocannon> identify with services?
leah2 has joined #ruby
<apeiros> /ns help register
<apeiros> alternatively:
<espressocannon> thanks. it's been about 20 years since i last ircd
<apeiros> ?register espressocannon
<ruby[bot]> espressocannon: you need to be identified with NickServ, see `/msg NickServ HELP` or: https://freenode.net/kb/answer/registration
<apeiros> espressocannon: ircd would be the daemon, as in, the server ;-)
jnollette has quit [Remote host closed the connection]
aguestuser has quit [Remote host closed the connection]
k0mpa has quit [Read error: Connection reset by peer]
_aeris_ has quit [Remote host closed the connection]
<espressocannon> thank you
alfiemax has quit [Ping timeout: 248 seconds]
<espressocannon> irc'd
<espressocannon> as in
<espressocannon> past tense verb
<espressocannon> since I internet relay chatted*
<apeiros> verbing weirds language
<espressocannon> thanks for helping a nub
ta_ has joined #ruby
wilbert has joined #ruby
<apeiros> yw
jnollette has joined #ruby
_aeris_ has joined #ruby
riotjoe has joined #ruby
discopatrick has joined #ruby
PaulCape_ has joined #ruby
marr has joined #ruby
discopatrick has quit [Excess Flood]
discopatrick has joined #ruby
PaulCapestany has quit [Ping timeout: 256 seconds]
riotjones has quit [Ping timeout: 248 seconds]
cagomez has quit [Remote host closed the connection]
cagomez has joined #ruby
dionysus69 has joined #ruby
cagomez has quit [Remote host closed the connection]
cagomez has joined #ruby
ta_ has quit [Ping timeout: 248 seconds]
duracrisis has quit [Quit: Remember, smarter not harder!]
krawchyk has joined #ruby
krawchyk is now known as krawchyk[away]
ramfjord has joined #ruby
alfiemax has joined #ruby
habs has joined #ruby
duderonomy has joined #ruby
duderonomy is now known as Guest18148
aguestuser has joined #ruby
sameerynho has joined #ruby
knight33 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
krawchyk[away] is now known as krawchyk
contradictioned_ is now known as contradictioned
cagomez has quit [Remote host closed the connection]
cagomez has joined #ruby
gary has joined #ruby
reaVer has quit [Remote host closed the connection]
gary is now known as Guest22305
mikecmpbll has joined #ruby
goatish has quit [Quit: Hibernating]
reaVer has joined #ruby
Guest22305 has quit [Ping timeout: 248 seconds]
dviola has joined #ruby
conceivably has quit [Remote host closed the connection]
riotjoe has quit [Remote host closed the connection]
guille-moe has quit [Ping timeout: 260 seconds]
ta_ has joined #ruby
riotjones has joined #ruby
c0ncealed has quit [Read error: Connection reset by peer]
willmichael has joined #ruby
c0ncealed has joined #ruby
riotjones has quit [Ping timeout: 256 seconds]
espressocannon has quit [Quit: Page closed]
Sina has quit [Quit: Connection closed for inactivity]
ShekharReddy has joined #ruby
mtkd has quit [Ping timeout: 240 seconds]
sameerynho has quit [Ping timeout: 255 seconds]
Mia has quit [Quit: Leaving]
Sauvin has quit [Ping timeout: 255 seconds]
cagomez has quit [Remote host closed the connection]
workmad3 has quit [Ping timeout: 248 seconds]
snath has quit [Ping timeout: 256 seconds]
guille-moe has joined #ruby
mtkd has joined #ruby
cagomez has joined #ruby
tomlukeywood has joined #ruby
DTZUZU has quit [Read error: Connection reset by peer]
guille-moe has quit [Ping timeout: 265 seconds]
morenoh149 has joined #ruby
green_hat has joined #ruby
aguestuser has quit [Remote host closed the connection]
phaul has joined #ruby
aguestuser has joined #ruby
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
naztharune has quit [Read error: Connection reset by peer]
despai has joined #ruby
pastorinni has quit [Remote host closed the connection]
pastorinni has joined #ruby
green_hat has left #ruby [#ruby]
ta__ has joined #ruby
ta_ has quit [Read error: Connection reset by peer]
mistergibson has quit [Quit: Leaving]
knight33 has joined #ruby
internoc has quit [Remote host closed the connection]
pastorinni has quit [Ping timeout: 255 seconds]
DTZUZU has joined #ruby
Matthew1 has quit []
Cavallari1 has joined #ruby
mistergibson has joined #ruby
graft has joined #ruby
sidx64 has joined #ruby
bigblind has quit [Ping timeout: 240 seconds]
sidx64 has quit [Client Quit]
Cavallari has quit [Ping timeout: 260 seconds]
Cavallari1 is now known as Cavallari
dviola has quit [Quit: WeeChat 2.0.1]
cagomez has quit [Remote host closed the connection]
guacamole has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cagomez has joined #ruby
cagomez has quit [Remote host closed the connection]
cagomez has joined #ruby
cdg has joined #ruby
claudiuinberlin has joined #ruby
adlerdias has quit [Quit: adlerdias]
tomlukeywood has quit [Quit: Leaving.]
despai has quit [Quit: ...]
despai has joined #ruby
tomphp has joined #ruby
theSolTrain has joined #ruby
Cavallari1 has joined #ruby
dionysus69 has quit [Quit: dionysus69]
<habs> hi, why do i get a c++11-type error when i try to 'gem install re2'? i have a few dozen other gems that have all installed and work fine. here's my mkmf.log: http://ix.io/O0E
<habs> basically, the problem is that i get "include/re2/re2.h:748:16: error: ‘once_flag’ in namespace ‘std’ does not name a type" when i try to compile this program: "#include "ruby.h" / #include <re2/re2.h> / int main() { return 0; }" with this command: "gcc -x c++ -std=c++11 -I/gnu/store/z4v7d9ggb0viiw291l58cknam4q9i2ww-ruby-2.3.6/include/ruby-2.3.0/x86_64-linux
cagomez has quit [Remote host closed the connection]
<habs> -I/gnu/store/z4v7d9ggb0viiw291l58cknam4q9i2ww-ruby-2.3.6/include/ruby-2.3.0 conftest.c"
<habs> the error seems to indicate my gcc doesn't support c++11, but i'm using gcc 6.4.0 so it should support those types? do you have any ideas to fix / debug this?
Guest18148 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Cavallari has quit [Ping timeout: 264 seconds]
Cavallari1 is now known as Cavallari
cdg has quit [Remote host closed the connection]
cdg has joined #ruby
Psybur has quit [Ping timeout: 255 seconds]
zkv has quit [Ping timeout: 260 seconds]
eckhardt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<graft> habs what system are you installing on?
despai has quit [Quit: ...]
<habs> graft: sorry, it's a GNU Guix system, like nixOS, but all my gems (including re2) are being installed to my home directory
<graft> i'm on xenial with gcc 5.4.0 and gem install re2 works without a hitch
<graft> after installing libre2-dev
ldepandis has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cdg has quit [Ping timeout: 276 seconds]
havenwood has joined #ruby
havenwood has joined #ruby
duderonomy has joined #ruby
duderonomy is now known as Guest53691
<habs> graft: hm, perhaps my libre2 version (2018-02-01) is too new? this is what my include/re2/re2.h file says: http://ix.io/O14
<habs> but on git it says that file was last modified in 2016 so looks not :-/ i think it's some sort of compiler issue
theSolTrain has quit [Remote host closed the connection]
vutral|kali has joined #ruby
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
guacamole has joined #ruby
guacamole has joined #ruby
guacamole has quit [Changing host]
theSolTrain has joined #ruby
<graft> your re2.h is different from mine, my version says 20160201+dfsg-1
foxxxx has quit []
rocx has quit [Ping timeout: 252 seconds]
vutral|kali has quit [Excess Flood]
vutral|kali has joined #ruby
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
theSolTrain has quit [Ping timeout: 256 seconds]
n008f4g_ has joined #ruby
rocx has joined #ruby
theSolTrain has joined #ruby
[Butch] has quit [Quit: Textual IRC Client: www.textualapp.com]
theSolTrain has quit [Remote host closed the connection]
\void has joined #ruby
bigblind has joined #ruby
Rr4sT has quit [Quit: Connection closed for inactivity]
theSolTrain has joined #ruby
amatas has quit [Read error: Connection reset by peer]
vutral|kali has quit [Ping timeout: 240 seconds]
amatas has joined #ruby
cagomez has joined #ruby
reber has joined #ruby
theSolTrain has quit [Ping timeout: 252 seconds]
cagomez has quit [Ping timeout: 240 seconds]
rikkipitt has joined #ruby
hinbody has quit [Quit: leaving]
sameerynho has joined #ruby
hinbody has joined #ruby
morenoh149 has quit [Ping timeout: 260 seconds]
rikkipitt has quit [Remote host closed the connection]
rikkipitt has joined #ruby
gary has joined #ruby
gary is now known as Guest84767
rikkipitt has quit [Ping timeout: 255 seconds]
cagomez has joined #ruby
dviola has joined #ruby
rikkipitt has joined #ruby
Guest84767 has quit [Ping timeout: 256 seconds]
rikkipitt has quit [Remote host closed the connection]
rikkipitt has joined #ruby
rikkipitt has quit [Remote host closed the connection]
guacamole has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
rikkipitt has joined #ruby
rikkipitt has quit [Remote host closed the connection]
rikkipitt has joined #ruby
theSolTrain has joined #ruby
cagomez has quit [Ping timeout: 248 seconds]
eckhardt has joined #ruby
morenoh149 has joined #ruby
guacamole has joined #ruby
guacamole has joined #ruby
guacamole has quit [Changing host]
jenrzzz has quit [Ping timeout: 260 seconds]
guacamole has quit [Client Quit]
theSolTrain has quit [Client Quit]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
chat_ has quit [Ping timeout: 256 seconds]
Dimik has joined #ruby
Cavallari has quit [Quit: Cavallari]
Asher has quit [Quit: Leaving.]
chat has joined #ruby
chat is now known as Guest64380
clemens3 has quit [Ping timeout: 240 seconds]
cagomez has joined #ruby
sol_ has joined #ruby
jblack has joined #ruby
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
rikkipitt has quit [Quit: Leaving...]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<cagomez> how do I mutate the last element in an array in-place?
<apeiros> ambiguous question. do you want to mutate the element or the array?
<apeiros> >> a = ["a", "b", "c"]; a.last.upcase!; a # mutated the element
<ruby[bot]> apeiros: # => ["a", "b", "C"] (https://eval.in/961291)
sol_ has quit []
<apeiros> >> a = ["a", "b", "c"]; a[-1] = "C"; a # mutated the array
<ruby[bot]> apeiros: # => ["a", "b", "C"] (https://eval.in/961292)
claudiuinberlin has quit [Quit: Textual IRC Client: www.textualapp.com]
sameerynho has quit [Ping timeout: 264 seconds]
ShekharReddy has quit [Quit: Connection closed for inactivity]
<cagomez> hmm, I'm doing the following: `proc { |*args| some_other_method(*args) }` but I need to mutate the last element in *args. what's a good way of doing this?
<apeiros> cagomez: I've literally just shown you two ways.
<apeiros> you have to know however whether you want to only mutate the array, or mutate the element itself. I can't possibly know that from the info you gave.
workmad3 has joined #ruby
rwb has quit [Ping timeout: 264 seconds]
pastorinni has joined #ruby
jeffreylevesque has quit [Read error: Connection reset by peer]
reber has quit [Remote host closed the connection]
cagomez has quit [Remote host closed the connection]
cagomez has joined #ruby
cagomez_ has joined #ruby
workmad3 has quit [Ping timeout: 256 seconds]
cagomez has quit [Read error: Connection reset by peer]
cagomez_ has quit [Read error: Connection reset by peer]
dinfuehr has quit [Ping timeout: 255 seconds]
cagomez has joined #ruby
cjs226 has joined #ruby
cdg has joined #ruby
cjs226 has quit [Client Quit]
mtkd has quit [Ping timeout: 248 seconds]
rippa has joined #ruby
dinfuehr has joined #ruby
mtkd has joined #ruby
orbyt_ has joined #ruby
cagomez has quit [Remote host closed the connection]
cdg has quit [Ping timeout: 255 seconds]
solocshaw has joined #ruby
guacamole has joined #ruby
guacamole has quit [Changing host]
guacamole has joined #ruby
thuryn has quit [Quit: User wandered away]
cdg has joined #ruby
Asher has joined #ruby
naztharune has joined #ruby
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
solocshaw has quit [Quit: solocshaw]
cjs226 has joined #ruby
tomphp has joined #ruby
tomphp has quit [Client Quit]
cjs226_ has joined #ruby
synthroid has quit []
keithy has joined #ruby
<keithy> yay
mrush has quit [Quit: leaving]
<keithy> I am puzzled to be unabled to find an efficient find utility
<keithy> my usual approach is to walk the file tree one file at a time, thus not keeping anything in memory. You just say walker.nextFile
cjs226 has quit [Client Quit]
cjs226_ is now known as cjs226
<keithy> cant find anything for effectively invoking and capturing a shell process as it works. except…
<keithy> I did find a multithreaded method on the web but now I cant find it again
AgentVenom has joined #ruby
vutral|kali has joined #ruby
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
marxarelli is now known as marxarelli|afk
Spoon8472 has joined #ruby
m_utley has quit [Quit: Leaving...]
goatish has joined #ruby
guacamole has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
naztharune has quit [Ping timeout: 264 seconds]
jcalla has quit [Quit: Leaving]
guacamole has joined #ruby
guacamole has joined #ruby
guacamole has quit [Changing host]
morenoh149 has quit [Ping timeout: 268 seconds]
morenoh149 has joined #ruby
cdg has quit [Remote host closed the connection]
cdg has joined #ruby
cthulchu has quit [Remote host closed the connection]
cthulchu has joined #ruby
vutral|kali has quit [Ping timeout: 256 seconds]
wilbert has quit [Ping timeout: 260 seconds]
alfiemax has quit [Read error: Connection reset by peer]
ramfjord has quit [Ping timeout: 256 seconds]
cdg has quit [Ping timeout: 276 seconds]
ramfjord has joined #ruby
Spoon8472 has left #ruby [#ruby]
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
vutral|kali has joined #ruby
vutral|kali has joined #ruby
vutral|kali has quit [Changing host]
snickers has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ramfjord has quit [Ping timeout: 240 seconds]
alfiemax has joined #ruby
alfiemax has quit [Ping timeout: 264 seconds]
motstgo has joined #ruby
jenrzzz has quit [Ping timeout: 260 seconds]
jenrzzz has joined #ruby
vutral|kali has quit [Ping timeout: 256 seconds]
amatas has quit [Quit: amatas]
sanscoeu_ has joined #ruby
Gnut has quit [Ping timeout: 252 seconds]
jrafanie has quit [Ping timeout: 256 seconds]
sanscoeur has quit [Ping timeout: 240 seconds]
ramfjord has joined #ruby
gary has joined #ruby
gary is now known as Guest89475
Gnut has joined #ruby
marxarelli|afk is now known as marxarelli
shoogz has quit [Quit: shoogz out]
Guest89475 has quit [Ping timeout: 256 seconds]
alfiemax has joined #ruby
desperek has quit [Quit: xoxo]
ledestin has joined #ruby
Mike11 has joined #ruby
alfiemax has quit [Ping timeout: 248 seconds]
mtkd has quit []
RougeR has joined #ruby
RougeR has joined #ruby
RougeR has quit [Changing host]
qyliss has quit [Ping timeout: 256 seconds]
lupine has quit [Ping timeout: 240 seconds]
rwb has joined #ruby
workmad3 has joined #ruby
devil_tux has quit [Remote host closed the connection]
lupine has joined #ruby
qyliss_ has joined #ruby
roshanavand has joined #ruby
cagomez has joined #ruby
cagomez has quit [Remote host closed the connection]
sanscoeu_ has quit [Remote host closed the connection]
sanscoeur has joined #ruby
bigblind has quit [Ping timeout: 252 seconds]
n008f4g_ has quit [Ping timeout: 252 seconds]
Rapture has quit [Quit: Textual IRC Client: www.textualapp.com]
\void has quit [Quit: So long, and thanks for all the fish.]
cagomez has joined #ruby
goatish has quit [Quit: Hibernating]
cagomez has quit [Remote host closed the connection]
jblack has quit [Ping timeout: 248 seconds]
jblack has joined #ruby
alfiemax has joined #ruby
garyserj has joined #ruby
alex`` has quit [Ping timeout: 240 seconds]
<garyserj> Is it true that you used to need #coding: utf-8 at the top line of a file if you had any character outside of us ascii? and if so, then how can that work 'cos surely something beginning with # is meant to be a comment isn't it?
<guacamole> its a magic comment
<SeepingN> #!/usr/bin/ruby is also a magic comment
<SeepingN> (one the first line only)
DTZUZO has quit [Ping timeout: 240 seconds]
alfiemax has quit [Ping timeout: 264 seconds]
<garyserj> ok, thanks
VladGh has quit [Remote host closed the connection]
mcr1 has quit [Ping timeout: 256 seconds]
VladGh has joined #ruby
mcr has joined #ruby
oleo has quit [Quit: Leaving]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
safetypin has quit [Ping timeout: 256 seconds]
<miah> #! is a shebang
SynSynack has quit [Remote host closed the connection]
SynSynack has joined #ruby
oleo has joined #ruby
netherwolfe has quit [Ping timeout: 255 seconds]
<miah> you can find some details about magic comments in ruby here: https://idiosyncratic-ruby.com/58-magic-instructions.html
<SeepingN> true, it's not really a comment at all
<SeepingN> https://idiosyncratic-ruby.com/ wow great site
VladGh has quit [Quit: Lost terminal]
<miah> ya some neat stuff here
cagomez has joined #ruby
cagomez has quit [Remote host closed the connection]
VladGh has joined #ruby
cagomez has joined #ruby
cagomez has quit [Read error: Connection reset by peer]
cagomez has joined #ruby
cagomez has quit [Remote host closed the connection]
bigblind has joined #ruby
<zenspider> garyserj: you don't need that magic comment unless you're coding in something odd. It defaults to utf-8 in later ruby versions
<zenspider> and ascii is a subset of utf-8, so it is covered as well
krawchyk has quit [Quit: krawchyk]
<zenspider> tho... I thought Encoding.default_encoding was set to utf-8 as well? apparently it is nil now? Not sure the implications of that
<zenspider> >> __ENCODING__
<ruby[bot]> zenspider: # => #<Encoding:UTF-8> (https://eval.in/961318)
<zenspider> >> Encoding.default_internal
<ruby[bot]> zenspider: # => nil (https://eval.in/961319)
ecuanaso has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<zenspider> keithy: try asking a better question
<keithy> ok, it isnt the website doesnt load on my chrome!
kapil___ has joined #ruby
<keithy> I thought the author was being ironic
<keithy> and posted a page wiht a tile and no content
<zenspider> looks fine to me in safari and chrome *shrug*
<havenwood> works on my machine
alfiemax has joined #ruby
<keithy> still havent got a clue about splats
<zenspider> keithy: what about them?
<keithy> im trying to pass splats and blocks
jrafanie has joined #ruby
<zenspider> ...
<havenwood> keithy: Show your code and what part you're confused about?
<keithy> and the block is getting included in the slpat array
<keithy> heading for pastbin
<zenspider> you're trying to make a method call and you want to pass a block in? are you using ampersand?
<zenspider> use a gist, the bot will yell at you otherwise
<zenspider> (dunno why)
<zenspider> obj.some_method(arg, arg, arg, &blk)
mrush has joined #ruby
<zenspider> given def some_method *args or def some_method *args, &blk
<zenspider> you need an ampersand on that last line
<zenspider> you're passing it as a regular object
alfiemax has quit [Ping timeout: 264 seconds]
<keithy> yes I had that amp it still didnt work
<zenspider> nope. don't believe you
<keithy> I took it out as an experiment
<keithy> soo
<zenspider> Subprocess.new(*args, block) => block goes to *args
bigblind has quit [Ping timeout: 240 seconds]
<zenspider> Subprocess.new(*args, &block) => block becomes target of yield
<keithy> yes dont get that far
<zenspider> (or captured to another &barg)
<keithy> because I think args has block as its 6th member
postmodern has joined #ruby
<havenwood> keithy: not if you have an & preceding it
<zenspider> you don't need to declare &block on line 16 either. doesn't hurt
chouhoulis has quit [Remote host closed the connection]
<keithy> just stepping thorugh the code now
<keithy> to check
Fusselgesicht has quit [Quit: leaving]
chouhoulis has joined #ruby
<zenspider> all of that indirection seems unnecessary to me, btw. the modules, the Subprocess class, all the IO handling w/ extra yielding
<havenwood> ^
sanscoeu_ has joined #ruby
<zenspider> and the threads
phaul has quit [Ping timeout: 256 seconds]
chouhoul_ has joined #ruby
<keithy> I cut it out of other stuff
<keithy> to show you
<zenspider> use popen3 (or spawn), get your stderr and stdout (or don't! You're just printing it again)... this could even just be a plain system call since it is just `docker build`
<keithy> how could it
<keithy> you wouldnt see the result till the end
marxarelli is now known as marxarelli|afk
<zenspider> system calls don't capture output
chouhou__ has joined #ruby
<havenwood> Open3.capture3 should suffice, I'd think.
<zenspider> all you really care about is the exit code ($?)
<keithy> it might do for this application
Vapez has joined #ruby
<keithy> I come back to ruby after 10 years and find I have to roll my own find file utility
<zenspider> ? no you don't ?
chouho___ has joined #ruby
<zenspider> we had find back then. we still have it?
espressocannon has joined #ruby
<keithy> ok, find me a find file utility that can search 100Gb of files in
<havenwood> twas here all along...
<espressocannon> how do i reset my nickserv password
<zenspider> ri Find.find
<espressocannon> already forgot it
<havenwood> &ri Find.find
<zenspider> espressocannon: mmmm /msg nickserv help
<espressocannon> i tried
sanscoeur has quit [Ping timeout: 255 seconds]
chouh____ has joined #ruby
<espressocannon> no option for resetting pass
<havenwood> espressocannon: /msg NickServ SENDPASS youraccountnamehere
<keithy> and is it efficient, not holding anythin in memry excep the path you are looking at
<havenwood> espressocannon: /msg NickServ SENDPASS espressocannon
<guacamole> espressocannon http://docs.dal.net/docs/nickserv.html
<havenwood> ^ there, boutique service
<zenspider> keithy: size of the files doesn't matter for find?
<guacamole> number 6 tells you how
chouhoulis has quit [Ping timeout: 264 seconds]
<espressocannon> thanks
sanscoeu_ has quit [Ping timeout: 248 seconds]
ecuanaso has joined #ruby
<havenwood> keithy: Say more about what you're trying to do.
chouhoulis has joined #ruby
<havenwood> keithy: What are you searching for?
chouhoul_ has quit [Ping timeout: 264 seconds]
<keithy> my normal find utility walks the tree one file at a time
<keithy> and collects information
espressocannon has quit [Quit: Page closed]
<keithy> everything I looked at today globs the whole lot
<zenspider> man... I want an espressocannon
phaul has joined #ruby
<havenwood> What are you trying to do (ignoring how you're doing it)?
<havenwood> with a side of guacamole ...
<miah> i want cuban coffee
<havenwood> mmm
<zenspider> oooh... that too
<guacamole> i want guac lol
<zenspider> or turkish. that's been too long
chouhou__ has quit [Ping timeout: 248 seconds]
chouhoul_ has joined #ruby
<keithy> I am deploying 2000 websites
<keithy> updating code
shortdudey123 has quit [Ping timeout: 256 seconds]
chouhou__ has joined #ruby
chouho___ has quit [Ping timeout: 255 seconds]
<keithy> so I am looking for the roots of the websites and then working through the files
<zenspider> keithy: going meta: you kinda suck at problem description
<havenwood> keithy: What about the files are you searching for??
<keithy> performing operations on them, liike removing duplicates, moving new bits in with rsync, hardlinking something etc
<havenwood> We get there are files. You're looking for something. What?
chouho___ has joined #ruby
<keithy> I want a file system traversing utility, that walks the tree
chouh____ has quit [Ping timeout: 268 seconds]
<zenspider> been pointed out twice now... and yet...
<keithy> I use this for lots of things. like…
<havenwood> keithy: Walks the tree looking for what?
<guacamole> certain file extensions or file names?
<keithy> collecitn info on files duplicate, counts of images sizes of files disk wastage etc.
chouh____ has joined #ruby
chouhoulis has quit [Ping timeout: 264 seconds]
shortdudey123 has joined #ruby
<keithy> the space_walker, (in php) collects about 1,000,000 records for a spreadsheet analysis
<havenwood> keithy: And you've tried using Find.find? Show us the code you have so far?
chouhoul_ has quit [Ping timeout: 248 seconds]
chouhoulis has joined #ruby
chouhoul_ has joined #ruby
chouhou__ has quit [Ping timeout: 248 seconds]
chouhou__ has joined #ruby