Skip to content

Instantly share code, notes, and snippets.

View parmonov98's full-sized avatar
🎯
web -> front-end

Murod parmonov98

🎯
web -> front-end
View GitHub Profile
@parmonov98
parmonov98 / README.md
Created January 19, 2023 09:39 — forked from liitfr/README.md
[how to revert 100644 → 100755 commits ?] #git #chmod

how to revert 100644 → 100755 commits

  • on your repo's root, run : find . -type f | xargs chmod -x
  • commit this change on files : commit -n -m 'fix: files permission from 100755 to 100644'
  • then with vim .git/config, set filemode option to false
[core]
        filemode = false
@parmonov98
parmonov98 / Summernote for Laravel Livewire
Created April 8, 2022 13:52 — forked from adityardiansyah/Summernote for Laravel Livewire
Setting Summernote for Laravel Livewire
// HTML
<div class="col-md-12">
<div class="form-group" wire:ignore>
<label for="desciption">Deskripsi</label>
<textarea type="text" input="description" id="summernote" class="form-control summernote">{{ $description }}</textarea>
</div>
</div>
// JAVASCRIPT
@parmonov98
parmonov98 / adminer_setup.sh
Created March 15, 2022 17:20 — forked from zloynemec/adminer_setup.sh
Secure adminer nginx setup
# Secure adminer setup
# Author Taras Kozlov
# download adminer to separate directory
mkdir -p /var/www/admin
cd /var/www/admin
wget http://www.adminer.org/latest.php -O adminer.php
echo '<?php phpinfo(); >' > info.php
sudo -i
@parmonov98
parmonov98 / months.php
Created March 19, 2021 08:21 — forked from frob/months.php
Long and short month names in a php array.
<?php
$short = array(
'Jan',
'Feb',
'Mar',
'Apr',
'May',
'Jun',
'Jul',
@parmonov98
parmonov98 / index.html
Created December 10, 2018 15:45
Pure CSS Material Circular Progress
<progress class="pure-material-progress-circular"/>