What? Timeago is a jQuery plugin that makes it easy to support automatically updating fuzzy timestamps (e.g. “4 minutes ago” or “about 1 day ago”). View the examples, and enjoy. You opened this page about a minute ago. This page was last modified about 15 hours ago. Ryan was born 40 years ago. Why? Timeago was originally built for …
Braintree payment
It’s a popular payment gateway like stripe. It’s advantages are It provides payment functionality in Mobile, Tablet and Desktop platforms. It provides various types of card payment, paypal payment and other gateways. IF you develop any project based on laravel, you can implement the braintree payment by laravel cashier. Or you can use PHP SDK …
Is There Limitation of Variables in Form Submission?
Yes, You may need to submit over 1000 variable data from Web Form. In this case, the number of variables are default limited by 1000 variables in PHP This is default configuration in php.ini file. If you need more, please set the max_input_vars=5000 in php.ini Reference: http://php.net/manual/en/info.configuration.php#ini.max-input-vars
Get tired from node-gyp error in npm install?
It’s really fucking that when you get node-gyp permission error installing npm packages. There is a trade-off.You can workaround by adding –unsafe-perm to the npm install command. You can install the package peacefully.
Laravel logging
Laravel provides rich logging functionality. We can post messages to third party chatting platforms like slack using Laravel logging functionality. All of the configuration for your application’s logging system is housed in the config/logging.php configuration file. This file allows you to configure your application’s log channels, so be sure to review each of the available channels and …
Node schedule
Node Schedule is a flexible cron-like and not-cron-like job scheduler for Node.js. It allows you to schedule jobs (arbitrary functions) for execution at specific dates, with optional recurrence rules. It only uses a single timer at any given time (rather than reevaluating upcoming jobs every second/minute).https://github.com/node-schedule/node-schedule
Fetching modules directly from git repository
Sometimes we need to fetch some modules directly from git repository like we install npm modules. For example, we need to use npm modules but with some modifications. In that case, we can fork or clone those repositories into our personal github and fetch it directly using url. The command is npm install git+<git repository …
Hackathon Starter
A boilerplate for Node.js web applications.https://github.com/sahat/hackathon-starter This is Node.js boilerplate template with authentication module and social login modules.We can use it in Node.js projects instead of starting from scratch.
Laravel Queue
Laravel queues provide a unified API across a variety of different queue backends, such as Beanstalk, Amazon SQS, Redis, or even a relational database. Queues allow you to defer the processing of a time consuming task, such as sending an email, until a later time. Deferring these time consuming tasks drastically speeds up web requests …
Trait in PHP
Traits are a mechanism for code reuse in single inheritance languages such as PHP. A Trait is intended to reduce some limitations of single inheritance by enabling a developer to reuse sets of methods freely in several independent classes living in different class hierarchies. The semantics of the combination of Traits and classes is defined …