EDDYMENS

Eddymens (List page)


Last updated 2019-01-13 06:58:47

What The Heck Is Docker Used For ?

If you recently had to deal with setting up a dev environment or try deploy to production, then chances are you have encountered docker either via search or as a suggested solution. What is Docker anyways? One of the most difficult thing for me was figuring out what D...

Last updated 2019-01-08 06:09:19

Knowing When It's A Model Or A Builder(Laravel)

User::where('id',1)->update([]) and User::find(1)->update([]) do the same thing but in different ways. Erhn? When working with databases in Laravel you usually find yourself either using Eloqu...

Last updated 2017-05-16 01:36:56

BrainFuck Interpreter Using Method Chaining

I have been sick for the last couple of days, and I have not been able to get much work done. So in the spirit of being productive, I decided to take a look at the little things I have long been planning to do. One such thing was to look at Brainfuck lang. Brainfuck is an esolang ...