CDN stands for Content Delivery Network. The goal of a CDN is to serve content to end-users with high availability and high performance.Which will deliver…
5 CommentsAuthor: Praveen Anaparthi
11+ years of IT industry experience holding a wide range of skill sets and roles with significant work on PHP, Node.js, Python, Ruby, Docker, React.js, Microsoft Azure, Azure DevOps, Windows PowerShell, Shell script, Jenkins, MongoDB, SQL, MySQL, Apache, Nginx. etc. It is my passion to learn new things and implement them as a practice. Aside from work, I like gardening and spending time with pets.
This snippet will detect a private IP address using PHP’s built in filter library and It will return false if the IP address is private.
Leave a CommentIf you need to download a CSV file on the fly without writing to external file, than you need to open php://output stream and use…
5 CommentsOne of the little known styling options is selection text styling with in the browser.Yes, it is possible to define color, background and text-shadow for…
Leave a CommentBy default, placeholder text in inputs has a light gray color(if the browsers support) and which appears in an input field until the user puts…
1 CommentSuccess and achievement have different meanings for different people. In the quest for money, good jobs, top positions and materialistic possessions, we sometimes forget where…
Leave a CommentCodeIgniter permits you to override its default routing behavior through the use of the _remap() function. As you already knew the second segment of the…
1 CommentYou may have noticed select/deselect all functionality on websites like gmail.com, outlook.com or even in the wordpress admin dashboard basically which allows you to select…
Leave a CommentLaravel 5.0 introduces Form Requests, which are a special type of class devoted to validating and authorizing form submissions. Each class contains at least a…
Leave a CommentRecently Google has been introduced new reCaptcha API called “Are you a robot?”. “No Captcha reCaptcha” a complete new design captcha system and it enables…
1 Commentclass NewMediaModel extends Model { public function getTableColumns() { return $this->getConnection()->getSchemaBuilder()->getColumnListing($this->getTable()); } }
1 Comment@if($errors->has()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif
Leave a CommentBy adding dynamic body class to html pages we can get the flexibility of easily modifying the look of the each page by using css…
Leave a CommentWe can merge easily laravel’s query result with another result object, by using laravel’s Collections method called merge(), It will merge a collection with another…
6 Comments