Sumit Talwar @sumittalwar
146 Total Points
0 Best Answers
3 Posts
3 Snippits
Answers
Run the following commands to fix the error and recover history to a new file:
cd ~
mv .zsh_history .zsh_history_old
strings .zsh_history_old > .zsh_history
fc -R .zsh_history
(...)
0
0
Create your own Base64 and Base64 Image Validator using following snippet:
<?php
namespace App\Providers;
use Illuminate\Support\Facades\Validator;
use Illuminate\Support\ServiceProvider;
class
(...)
0
0
You can use use .is(":hidden")
or .is(":visible")
.
Example:
<div id="div1" style="display:none">
<div id="div2" style="display:block">Div2</div>
</div>
if ( $(element).css('display')
(...)
0
0
Server-side rendering (SSR), is the ability of an application to contribute by displaying the web-page on the server instead of rendering it in the browser. Server-side sends a (...)
1
0