00:02
howlcode has joined #ruby
00:02
akemhp_ has joined #ruby
00:03
Swyper has quit [Remote host closed the connection]
00:05
akemhp has quit [Ping timeout: 276 seconds]
00:06
AJA4350 has quit [Ping timeout: 276 seconds]
00:06
Swyper has joined #ruby
00:13
<
bougyman >
You probably need to separate concerns.
00:13
howlcode has left #ruby ["Leaving"]
00:14
<
bougyman >
Like you said, you're taking on too much at once. Concentrate on a component at a time.
00:15
lucasb has quit [Quit: Connection closed for inactivity]
00:18
Joush has quit [Quit: Leaving]
00:23
<
Swyper >
I just have a project I really want to do and that's why I'm getting impatient
00:23
kobain has joined #ruby
00:25
podlech has joined #ruby
00:27
Joush has joined #ruby
00:30
wildtrees has quit [Quit: Leaving]
00:31
Frobozz has quit [Quit: quit]
00:35
dostoyevsky has quit [Quit: leaving]
00:36
dostoyevsky has joined #ruby
00:36
Esa_ has quit [Ping timeout: 265 seconds]
00:40
hutch2 has joined #ruby
00:41
dostoyevsky has quit [Quit: leaving]
00:41
dostoyevsky has joined #ruby
00:43
kobain has joined #ruby
00:43
akem__ has joined #ruby
00:44
stryek has quit [Quit: Connection closed for inactivity]
00:44
kobain has quit [Client Quit]
00:46
hutch2 has quit [Ping timeout: 265 seconds]
00:46
akemhp_ has quit [Ping timeout: 240 seconds]
00:47
akemhp_ has joined #ruby
00:49
akem__ has quit [Ping timeout: 240 seconds]
00:50
zilldit has joined #ruby
00:52
dostoyevsky has quit [Quit: leaving]
00:52
fuzzface has joined #ruby
00:52
dostoyevsky has joined #ruby
00:53
fuzzface has quit [Client Quit]
00:55
dostoyevsky has quit [Client Quit]
00:55
dostoyevsky has joined #ruby
01:00
zilldit has quit [Remote host closed the connection]
01:00
poontangmessiah has quit [Remote host closed the connection]
01:01
podlech has quit [Quit: WeeChat 2.7-dev]
01:02
dostoyevsky has quit [Quit: leaving]
01:02
dostoyevsky has joined #ruby
01:02
Swyper has quit [Remote host closed the connection]
01:08
sameerynho has quit [Ping timeout: 265 seconds]
01:09
Swyper has joined #ruby
01:11
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
01:17
AJA4350 has joined #ruby
01:20
Swyper has quit [Remote host closed the connection]
01:21
Swyper has joined #ruby
01:28
akem__ has joined #ruby
01:30
brandoncc has joined #ruby
01:31
akemhp_ has quit [Ping timeout: 276 seconds]
01:44
imtravis has quit [Ping timeout: 240 seconds]
01:48
NODE has quit [Quit: changing servers]
01:49
NODE has joined #ruby
01:54
akemhp_ has joined #ruby
01:56
AJA4350 has quit [Quit: AJA4350]
01:56
gix has quit [Ping timeout: 265 seconds]
01:56
akem__ has quit [Ping timeout: 240 seconds]
02:00
akem__ has joined #ruby
02:03
akemhp_ has quit [Ping timeout: 250 seconds]
02:05
<
adam12 >
Swyper: Where are you stuck?
02:05
xGrind has quit [Quit: Saindo]
02:05
<
Swyper >
adam12: with my project?
02:05
akemhp_ has joined #ruby
02:05
<
adam12 >
Swyper: In general.
02:06
<
adam12 >
Swyper: If the project is a personal interest, just start building it. Forget ceremony.
02:06
<
Swyper >
ah well I just don't know how to make a full stack web app and I feel like I'm spending so many hours learning parts of it instead of how to actually do it
02:06
<
Swyper >
yeah its a personal interest project, so pretty much I built a web scraper in node js that scrapes my universities websites and emails the student when course space is available
02:07
<
Swyper >
that part is done and works but now I want to scale it out and have a frontend and backend so students can say what course they want notifications for
02:07
akem__ has quit [Ping timeout: 240 seconds]
02:08
<
Swyper >
I think what I need is just a simple tutorial that shows you how how to make a full stack web app ideally w/rails
02:08
<
adam12 >
Swyper: Define "full stack" for me.
02:08
<
Swyper >
frontend,backend,database
02:09
<
Swyper >
MVC style web app
02:09
<
adam12 >
Swyper: I'm presuming you're not splitting the apps with some sort of Javascript SPA.
02:09
<
Swyper >
yeah I am not
02:09
Nanuq has quit [Ping timeout: 252 seconds]
02:11
Nanuq has joined #ruby
02:11
<
adam12 >
Swyper: What kind of tutorials have you done so far?
02:12
akem__ has joined #ruby
02:12
<
Swyper >
so App Academy made there fullstack cirriculum available online for free I was going through that but its just so long and they want you to know each component really really well
02:13
<
Swyper >
I kind of just want to get started by building stuff, experimenting etc so ideally I can find a full stack tutorial that's less then 30 hours in length which shows me how to do "just enough" to get me started
02:14
<
adam12 >
I don't have any suggestions for content since my time with Rails and web dev goes much further back.
02:14
akemhp_ has quit [Ping timeout: 240 seconds]
02:14
<
adam12 >
But I'd say just pick something
_small_ and build it. Bonus points for being relevant.
02:14
<
adam12 >
(relevant to you to keep your interest up)
02:15
<
adam12 >
Keep the number of components small. Forget about user authentication. Forget about emailing. One form. One view. One model? Maybe 2 models. Build it. Style it. Love it. Ship it. Then work from there.
02:16
akemhp_ has joined #ruby
02:16
<
adam12 >
Maybe just forget about the tutorials? Once you start coding, you'll have problems. One problem after another. You work the problem.
02:17
<
adam12 >
Let's say you're building a guestbook. We'll call it the End of Year at $YOUR_UNIVERSITY guestbook.
02:18
akem__ has quit [Ping timeout: 240 seconds]
02:18
<
adam12 >
Talking Rails: 1 View. 1 Model. 1 Controller. View includes HTML for showing the guest book comments, and a form to add one. Model stores the guestbook entries. Controller is the slightly hard part since it has a few more bits but nothing unachievable.
02:18
<
havenwood >
Swyper: +1 for picking a project of small scope and hacking at it, getting feedback, and iterating until you're really happy with the code.
02:19
<
havenwood >
Swyper: if a pull project seems overwhelming, maybe start with exposing one of your tutorials as an API or webapp with Roda.
02:19
<
Swyper >
what is a pull project? havenwood
02:20
<
havenwood >
Swyper: You might also consider starting with testing - sooner rather than later, just to speed up ability to iterate.
02:20
akem__ has joined #ruby
02:20
<
havenwood >
Swyper: a typo! i meant "full" not "pull"
02:20
<
Swyper >
adam12: fair, should I just google how to start a rails app to get started on this
02:20
<
havenwood >
(those keys aren't close together. unsure what my brain was thinking. sound alike?)
02:21
<
havenwood >
Swyper: Then make a little Roda app to expose ingredient checks as an API service.
02:21
<
havenwood >
Swyper: Then make a web frontend for the API you wrote. Or something like that. That might be a nice bridge to a project from scratch.
02:21
tpanarch1st_ has quit [Ping timeout: 240 seconds]
02:22
<
havenwood >
Swyper: TIMTOWTDI. If you prefer to go straight to making guestbook, that's fine too!
02:22
akemhp_ has quit [Ping timeout: 240 seconds]
02:22
<
havenwood >
Swyper: Typically each attempt gets you closer to proficiency.
02:22
<
Swyper >
I think going straight to it would be fun for me xD
02:23
<
adam12 >
Swyper: I mean, you can start with Rails, or just as easily start with Roda. The only place I
_caution_ you is that Roda doesn't give you some things for free. Fine for your first project but you'd want to learn a few security bits before anything production.
02:23
<
havenwood >
Swyper: I think you'd find getting up to speed with basic tests and exposing it as an API wouldn't take you too long. If you prefer diving in the deep end, the water is nice there too.
02:23
<
adam12 >
Swyper: I'm a huge fan of Roda and it exposes more obvious parts. But there's a ton missing that Rails sorts for you.
02:24
akemhp_ has joined #ruby
02:25
<
adam12 >
Especially since havenwood hasn't seen my roda-enhanced_logger project yet O_o
02:26
akem__ has quit [Ping timeout: 240 seconds]
02:27
akemhp has joined #ruby
02:27
laudecay has joined #ruby
02:28
Swyper has quit [Remote host closed the connection]
02:28
akemhp_ has quit [Ping timeout: 240 seconds]
02:31
akemhp_ has joined #ruby
02:32
akemhp has quit [Ping timeout: 265 seconds]
02:37
brandoncc has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
02:39
akemhp has joined #ruby
02:40
<
havenwood >
adam12: Ooh, I like the sound of that. :)
02:41
<
adam12 >
havenwood: It's sweet but still a WIP. I'm doing that thing with the thing where you poke through caller_locations so I haven't shipped it yet but it seems to be working well where I need it.
02:41
akemhp_ has quit [Ping timeout: 276 seconds]
02:55
ropeney has joined #ruby
02:56
bvdw has quit [Read error: Connection reset by peer]
02:56
pb122 has joined #ruby
02:57
bvdw has joined #ruby
03:03
harai has joined #ruby
03:04
Swyper has joined #ruby
03:04
teardown has quit [Quit: leaving]
03:17
alfiemax has joined #ruby
03:20
Joush is now known as Thyla
03:20
harai has quit [Remote host closed the connection]
03:21
harai has joined #ruby
03:35
DTZUZO has joined #ruby
03:39
harai has quit [Ping timeout: 260 seconds]
03:39
stooj has quit [Ping timeout: 252 seconds]
03:40
imtravis has joined #ruby
03:41
devops has joined #ruby
03:44
imtravis has quit [Ping timeout: 240 seconds]
03:46
tpanarch1st_ has joined #ruby
03:50
Nahra has quit [Quit: leaving]
03:52
stooj has joined #ruby
03:56
shansen has quit [Remote host closed the connection]
03:58
brandoncc has joined #ruby
04:04
hutch2 has joined #ruby
04:06
tpanarch1st_ has quit [Ping timeout: 240 seconds]
04:14
brandoncc has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
04:15
orbyt_ has joined #ruby
04:15
hutch2 has quit [Ping timeout: 250 seconds]
04:18
imtravis has joined #ruby
04:22
Thyla has quit [Quit: Leaving]
04:23
Joush has joined #ruby
04:25
Joush has quit [Client Quit]
04:25
brool has quit [Ping timeout: 245 seconds]
04:25
Joush has joined #ruby
04:26
alfiemax_ has joined #ruby
04:29
alfiemax has quit [Ping timeout: 240 seconds]
04:31
Joush is now known as Thyla
04:38
Thyla has quit [Quit: Leaving]
04:38
Joush has joined #ruby
04:38
Joush is now known as Thyla
04:41
Thyla has quit [Client Quit]
04:47
drincruz has joined #ruby
04:55
akemhp_ has joined #ruby
04:57
akemhp has quit [Ping timeout: 265 seconds]
05:00
shansen has joined #ruby
05:02
laudecay has quit [Ping timeout: 240 seconds]
05:05
BrianWGray has quit [Ping timeout: 240 seconds]
05:13
laudecay has joined #ruby
05:19
akem__ has joined #ruby
05:19
akemhp_ has quit [Ping timeout: 240 seconds]
05:22
laudecay has quit [Ping timeout: 250 seconds]
05:25
iNs has quit [Remote host closed the connection]
05:25
iNs has joined #ruby
05:33
_whitelogger has joined #ruby
05:46
skyikot has joined #ruby
05:56
alfiemax has joined #ruby
05:59
alfiemax_ has quit [Ping timeout: 240 seconds]
06:00
skyikot has quit [Remote host closed the connection]
06:01
skyikot has joined #ruby
06:06
skx86 has quit [Quit: Connection closed for inactivity]
06:21
akemhp_ has joined #ruby
06:24
akem__ has quit [Ping timeout: 265 seconds]
06:26
Nicmavr has quit [Read error: Connection reset by peer]
06:28
Nicmavr has joined #ruby
06:28
skyikot has quit [Remote host closed the connection]
06:29
skyikot has joined #ruby
06:30
akemhp has joined #ruby
06:31
akemhp_ has quit [Ping timeout: 276 seconds]
06:41
DaRock has quit [Ping timeout: 276 seconds]
06:43
skyikot has quit [Quit: skyikot]
06:44
code_zombie has quit [Quit: Leaving]
06:55
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
07:05
akemhp_ has joined #ruby
07:06
akemhp has quit [Ping timeout: 240 seconds]
07:28
phaul has joined #ruby
07:30
_phaul has quit [Ping timeout: 240 seconds]
07:35
infinityfye has joined #ruby
07:47
cd has quit [Quit: cd]
07:50
alfiemax has quit [Remote host closed the connection]
07:51
alfiemax has joined #ruby
07:56
alfiemax has quit [Ping timeout: 276 seconds]
08:00
NODE has quit [Quit: changing servers]
08:02
NODE has joined #ruby
08:02
infinityfye_ has joined #ruby
08:04
infinityfye__ has joined #ruby
08:05
infinityfye has quit [Ping timeout: 240 seconds]
08:07
infinityfye_ has quit [Ping timeout: 240 seconds]
08:17
monika has joined #ruby
08:19
claudiuinberlin has joined #ruby
08:24
alfiemax has joined #ruby
08:28
bitwinery has quit [Quit: Leaving]
08:29
alfiemax has quit [Ping timeout: 265 seconds]
08:35
infinityfye__ has quit [Quit: Leaving]
08:36
infinityfye has joined #ruby
08:56
bvdw has quit [Read error: Connection reset by peer]
08:57
bvdw has joined #ruby
09:01
monika has quit [Quit: WeeChat 2.6]
09:08
akemhp has joined #ruby
09:09
akemhp_ has quit [Ping timeout: 240 seconds]
09:11
akemhp_ has joined #ruby
09:13
akemhp has quit [Ping timeout: 246 seconds]
09:15
NODE has quit [Quit: changing servers]
09:16
NODE has joined #ruby
09:17
akemhp has joined #ruby
09:18
akemhp_ has quit [Ping timeout: 265 seconds]
09:21
akemhp has quit [Ping timeout: 252 seconds]
09:29
alfiemax has joined #ruby
09:30
rippa has joined #ruby
09:31
ravenousmoose has joined #ruby
09:33
claudiuinberlin has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
09:37
infinityfye has quit [Read error: Connection reset by peer]
09:46
Fernando-Basso has joined #ruby
09:46
suukim has joined #ruby
10:12
akemhp has joined #ruby
10:30
NODE has quit [Quit: changing servers]
10:31
NODE has joined #ruby
10:33
NODE has quit [Client Quit]
10:34
NODE has joined #ruby
10:36
NODE has quit [Client Quit]
10:36
nowhereman has joined #ruby
10:37
NODE has joined #ruby
10:45
NODE has quit [Quit: changing servers]
10:45
akemhp_ has joined #ruby
10:46
akemhp has quit [Ping timeout: 276 seconds]
10:46
NODE has joined #ruby
10:48
NODE has quit [Client Quit]
10:49
NODE has joined #ruby
10:49
sameerynho has joined #ruby
10:52
nowhereman has quit [Ping timeout: 276 seconds]
10:52
claudiuinberlin has joined #ruby
10:52
akem__ has joined #ruby
10:56
infinityfye has joined #ruby
10:56
akemhp_ has quit [Ping timeout: 265 seconds]
10:57
akem__ has quit [Ping timeout: 240 seconds]
11:33
imtravis has quit [Ping timeout: 240 seconds]
11:37
tsujp has joined #ruby
11:38
imtravis has joined #ruby
11:39
tsujp has quit [Client Quit]
11:42
imtravis has quit [Ping timeout: 265 seconds]
11:43
imtravis has joined #ruby
11:45
akem__ has joined #ruby
11:46
gix has joined #ruby
11:47
imtravis has quit [Ping timeout: 240 seconds]
11:50
imtravis has joined #ruby
11:52
Rudd0 has quit [Ping timeout: 250 seconds]
11:53
Rudd0^ has quit [Ping timeout: 240 seconds]
11:56
queip has quit [Ping timeout: 240 seconds]
11:59
imtravis has quit [Ping timeout: 252 seconds]
12:01
queip has joined #ruby
12:01
imtravis has joined #ruby
12:04
claudiuinberlin has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
12:05
AJA4350 has joined #ruby
12:05
imtravis has quit [Ping timeout: 240 seconds]
12:09
imtravis has joined #ruby
12:09
Rudd0 has joined #ruby
12:14
imtravis has quit [Ping timeout: 276 seconds]
12:16
queip has quit [Ping timeout: 265 seconds]
12:19
imtravis has joined #ruby
12:20
queip has joined #ruby
12:28
imtravis has quit [Ping timeout: 240 seconds]
12:33
akem__ is now known as akem
12:33
imtravis has joined #ruby
12:42
queip has quit [Ping timeout: 240 seconds]
12:44
claudiuinberlin has joined #ruby
12:44
chalkmonster has joined #ruby
12:44
queip has joined #ruby
12:50
queip has quit [Ping timeout: 240 seconds]
12:52
queip has joined #ruby
12:56
imtravis has quit [Ping timeout: 240 seconds]
12:57
imtravis has joined #ruby
13:02
imtravis has quit [Ping timeout: 265 seconds]
13:05
imtravis has joined #ruby
13:08
alfiemax has quit [Remote host closed the connection]
13:09
alfiemax has joined #ruby
13:11
Swyper has joined #ruby
13:14
howaboutyes has joined #ruby
13:14
howaboutyes1 has joined #ruby
13:14
howaboutyes1 has quit [Client Quit]
13:14
alfiemax has quit [Ping timeout: 276 seconds]
13:15
howaboutyes has quit [Remote host closed the connection]
13:15
howaboutyes has joined #ruby
13:16
AJA4350 has quit [Ping timeout: 276 seconds]
13:18
queip has quit [Ping timeout: 265 seconds]
13:22
queip has joined #ruby
13:23
xGrind has joined #ruby
13:28
imtravis has quit [Ping timeout: 276 seconds]
13:28
queip has quit [Ping timeout: 240 seconds]
13:33
imtravis has joined #ruby
13:34
queip has joined #ruby
13:38
imtravis has quit [Ping timeout: 240 seconds]
13:40
AJA4350 has joined #ruby
13:41
claudiuinberlin has quit [Ping timeout: 276 seconds]
13:43
imtravis has joined #ruby
13:43
<
guardian >
hello, what ruby book would you recommend nowadays?
13:44
<
guardian >
oh didn't see the topic, is it up to date?
13:45
Nahra has joined #ruby
13:48
imtravis has quit [Ping timeout: 276 seconds]
13:49
imtravis has joined #ruby
13:54
_whitelogger has joined #ruby
13:55
hutch2 has joined #ruby
13:58
imtravis has quit [Ping timeout: 246 seconds]
14:01
imtravis has joined #ruby
14:07
pb122 has quit [Quit: Leaving]
14:15
dbugger has joined #ruby
14:17
akem has quit [Ping timeout: 276 seconds]
14:29
al2o3-cr has quit [Quit: WeeChat 2.6]
14:35
<
Iambchop >
guardian: I'd say it's still a good list
14:36
al2o3-cr has joined #ruby
14:41
imtravis has quit [Ping timeout: 265 seconds]
14:42
ellcs has joined #ruby
14:54
AJA4351 has joined #ruby
14:56
AJA4350 has quit [Ping timeout: 246 seconds]
14:56
AJA4351 is now known as AJA4350
14:56
bvdw has quit [Read error: Connection reset by peer]
14:57
poontangmessiah has joined #ruby
14:57
bvdw has joined #ruby
15:08
DTZUZO has quit [Ping timeout: 240 seconds]
15:12
Joush has joined #ruby
15:14
Joush is now known as Thyla
15:15
infinityfye has quit [Quit: Leaving]
15:17
tpanarch1st_ has joined #ruby
15:20
nowhereman has joined #ruby
15:22
DTZUZO has joined #ruby
15:22
hutch2 has quit [Ping timeout: 240 seconds]
15:27
<
havenwood >
We should migrate the book list gist into the community page. :)
15:27
whathappens has joined #ruby
15:29
imtravis has joined #ruby
15:33
dbugger has quit [Quit: Leaving]
15:35
chalkmonster has quit [Quit: WeeChat 2.6]
15:35
nowhereman has quit [Ping timeout: 252 seconds]
15:50
yann-kaelig has joined #ruby
15:54
AJA4351 has joined #ruby
15:55
AJA4350 has quit [Ping timeout: 252 seconds]
15:55
AJA4351 is now known as AJA4350
16:07
chalkmonster has joined #ruby
16:07
Nahra has quit [Ping timeout: 265 seconds]
16:11
akem has joined #ruby
16:18
queip has quit [Ping timeout: 240 seconds]
16:19
queip has joined #ruby
16:20
<
havenwood >
g'mornin'
16:27
chalkmonster has quit [Quit: WeeChat 2.6]
16:31
alfiemax has joined #ruby
16:36
alfiemax has quit [Ping timeout: 240 seconds]
16:37
Swyper has quit [Remote host closed the connection]
16:38
whathappens has quit [Remote host closed the connection]
16:42
Swyper has joined #ruby
16:56
queip has quit [Ping timeout: 265 seconds]
16:57
<
Swyper >
im so excited to finally work on my project :D
16:58
<
Swyper >
finally found a nice tutorial that dosen't take forever to do
17:00
queip has joined #ruby
17:00
BTRE has quit [Read error: Connection reset by peer]
17:01
<
adam12 >
Swyper: Build it!
17:01
AJA4350 has quit [Ping timeout: 240 seconds]
17:06
Nicmavr has quit [Read error: Connection reset by peer]
17:06
sandstrom has joined #ruby
17:09
Nicmavr has joined #ruby
17:16
Nahra has joined #ruby
17:16
Nahra has joined #ruby
17:19
ellcs has quit [Ping timeout: 252 seconds]
17:26
spacesuitdiver has joined #ruby
17:26
BTRE has joined #ruby
17:30
Thyla has quit [Read error: Connection reset by peer]
17:33
laudecay has joined #ruby
17:33
s3nd1v0g1us has joined #ruby
18:02
orbyt_ has joined #ruby
18:06
howaboutyes has quit [Quit: Leaving]
18:08
drincruz has quit [Ping timeout: 240 seconds]
18:09
Joush has joined #ruby
18:09
AJA4350 has joined #ruby
18:10
Joush is now known as Thyla
18:11
Thyla has quit [Client Quit]
18:11
Thyla has joined #ruby
18:16
AJA4351 has joined #ruby
18:18
AJA4350 has quit [Ping timeout: 240 seconds]
18:18
AJA4351 is now known as AJA4350
18:20
drincruz has joined #ruby
18:20
AJA4351 has joined #ruby
18:22
AJA4350 has quit [Ping timeout: 240 seconds]
18:22
AJA4351 is now known as AJA4350
18:24
johnny56 has joined #ruby
18:26
brool has joined #ruby
18:27
akemhp has joined #ruby
18:31
akem has quit [Ping timeout: 240 seconds]
18:34
drincruz has quit [Ping timeout: 276 seconds]
18:44
sandstrom has quit [Quit: My computer has gone to sleep.]
18:52
rcvu has quit [Quit: leaving]
18:53
drincruz has joined #ruby
19:02
poontangmessiah has quit [Ping timeout: 240 seconds]
19:07
drincruz has quit [Ping timeout: 250 seconds]
19:09
xGrind has quit [Read error: Connection reset by peer]
19:09
suukim has quit [Quit: Konversation terminated!]
19:12
akemhp has quit [Ping timeout: 240 seconds]
19:22
hiroaki has quit [Ping timeout: 265 seconds]
19:23
code_zombie has joined #ruby
19:28
Swyper has quit [Remote host closed the connection]
19:30
poontangmessiah has joined #ruby
19:38
Thyla has quit [Ping timeout: 240 seconds]
19:46
poontangmessiah has quit [Quit: Leaving]
19:46
poontangmessiah has joined #ruby
19:50
Thyla has joined #ruby
19:52
AJA4351 has joined #ruby
19:54
AJA4350 has quit [Ping timeout: 276 seconds]
19:54
AJA4351 is now known as AJA4350
19:55
Thyla has quit [Read error: Connection reset by peer]
19:56
AJA4351 has joined #ruby
19:58
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
19:59
AJA4350 has quit [Ping timeout: 276 seconds]
20:01
AJA4351 has quit [Ping timeout: 265 seconds]
20:01
AJA4350 has joined #ruby
20:03
johnny56 has quit [Ping timeout: 240 seconds]
20:06
johnny56 has joined #ruby
20:06
<
Intelo >
How to allow CORS but only if the origin ends with '.site.com'
20:08
alfiemax has joined #ruby
20:12
alfiemax has quit [Ping timeout: 246 seconds]
20:17
bitwinery has joined #ruby
20:18
AJA4351 has joined #ruby
20:21
cd has joined #ruby
20:21
AJA4350 has quit [Ping timeout: 240 seconds]
20:21
AJA4351 is now known as AJA4350
20:23
beanie__ has joined #ruby
20:25
tpanarch1st_ has quit [Ping timeout: 240 seconds]
20:26
AJA4351 has joined #ruby
20:27
AJA4350 has quit [Ping timeout: 240 seconds]
20:27
AJA4351 is now known as AJA4350
20:31
lucasb has joined #ruby
20:35
akemhp has joined #ruby
20:35
Swyper has joined #ruby
20:44
imtravis has quit [Ping timeout: 240 seconds]
20:48
imtravis has joined #ruby
20:52
Swyper has quit [Remote host closed the connection]
20:52
Swyper has joined #ruby
20:56
bvdw has quit [Read error: Connection reset by peer]
20:56
drincruz has joined #ruby
20:57
bvdw has joined #ruby
21:03
Swyper has quit [Remote host closed the connection]
21:04
drincruz has quit [Ping timeout: 240 seconds]
21:08
Intelo has quit [Remote host closed the connection]
21:09
Intelo has joined #ruby
21:11
hiroaki has joined #ruby
21:13
Swyper has joined #ruby
21:14
AJA4351 has joined #ruby
21:15
AJA4350 has quit [Ping timeout: 240 seconds]
21:15
AJA4351 is now known as AJA4350
21:17
drincruz has joined #ruby
21:19
laudecay has quit [Ping timeout: 240 seconds]
21:23
johnny56 has quit [Read error: Connection reset by peer]
21:25
Fernando-Basso has quit [Quit: Leaving]
21:26
ablackack has quit [Ping timeout: 268 seconds]
21:26
ablackack has joined #ruby
21:26
johnny56 has joined #ruby
21:27
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
21:29
ravenousmoose has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
21:37
yann-kaelig has quit [Quit: yann-kaelig]
21:40
ogres has joined #ruby
21:40
poontangmessiah has quit [Quit: Leaving]
21:44
queip has quit [Ping timeout: 245 seconds]
21:44
thebananaking has quit [Quit: Connection closed for inactivity]
21:47
Swyper_ has joined #ruby
21:47
Swyper has quit [Read error: Connection reset by peer]
21:48
Swyper has joined #ruby
21:48
Swyper_ has quit [Read error: Connection reset by peer]
21:48
Swyper_ has joined #ruby
21:49
Swyper has quit [Read error: No route to host]
21:50
Swyper has joined #ruby
21:50
Swyper_ has quit [Read error: Connection reset by peer]
21:53
Swyper has quit [Remote host closed the connection]
21:54
queip has joined #ruby
21:55
silviu has quit [Write error: Broken pipe]
21:55
silviu has joined #ruby
21:57
schne1der has joined #ruby
21:58
Swyper has joined #ruby
22:00
Swyper has quit [Remote host closed the connection]
22:01
Swyper has joined #ruby
22:07
hutch2 has joined #ruby
22:09
sandstrom has joined #ruby
22:10
sandstrom has quit [Client Quit]
22:11
sandstrom has joined #ruby
22:16
NODE has quit [Ping timeout: 240 seconds]
22:18
dionysus69 has joined #ruby
22:19
NODE has joined #ruby
22:21
alfiemax has joined #ruby
22:22
SirFunk has quit [Remote host closed the connection]
22:22
hutch2 has quit [Ping timeout: 240 seconds]
22:23
hiroaki has quit [Ping timeout: 240 seconds]
22:24
AJA4351 has joined #ruby
22:25
alfiemax has quit [Ping timeout: 246 seconds]
22:27
AJA4350 has quit [Ping timeout: 240 seconds]
22:27
AJA4351 is now known as AJA4350
22:31
ellcs has joined #ruby
22:32
hiroaki has joined #ruby
22:33
<
al2o3-cr >
&>> Array.new(3, []) { |o| o }
22:41
hutch2 has joined #ruby
22:47
sandstrom has quit [Quit: My computer has gone to sleep.]
22:51
hiroaki has quit [Ping timeout: 240 seconds]
22:53
Swyper has quit [Remote host closed the connection]
22:54
Swyper has joined #ruby
22:58
Swyper has quit [Remote host closed the connection]
22:58
Swyper has joined #ruby
23:00
Esa_ has joined #ruby
23:00
Swyper has quit [Remote host closed the connection]
23:01
Swyper has joined #ruby
23:03
Swyper has quit [Remote host closed the connection]
23:04
Swyper has joined #ruby
23:04
ellcs has quit [Ping timeout: 250 seconds]
23:09
Swyper has quit [Remote host closed the connection]
23:25
ccooke has quit [Ping timeout: 276 seconds]
23:32
AJA4351 has joined #ruby
23:34
AJA4350 has quit [Ping timeout: 240 seconds]
23:34
AJA4351 is now known as AJA4350
23:51
goepsilongo has joined #ruby
23:51
johnny56 has quit [Ping timeout: 240 seconds]
23:52
johnny56_ has joined #ruby
23:57
kobain has joined #ruby
23:57
Inline__ has joined #ruby
23:58
drincruz has quit [Ping timeout: 265 seconds]