https://www.datamuse.com/api/ https://thenounproject.com/ We can get related words and icons from the above services. These services would be very useful when you work for AI jobs or design jobs!
Sendgrid Automation
We can use sendgrid automation functionality, which is beta for now (2019 / 4), we can send periodical e-mails to users which are added as contacts in sendgrid with the functionality. https://sendgrid.com/docs/ui/sending-email/getting-started-with-automation/ Developers do not need to worry about checking days after signup, just using the sendgrid automation!
One last, but most tricky choice when you can not login with google account
https://www.google.com/accounts/IssuedAuthSubTokens The link above will lead you the page where the list of apps which has permission to your google account. Remove the domain which you fail to login. And the try login again. Add clap if this work!
FB test account
There is a way to create a fake (test) facebook account though it has limitations. The limitations are You cannot connect to any standard Facebook account. However, you can connect with other test accounts. You can post on your wall, but it is not possible to do the same on any page’s wall. You cannot …
jwt && remember me functionality
JSON Web Token (JWT) is an open standard (RFC 7519) that defines a compact and self-contained way for securely transmitting information between parties as a JSON object. This information can be verified and trusted because it is digitally signed. JWTs can be signed using a secret (with the HMAC algorithm) or a public/private key pair using RSA or ECDSA. Although …
Trigger in mySql
A trigger is a named database object that is associated with a table, and that activates when a particular event occurs for the table. Some uses for triggers are to perform checks of values to be inserted into a table or to perform calculations on values involved in an update. A trigger is defined to …
Closure in javascript
A closure is the combination of a function and the lexical environment within which that function was declared. This environment consists of any local variables that were in-scope at the time the closure was created. Closures are useful because they let you associate some data (the lexical environment) with a function that operates on that …
php-cs-fixer
This package make the code style align in php. You can use this with code editors like php or git shell script. The PHP Coding Standards Fixer (PHP CS Fixer) tool fixes your code to follow standards; whether you want to follow PHP coding standards as defined in the PSR-1, PSR-2, etc., or other community …
git rebase -i
This git command make several commits group into 1 commit. git rebase -i HEAD~n You can remove n commits into 1 single or m other commits. After typing the above command, hit enter. Put pick in front of commits which you want to remain. Put squash in front of commits which you want to break. …
League/Fractal
Fractal provides a presentation and transformation layer for complex data output, the like found in RESTful APIs, and works really well with JSON. Think of this as a view layer for your JSON/YAML/etc. Goals Create a “barrier” between source data and output, so schema changes do not affect users Systematic type-casting of data, to avoid foreach()ing …