PUPaolo Urciulloinpaolo.hashnode.dev路Feb 15, 2021 路 4 min readA quick primer on LINUX CLILinux is Everywhere!馃寧 Linux is by far the most widely used operating system you may have never heard of. There is a large chance, however, that you are using it right now, or you used it at some point today. It can configured to look just like w...00
PUPaolo Urciulloinpaolo.hashnode.dev路Feb 7, 2021 路 1 min readtestBlogEntryThis is to test some CSS stuff. I could not get it to work so I'm trying this method to see if it will carry over. will delete soon. some large header some paragraph 1 some paragraph 2 some paragraph 3 some paragraph 4 some paragraph 500
PUPaolo Urciulloinpaolo.hashnode.dev路Feb 7, 2021 路 3 min readPython ListsPython classifies lists as a container type. Lists are presented as comma-separated values that are enclosed in square brackets. Here is a list of random letters to illustrate this: my_list = ["r", "a", "n", "d", "o", "m"] One thing to keep in my i...00
PUPaolo Urciulloinpaolo.hashnode.dev路Feb 5, 2021 路 4 min readThonny (my current favorite python IDE)Thonny The first time It was ever said out loud to me, I thought two things: 1. why on earth would someone name anything a name like that. sounds silly. 馃ぁ 2. I'll never get good enough to have to ever debug anything. In my previous engineerin...01V
PUPaolo Urciulloinpaolo.hashnode.dev路Feb 5, 2021 路 3 min readPython VariablesPython Variables, unlike other programming languages out there, doesn't use a command for declaring variables. The variable gets created the moment a value gets assigned to it. x = 2 print(x) # output is 2 y = 4 print(y) # output is 4 Since Python...00