jgrossi.comJunior Grossi – Senior Software Engineer & Stutterer Conference Speaker. Happy husband & dad. Mainta

jgrossi.com Profile

jgrossi.com

Title:Junior Grossi – Senior Software Engineer & Stutterer Conference Speaker. Happy husband & dad. Mainta

Description:Laravel is a PHP framework that uses Eloquent, a powerful and amazing ORM that allows you to do complex SQL queries in a very easy way. But sometimes you need more, and here I'm gonna give you an interesting tip that can bring you a lot of flexibility. When dealing with simple database queries in Laravel maybe you don't have so

Discover jgrossi.com website stats, rating, details and status online.Use our online tools to find owner and admin contact info. Find out where is server located.Read and write reviews or vote to improve it ranking. Check alliedvsaxis duplicates with related css, domain relations, most used words, social networks references. Go to regular site

jgrossi.com Information

Website / Domain: jgrossi.com
HomePage size:63.688 KB
Page Load Time:0.054146 Seconds
Website IP Address: 75.119.203.119
Isp Server: New Dream Network LLC

jgrossi.com Ip Information

Ip Country: United States
City Name: Brea
Latitude: 33.930221557617
Longitude: -117.88842010498

jgrossi.com Keywords accounting

Keyword Count

jgrossi.com Httpheader

Server: nginx
Date: Mon, 28 Jun 2021 08:50:38 GMT
Content-Type: text/html; charset=UTF-8
Content-Length: 13014
Connection: keep-alive
Vary: X-Forwarded-Proto,Accept-Encoding
Last-Modified: Mon, 28 Jun 2021 08:41:13 GMT
ETag: "32d6-5c5cf73b86979"
Accept-Ranges: bytes
Referrer-Policy:
Content-Encoding: gzip

jgrossi.com Meta Info

charset="utf-8"/
content="width=device-width" name="viewport"/
content="WordPress 5.2.11" name="generator"
content="Querying and Eager Loading complex relations in Laravel - Junior Grossi" property="og:title"
content="https://blog.jgrossi.com/2018/querying-and-eager-loading-complex-relations-in-laravel/" property="og:url"/
content="Junior Grossi" property="og:site_name"/
content="https://blog.jgrossi.com/wp-content/uploads/2018/05/anna-sullivan-575433-unsplash-e1525461289734.jpg" property="og:image"/
content="summary_large_image" name="twitter:card"/
content="Querying and Eager Loading complex relations in Laravel - Junior Grossi" name="twitter:title"/
content="https://blog.jgrossi.com/wp-content/uploads/2018/05/anna-sullivan-575433-unsplash-e1525461289734.jpg" property="twitter:image"/
content="https://blog.jgrossi.com/wp-content/uploads/2018/02/cropped-profile10-800-1-270x270.jpg" name="msapplication-TileImage"/

75.119.203.119 Domains

Domain WebSite Title

jgrossi.com Similar Website

Domain WebSite Title
jgrossi.comJunior Grossi – Senior Software Engineer & Stutterer Conference Speaker. Happy husband & dad. Mainta
ksloan.netKevin Sloan – Software Engineer
michaltakac.comMichal Takac - Software Engineer · Michal Takac - Software Engineer
tech.franzone.blogJonathan Franzone - I code, therefore I am... a software engineer
triplebyte.comTriplebyte: Software Engineer Job Search
spatang.comChris Newhouse :: Mobile developer, software engineer, designer, Oregon
jkudish.comJoey Kudish | Software Developer, DJ, Producer/Mix Engineer & Digital Nomad
us.ni.comEngineer Ambitiously - NI
theengineerguy.comThe Engineer Guy
driveengineer.comDrive Engineer | Drive Engineer
landing.ni.comEngineer Ambitiously - NI
powermiser.driveengineer.comPowerMiser | Drive Engineer
howto.theengineerguy.comThe Engineer Guy Blog
george.vassilopoulos.infoGEORGE VASSILOPOULOS, CIVIL ENGINEER M. SC.
aubronwood.comAubron Wood - Frontend Engineer

jgrossi.com Traffic Sources Chart

jgrossi.com Alexa Rank History Chart

jgrossi.com aleax

jgrossi.com Html To Plain Text

Junior Grossi – Senior Software Engineer & Stutterer Conference Speaker. Happy husband & dad. Maintains Corcel PHP, elePHPant.me and PHPMG. Team Lead @ Glofox Skip to content Junior Grossi Senior Software Engineer & Stutterer Conference Speaker. Happy husband & dad. Maintains Corcel PHP, elePHPant.me and PHPMG. Team Lead @ Glofox Menu and widgets Pages About Open Source Search for: Recent Posts Querying and Eager Loading complex relations in Laravel May 7, 2018 Solitary or Sociable? Testing Events and Listeners using Laravel April 30, 2018 QueryFilter: A Model Filtering Concept April 23, 2018 Congratulations! Now you are a remote worker. Enjoy your new life! April 2, 2018 Open-source is about sharing and giving back. Think about that. March 26, 2018 Querying and Eager Loading complex relations in Laravel Published on May 7, 2018. Laravel is a PHP framework that uses Eloquent, a powerful and amazing ORM that allows you to do complex SQL queries in a very easy way. But sometimes you need more, and here I’m gonna give you an interesting tip that can bring you a lot of flexibility. When dealing with simple database queries in Laravel maybe you don’t have so many challenges, because it’s really very easy to use. But when your app starts growing or even your boss needs some type of reports, then you start thinking “How can I do that with Laravel”? In some cases, you know how to do that using pure SQL, but it’s not so good to write a beautiful code and suddenly a SQL query in the middle of everything. Then you start trying to find how you can do that with Eloquent. Sometimes you have to query and use the matching results, the same ones, actually. This is a case where the same logic you use for filtering is used for the relation itself. I’m gonna explain it better below. Continue reading Querying and Eager Loading complex relations in Laravel Posted on May 7, 2018 May 4, 2018 Categories Laravel , PHP 8 Comments on Querying and Eager Loading complex relations in Laravel Solitary or Sociable? Testing Events and Listeners using Laravel Published on April 30, 2018. Testing with Laravel is very easy, but it can be a nightmare when the tests depend on Events and Listeners. In this post I’m gonna show you how you can simplify and improve those tests. Laravel is one of the most popular PHP frameworks nowadays, and I’d say its Event handler is one of the most powerful features. Using events in Laravel is usually very easy, but when your app gets bigger you can get in trouble with previously written tests. When testing events in Laravel, you can fake() events in a very simple way, like the documentation says. The problem is not with the events, but with the listeners, because usually a listener does a single action, but with more than one listener you start writing repeatable tests. Continue reading Solitary or Sociable? Testing Events and Listeners using Laravel Posted on April 30, 2018 April 27, 2018 Categories Laravel , Mock , PHP , Programming , TDD 4 Comments on Solitary or Sociable? Testing Events and Listeners using Laravel QueryFilter: A Model Filtering Concept Published on April 23, 2018. Having a clean code with single responsibility is important, and doing that for model filtering can be easy and very powerful. Believe me. This blog post is related to a talk I gave on April, 2018 on Darkmira Tour PHP 2018 , in Brasília/DF, Brazil, with the same title. The slides are on SpeakerDeck . Filtering models was, for a very long time, a hard task for me. I admit that I could not think in some easy way to do that. I tried, refactored some code, created custom classes for that, but I never thought how this could be easily implemented. Watching a Laracast’s video from 2016 about the Laravel’s Eloquent ORM I faced of with a bunch of classes and a trait that removed a lot of trash from my controller actions. That was called by Jeffrey Way the QueryFilter . Continue reading QueryFilter: A Model Filtering Concept Posted on April 23, 2018 April 27, 2018 Categories Laravel , Open Source , PHP , Talks 5 Comments on QueryFilter: A Model Filtering Concept Congratulations! Now you are a remote worker. Enjoy your new life! Published on April 2, 2018. Working remotely is the dream job of most developers I know. It’s a hard process but it’s totally possible. Now you got the best job you could . Enjoy your new life! The beginning. The dream. Do you remember yourself some weeks/months ago? The first interview you did (maybe you’re not a native English speaker like me). You’ve improved a lot, you’re a better person. You’re speaking a “better English and you’re not shy “in front of” the interviewers anymore. After resumes and more resumes, after those initial interviews, those technical ones, after doing a “sample project” to show up your skills, you got your dream job. You received an offer and you accepted it. Now you’re officially a remote worker! Congratulations to you and to your wife, because now you’re going to be at home every day, and this is really important! Now you can work from anywhere, even traveling. Now you can be a digital nomad. Now you can work without pants, with slippers and you can wake up just a few minutes before start working. No more commuting, no more offices. Next week you’re going to start a new step in your life. Be prepared, because your life’s going to start changing forever. I said forever. Continue reading Congratulations! Now you are a remote worker. Enjoy your new life! Posted on April 2, 2018 April 2, 2018 Categories Careers , Programming , Remote Work 5 Comments on Congratulations! Now you are a remote worker. Enjoy your new life! Open-source is about sharing and giving back. Think about that. Published on March 26, 2018. Maintaining an open source project – even a small one – is not an easy task. The open source ecosystem is about sharing and contributing, about giving and receiving. You scratch my back and I will scratch yours. Open-source is not only a free and open software, it’s a lifestyle. Working with open-source is working for free, making the other’s life better. It’s like someone that works helping people through an NGO (Non-Governmental Organization). They do the better expecting nothing back. According to the Oxford Dictionary open-source is “ Denoting software for which the original source code is made freely available and may be redistributed and modified”. Pay attention to these two words: redistributed and modified. This means that you can change the original code, can update it to your needs, and can share it back to the community. Remember this. Continue reading Open-source is about sharing and giving back. Think about that. Posted on March 26, 2018 March 26, 2018 Categories Open Source , PHP , Programming Leave a comment on Open-source is about sharing and giving back. Think about that. Degree or not degree? When is it really important? Published on March 19, 2018. One of the most discussed topics in the technology field is about having degrees and how important they are. Do you really need one to be a good engineer? When is it really important for you? Writing a post like this is a big responsibility. I’m not here to say if you should attend to a university degree, even the opposite. I’m here to share my experience and make you think about this subject with at least two different points of view. Since 2016 I’m on the employee side of the desk, but I stayed on the employer one for nine years, including hiring. Continue reading Degree or not degree? When is it really important? Posted on March 19, 2018 March 19, 2018 Categories Careers , Open Source , Programming 4 Comments on Degree or not degree? When is it really important? Easy server provision for PHP environments using ServerPilot Published on March 12, 2018. Learn how to use a very simple and efficient service called ServerPilot for provisioning a web server to host your next PHP project or blog. Provisioning a well-configured web server for a PHP applic...

jgrossi.com Whois

"domain_name": [ "JGROSSI.COM", "jgrossi.com" ], "registrar": "NAMECHEAP INC", "whois_server": "whois.namecheap.com", "referral_url": null, "updated_date": [ "2020-10-24 07:02:07", "2020-10-24 07:02:07.690000" ], "creation_date": "2015-11-23 18:13:48", "expiration_date": "2021-11-23 18:13:48", "name_servers": [ "NS1.DREAMHOST.COM", "NS2.DREAMHOST.COM", "NS3.DREAMHOST.COM", "ns1.dreamhost.com", "ns2.dreamhost.com", "ns3.dreamhost.com" ], "status": "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", "emails": [ "abuse@namecheap.com", "640ee70ef3944e8fb3e496a29bf67752.protect@withheldforprivacy.com" ], "dnssec": "unsigned", "name": "Withheld for Privacy Purposes", "org": "Privacy service provided by Withheld for Privacy ehf", "address": "Kalkofnsvegur 2", "city": "Reykjavik", "state": "Capital Region", "zipcode": "101", "country": "IS"