Web developer
Chatbots, Web Development, Entrepreneurship, Python, Web Design, APIs, JavaScript, Node.js, Community Management, Symfony4, Scraping, Data Mining, MongoDB, UML, Payment Systems, PHP, MySQL, HTML, CSS.
If I had to keep only few resources that were really helpful for my own knowledge/self-development, here is what I would keep. Also, for questions and suggestions, please tweet me: @NathanaelKhodl.
Books and websites that tell you a lot, without (so much) bullshit, and give specific tools.
| RewriteEngine On | |
| # Remove www (do it first in case https is not supported by subdomain) | |
| RewriteCond %{HTTP_HOST} ^www.(.+)$ [NC] | |
| RewriteRule ^(.*)$ https://%1/$1 [R=301,L] | |
| # Force https... | |
| # ... if not local | |
| RewriteCond %{SERVER_NAME} !=127.0.0.1 | |
| RewriteCond %{SERVER_NAME} !=localhost |
| <?php | |
| /* | |
| * By Khodl.me | |
| * Gist: https://gist.github.com/Khodl/5cf8fad1735ad963133a62cc71ce777d | |
| */ | |
| namespace AppBundle\Command; | |
| use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand; |
| <div id="location"> | |
| <!-- Your location will be displayed there --> | |
| </div> | |
| <script> | |
| /* | |
| * Hey dear Digital Nomad! | |
| * Feel free to copy that code ;-) | |
| * |
| // Hide if not Android or iOS (and not iPod or iPad) | |
| (function(){ | |
| var isIos = ((navigator.userAgent.match(/Android|iPhone/i) && !navigator.userAgent.match(/iPod|iPad/i)) ? true : false); | |
| if(! isIos){ | |
| var v = document.getElementsByClassName('.share-whatsapp') ; | |
| for(var j in v){ | |
| if(v[j].style) | |
| v[j].style.display = 'none'; | |
| } | |
| } |