@extends('layouts.front') @section('content')

Blog

@foreach($articles as $article) @endforeach {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
    --}} {{--
  • --}} {{----}} {{--
  • --}} {{--
  • --}} {{----}} {{--
  • --}} {{--
  • --}} {{----}} {{--
  • --}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--

Recursive Find from Command Line

--}} {{--

Probably a dozen times a day I need to search any given project for specific code keywords. Most of the time it's within a specific project but then there are times where I don't remember which directory or project the specific text is -- from my blog to my many Mozilla projects, I have code all over my local machine and it's oftentimes difficult to find something I need.--}} {{--Most of the time I need to open my text editor and have it do the hard work of what I'm looking for but that's probably not efficient -- a more efficient tool would come from command line and thanks to CommandLineFu.com, I found the perfect command:--}} {{--

--}}
                                        {{--# Search all ".js" files for "debounce"--}}
                                        {{--# Spits out file path, line number, and snippet where string appears--}}
                                        {{--find . -name "*.js" -exec grep -in -H "debounce" {} \;--}}
                                    {{--
--}} {{--The command above searches files recursively to find the desired string, outputting the source file and the text which the string occurs in!

--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{----}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
    --}} {{--
  • --}} {{----}} {{--
  • --}} {{--
  • --}} {{----}} {{--
  • --}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--

Class aptent taciti sociosqu ad litora torquent

--}} {{--

Euismod atras vulputate iltricies etri elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla nunc dui, tristique in semper vel, congue sed ligula. Nam dolor ligula, faucibus id sodales in, auctor fringilla libero. [...]

--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{----}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
    --}} {{--
  • --}} {{----}} {{--
  • --}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--

Class aptent taciti sociosqu ad litora torquent

--}} {{--

Euismod atras vulputate iltricies etri elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla nunc dui, tristique in semper vel, congue sed ligula. Nam dolor ligula, faucibus id sodales in, auctor fringilla libero. Pellentesque pellentesque tempor tellus eget hendrerit. Morbi id aliquam ligula. Aliquam id dui sem. Proin rhoncus consequat nisl, eu ornare mauris tincidunt vitae. [...]

--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{----}} {{--
--}} {{--
--}} {{--
--}} {{----}}
@stop