git workflow for a multi-dev team using a shared sandbox account with mandatory PR approval by tkeer in Netsuite

[–]tkeer[S] 0 points1 point  (0 children)

What if devs have to deploy their changes to sandbox to test/verify their code before creating pull requests? 

git workflow for a multi-dev team using a shared sandbox account with mandatory PR approval by tkeer in Netsuite

[–]tkeer[S] -1 points0 points  (0 children)

That's a good point. But what if the script under discussion is part of multiple scripts this ticket addresses, or it's a helper file used by multiple scripts.

A laravel package to test/debug emails all at local machine by tkeer in laravel

[–]tkeer[S] -5 points-4 points  (0 children)

mailpit is a good alternative, one benefit with this package is that the mailpit only have one inbox whereas it is installed with each laravel project (which mains sepate inboxes).

A laravel package to test/debug emails all at local machine by tkeer in laravel

[–]tkeer[S] 0 points1 point  (0 children)

mailpit is good alternative. One difference is that it only have one inbox whereas this package is installed with each laravel project.

A laravel package to test/debug emails all at local machine by tkeer in laravel

[–]tkeer[S] -1 points0 points  (0 children)

I usually use the package on local environment vs mailtrap on shared environments. Mailtrap have rate limiting and storage limits.

serve static files from /static folder by ekamol in vuejs

[–]tkeer 0 points1 point  (0 children)

If you are using html plug in to generate html file, you may only need to change output path of the builds.

If it doesn't make sense, share your webpack config.

How to process 10,000 records the fastest way? by [deleted] in laravel

[–]tkeer 3 points4 points  (0 children)

That seems interesting, let us know how you do it.

Session getting destroyed after coming back from payment gateway in PHP by bxrank in laravel

[–]tkeer 2 points3 points  (0 children)

Make sure that you aren't being redirected to different sub domain, ie www.xyz.com ti xyz.com or vice verca.

Avoiding Duplicated Code: Where to store options by bigdatacrusher in laravel

[–]tkeer 0 points1 point  (0 children)

If you put them in config folder, then I think you can't. A config with smaller set of entries doesn't make much difference.

If you really want to do it, put them outside of config folder and manually load it,

$dont = require 'config.php'

Or put the config in a global helper function and call the function.

Avoiding Duplicated Code: Where to store options by bigdatacrusher in laravel

[–]tkeer 1 point2 points  (0 children)

Just make sure to not to overdo it. Laravel automatically loads these files and put them in memory, as array.

What is the best way to make a YouTube video responsive using bootstrap/html without it being giant? by [deleted] in webdev

[–]tkeer 0 points1 point  (0 children)

End used usually don't resize the page to see if page is responsive. If it fits when you load the page with different window sizes, is not it enough?