This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://work-work.work/blog/2018/12/07/samba-windows-7.html | |
| Or if you don't want to change your client settings, edit /etc/samba/smb.conf and add to the [global]section | |
| lanman auth = no | |
| ntlm auth = yes | |
| restart samba and Windows 7 talks to your Ubuntu 18.04 server. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Goto http://github.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE DATABASE MDF_FILE_NAME | |
| ON (FILENAME = 'C: \Filepath\File_name.mdf') | |
| FOR ATTACH_ REBUILD_LOG | |
| GO |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Prevent Trackers and Malwares | |
| https://raw.githubusercontent.com/DRSDavidSoft/additional-hosts/master/domains/blacklist/adservers-and-trackers.txt | |
| https://gitlab.com/quidsup/notrack-blocklists/raw/master/notrack-malware.txt | |
| https://gitlab.com/quidsup/notrack-blocklists/raw/master/notrack-blocklist.txt | |
| https://raw.githubusercontent.com/notracking/hosts-blocklists/master/hostnames.txt | |
| https://s3.amazonaws.com/lists.disconnect.me/simple_tracking.txt | |
| https://gitlab.com/my-privacy-dns/matrix/matrix/-/raw/master/source/tracking/domains.list | |
| https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardApps.txt | |
| https://raw.githubusercontent.com/r-a-y/mobile-hosts/master/AdguardMobileAds.txt | |
| https://raw.githubusercontent.com/FadeMind/hosts.extras/master/StreamingAds/hosts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Save Remote Desktop Profile: | |
| Add the following lines in the file | |
| enablecredsspsupport:i:0 | |
| authentication level:i:0 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://itsfoss.com/resolvconf-permanent-ubuntu/ | |
| edit file | |
| /etc/dhcp/dhclient.conf | |
| remove comment | |
| #prepend domain-name-servers 127.0.0.1; | |
| # enable the service on reboot |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM php:7.4.6-apache | |
| RUN apt-get update | |
| # 1. development packages | |
| RUN apt-get install -y \ | |
| git \ | |
| zip \ | |
| curl \ | |
| sudo \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dotnet dev-certs https --trust |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3" | |
| services: | |
| pihole: | |
| container_name: pihole | |
| image: pihole/pihole:latest | |
| ports: | |
| - "53:53/tcp" | |
| - "53:53/udp" | |
| - "67:67/udp" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // taken from https://stackoverflow.com/questions/2862590/how-to-replace-master-branch-in-git-entirely-from-another-branch | |
| Replace master with seotweaks branch | |
| git checkout seotweaks | |
| git merge -s ours master | |
| git checkout master | |
| git merge seotweaks | |