Here is a curated links of sites that are I think are useful as I learn or relearn PHP, Laravel and Symfony further. Incomplete of course but there's always the internet. Will add any that are worthy to be linked here. For now, this would suffice. If you think there are links worthy to be added here, let me know in the …
Read MoreHere is a curated links of sites that are I think are useful as I learn or relearn Bash or shell scripting further. Incomplete of course but there's always the internet. Will add any that are worthy to be linked here. For now, this would suffice. If you think there are links worthy to be added here, let me know in the …
Read MorePython Official Documentation Python Package Index or PyPI Python3 Standard Library Python3 Docs Learn Python PyNative Learn Python in Y minutes Python Frameworks Django Project Flask Bottle Others Beautiful Soup - HTML & XML web scraping Stackoverflow: Other alternatives to venv Build REST API with Django …
Read MoreGo Official Documentation Go Doc Go Standard Library Go Package Search Learn Go Go By Example Learn Go in Y Minutes Go Web by Example - simple web development examples using golang TutorialEdge: Basic Golang Gophercises Golang Weekly Go Collectives on StackOverflow GoLang Mobile Go101 - best …
Read MoreHere is a curated links of sites that are I think are useful as I learn or relearn Ruby and Rails further. Incomplete of course but there's always the internet. Will add any that are worthy to be linked here. For now, this would suffice. If you think there are links worthy to be added here, let me know in the comment …
Read MoreCreate location of your go code 1~$ mkdir /mnt/c/learning/go Get the suggested golang init script It is in separate post in my quicktasks and don't forget to make it executable. For this quicktask, I assume you named it init.sh as well. Create and go to project directory 1~$ mkdir local_module_example 2~$ cd …
Read MoreCheck list of known versions 1~$ rvm list known Install specific version 1~$ rvm install ruby-2.7.2 Check installed version 1~$ rvm list 2=* ruby-2.7.2 [ x86_64 ] 3ruby-3.0.0 [ x86_64 ] 45# => - current 6# =* - current && default 7# * - default Switch versions 1~$ rvm use ruby-3.0.0 2Using …
Read MoreOpen a database 1sqlite> .open test.db Show tables 1sqlite>.table 2n Shows that there is only 1 table named n. Check table schema 1sqlite> .schema 2CREATE TABLE n (id INTEGER PRIMARY KEY,f TEXT,l TEXT); Check contents of a table It's just the usual sql query commands as expected 1sqlite> select * from n; …
Read MoreInstall RVM + Rails Manage Ruby versions (production or not using RVM). Trust me, been there and installing it otherwise is not a walk in the park... 1~$ gpg2 --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB 2~$ curl -sSL https://get.rvm.io | bash -s stable 3~$ curl -sSL …
Read More1#!/bin/bash 2sqlite3 test.db "create table n (id INTEGER PRIMARY KEY,f TEXT,l TEXT);" 3sqlite3 test.db "insert into n (f,l) values ('john','smith');" 4sqlite3 test.db "select * from n;" See stackoverflow post
Read More