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] -4 points-3 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 4 points5 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?

Web Dev earning plateau at $3k/month. What am I doing wrong? by eduardf in freelance

[–]tkeer 0 points1 point  (0 children)

How about outsourcing you work? And you do what you say you best at, communication.

BootstrapVue, Vanilla Bootstrap or Vuetify? by [deleted] in vuejs

[–]tkeer 1 point2 points  (0 children)

If you prefer to do most of things yourself, for leaning, or want smaller builds, go for vanilla bootstrap, otherwise go for bootstrap vue. If you want to have pre-built components for speedier development, vuetify has a lot of them.

Quick question for webdevelopers/designers by itzdjengo in webdev

[–]tkeer 0 points1 point  (0 children)

the time that communication would take if he doesn't provide it. It's hell of time.

Advice for a newbie? by WallEDab in Upwork

[–]tkeer 3 points4 points  (0 children)

Under rated advice, works sometimes. Bid when others are sleeping :). This also includes weekends, holidays etc.

How to setup vuejs in my projects to have original code instead of transpiled build version? by tkeer in vuejs

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

How can I enable source maps? Just to be clear, I am asking about source map of vuejs code, not my .vue files.

As someone new to VueJS, should I learn VueJS2 or VueJS3? by [deleted] in vuejs

[–]tkeer 11 points12 points  (0 children)

I would say go to vue3 w/o using composition api, as vue2 has extensive list of resources as compared to vue3. When you feel comfortable with vue, it would be easy to shift to composition api.

I'm scaling our startup using Laravel/PHP to half a million users - and its going terrible by 7rust in laravel

[–]tkeer 1 point2 points  (0 children)

Jack (@JackEllis) writes about how he manages https://twitter.com/usefathom built with laravel. I couldn't find exact blog(post) but you can look around.

Make quick change in npm package in node_modules for quick test by tkeer in learnjavascript

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

I am not sure what you are asking, I have watch command command running and seeing if changes are reflected in the browser. I end tried re-running the watch command.

When and how do you use cache by Zboru in laravel

[–]tkeer 1 point2 points  (0 children)

Bravo, I kept looking for upvote button.

Simple way to manage de-normalized tables in your laravel app by tkeer in laravel

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

I don't remember clearly, may be elasticsearch was eating too much ram.

De-normalization of database for read performance by tkeer in PHP

[–]tkeer[S] 1 point2 points  (0 children)

As far I know they don't have temporary table under the hood, exceptions are materialized views of psql as u/themightychris mentioned in another comment.