← prev | next →
ErgashevXurshid 2019-03-08 06:09:41
Erfan1999_sh 2019-03-08 05:47:25
in laravel we should use it?
Nope
ErgashevXurshid 2019-03-08 06:12:51
Now Into the projekt you need run this command :
php -S 127.0.0.1:1234
Then try it in browser.
ErgashevXurshid 2019-03-08 06:13:28
ErgashevXurshid 2019-03-08 06:12:51
Now Into the projekt you need run this command :
php -S 127.0.0.1:1234
Then try it in browser.
http://127.0.0.1:1234
2019-03-08 07:01:53
2019-03-07 09:07:56
Hey devs, just published a tutorial on how to implement a weighted ranking sytem in Laravel based on the number of upvotes and downvotes.same concept used in sites like quora and stackoverflow.Feel free to ask any question or leave suggestions.check it out here https://www.talwork.net/upvotedownvote-weighted-ranking-system-in-laravel-using-bayesian-formula
cool
2019-03-08 07:06:40
Emma250 2019-03-07 21:08:08
Who can help me build a blog app
https://hexo.io/
79423 2019-03-08 11:08:47
did anyone tried to use SSR with Vue?
sergey_muc 2019-03-08 12:49:46
Probably someone could be interested: https://blog.larapulse.com/laravel/laravel-certification
linux2014 2019-03-08 18:03:04
Do someone can help me for setting user rules
linux2014 2019-03-08 20:32:40
linux2014 2019-03-08 18:03:04
Do someone can help me for setting user rules
Roles
Hfally 2019-03-08 23:23:43
Hello everyone.
Did you know its best to deactivate console.log() on production?
Here is why and how:
https://medium.com/@hfally/deactivate-console-log-on-production-why-and-how-d0345abbe71 …
Deactivate console.log on production (Why and How) –
MediumAs a JavaScript developer, console.log(…) is a savior, so is alert(…). Savior?Well, they both come in very handy when we are debugging…
mmosttaffaa 2019-03-09 01:32:11
Hfally 2019-03-08 23:23:43
Hello everyone.
Did you know its best to deactivate console.log() on production?
Here is why and how:
https://medium.com/@hfally/deactivate-console-log-on-production-why-and-how-d0345abbe71 …
Greate. thanks for sharing this
Hfally 2019-03-09 01:39:48
mmosttaffaa 2019-03-09 01:32:11
Greate. thanks for sharing this
You’re welcome 😊
sergey_muc 2019-03-09 11:36:19
Hfally 2019-03-08 23:23:43
Hello everyone.
Did you know its best to deactivate console.log() on production?
Here is why and how:
https://medium.com/@hfally/deactivate-console-log-on-production-why-and-how-d0345abbe71 …
It’s not deactivating, it’s overwriting with empty function. Could be enabled again same way. So no reason to do that at all 🤷♂️ and same probable should be done for console.dir and console.error ?
Hfally 2019-03-09 11:46:12
sergey_muc 2019-03-09 11:36:19
It’s not deactivating, it’s overwriting with empty function. Could be enabled again same way. So no reason to do that at all 🤷♂️ and same probable should be done for console.dir and console.error ?
You have a very valid point.. But as stated in this paragraph:
“When debugging or making sure APIs or other resources are working well, we tend to log a lot of information into the console, including data that errrr… should be hidden (at least without unnecessary diggings by evildoers or over inquisitive users). If you are like me, then it is only normal you use console.log(…) a lot and forget to remove them (at least not all) from your codes.”
It doesn’t give a deletion of the function… But then, if you have a better way in mind, I’ll be happy to learn.. Just thought to share my little trick with the public.
Hfally 2019-03-09 11:47:30
…(at least without unnecessary diggings by evildoers or over inquisitive users)… 😂
sergey_muc 2019-03-09 11:53:58
Hfally 2019-03-09 11:47:30
…(at least without unnecessary diggings by evildoers or over inquisitive users)… 😂
You can use Babel plugins to cleaning all console.logs from your code on production. And you don’t need any custom code
Hfally 2019-03-09 11:58:29
sergey_muc 2019-03-09 11:53:58
You can use Babel plugins to cleaning all console.logs from your code on production. And you don’t need any custom code
Yes if you use the plugin, you won’t need the custom code.. But if you’re not using such plugin?
Its all a matter of preference at the end.
But thanks, I’ll check it out too. Gracias
sergey_muc 2019-03-09 11:59:16
If you forget to remove console.log from your code, you don’t need add extra code. Just clean out your code, and that’s all
sergey_muc 2019-03-09 12:00:09
Hfally 2019-03-09 11:58:29
Yes if you use the plugin, you won’t need the custom code.. But if you’re not using such plugin?
Its all a matter of preference at the end.
But thanks, I’ll check it out too. Gracias
But who doesn’t in 2019? 🤷♂️
Hfally 2019-03-09 12:00:36
sergey_muc 2019-03-09 11:59:16
If you forget to remove console.log from your code, you don’t need add extra code. Just clean out your code, and that’s all
I think you missed the point of the article… That was also stated as an option..
Hfally 2019-03-09 12:01:03
sergey_muc 2019-03-09 12:00:09
But who doesn’t in 2019? 🤷♂️
You’ll be suprised.. 😒
Hfally 2019-03-09 12:02:54
It all balls down to preference..
Anyways, the article was meant to give a hint, it can be modified in anyway..
sergey_muc 2019-03-09 12:03:29
Ok, thanks for sharing. But also console.error and console.dir should be disabled in this case
Hfally 2019-03-09 12:04:54
sergey_muc 2019-03-09 12:03:29
Ok, thanks for sharing. But also console.error and console.dir should be disabled in this case
Yh.. That can be added if one decides to go that route.. From my perspective, console.log is the most used… I used it as a pointer…
Thanks for your educative criticism, really appreciate. Cheers
Hfally 2019-03-09 12:12:43
Hfally 2019-03-09 12:12:43
Hfally 2019-03-09 12:12:43
Em_Ai_1 2019-03-09 15:01:30
How do I host my laravel project on forge.laravel?
x0x3b 2019-03-09 15:31:17
Hi i need vps soon Saudi Arabia
Because i want ping good to vps
and plz give me vps good work project laravel
HiTechno_Support 2019-03-09 15:57:10
how i can write persian or arabic text on image ?!
i can write english text on image with “Intervention ” libray, But i can’t type persian text with this libary !
HiTechno_Support 2019-03-09 16:02:58

That’s how it’s typing
Ravi Shanker 2019-03-09 16:34:45
x0x3b 2019-03-09 15:31:17
Hi i need vps soon Saudi Arabia
Because i want ping good to vps
and plz give me vps good work project laravel
What is your budget?
x0x3b 2019-03-09 16:37:53
10$
Ravi Shanker 2019-03-09 16:44:10
Can you set it up yourself?
Ravi Shanker 2019-03-09 16:44:34
10$ a month + taxes
m 2019-03-09 16:48:16
What’s your country?
Ravi Shanker 2019-03-09 16:48:27
India
ANBAZHAGANBALAKUMAR 2019-03-09 16:48:54
Ravi Shanker 2019-03-09 16:48:27
India
Tamilnadu??
Ravi Shanker 2019-03-09 16:49:05
Telangana
ANBAZHAGANBALAKUMAR 2019-03-09 16:49:15
Nice
Ravi Shanker 2019-03-09 16:49:17
Hyderabad
Ravi Shanker 2019-03-09 16:49:26
How about you?
ANBAZHAGANBALAKUMAR 2019-03-09 16:49:45
Chennai bro
m 2019-03-09 16:49:52
Iran
Ravi Shanker 2019-03-09 16:49:55
Cool.
Ravi Shanker 2019-03-09 16:50:09
So you are put up at Iran?
Ravi Shanker 2019-03-09 16:51:35
Then where are you from?
Ravi Shanker 2019-03-09 17:09:37
Ok
m 2019-03-09 17:16:10
Ravi Shanker 2019-03-09 16:51:35
Then where are you from?
Kerman
← prev | next →