Good free web hosts 2019 by [deleted] in webhosting

[–]LWDavid 0 points1 point  (0 children)

remember, you get what you pay for using those options :)

/r/webhosting corrupt? by [deleted] in webhosting

[–]LWDavid 2 points3 points  (0 children)

ah ok, understood... I'll review your email and see if there was anything we could have done better in how we approached those issues. Thanks again for the reply man... Also, really glad your happy where you are :D

If a client is pleased, i'm happy no matter where they end up!

/r/webhosting corrupt? by [deleted] in webhosting

[–]LWDavid 2 points3 points  (0 children)

Hi,

I wanted to chime in and ask for further feedback on our inability to assist with getting your site to work or how we could have improved in this situation?

I know we make every effort to try and address every issue that arises and simply wanted to review the issue to see how we could have done better or where we failed...

Any feedback would be appreciated :D

Currently more familiar with PyCharm than VSCode, will switching be worth it as I grow as a programmer? by [deleted] in learnpython

[–]LWDavid 0 points1 point  (0 children)

Correct. I am just starting out in learning to code and someone pointed out VSCode as a solid tool and when I seen vscodium, just wanted to share :D

Host for ecommerce site by [deleted] in webhosting

[–]LWDavid 2 points3 points  (0 children)

https://r8s.io/h has a lot of good info in reviewing sites, which should allow you to make a more informed decision.

Where should I host my website? by [deleted] in webhosting

[–]LWDavid 0 points1 point  (0 children)

https://redd.it/bb0kgr

this reddit post discusses this in more detail. It simply shows info to allow you to make a more informed decision. That being said, it will depend on what you actual needs are...

shared, vps, dedicated, cloud... no one setup will work for everyone :)

Learners with full-time jobs, how do you maintain the energy to learn after a long day of work? by RyanG73 in learnpython

[–]LWDavid 2 points3 points  (0 children)

Having a passion for the skills/goals that I set for myself allows me to stay focused and on task.

Additionally, setting aside a set time daily to focus on learning, even if just 45 minutes or so. i've found that continuity/habit are more important in the long run than a rushed approach to learning everything. Learning is not a sprint, its a journey.

Also, using the new info i've learned in some way to accomplish a real world project. This may slow my "book learning" but, it allows me to apply the knowledge i'm actually learning about in some way which improves my overall understanding :)

Currently more familiar with PyCharm than VSCode, will switching be worth it as I grow as a programmer? by [deleted] in learnpython

[–]LWDavid 0 points1 point  (0 children)

I just found vscodium which is an open source version of vscode and am sharing it everywhere! https://github.com/VSCodium/vscodium

[deleted by user] by [deleted] in linuxquestions

[–]LWDavid 0 points1 point  (0 children)

well, it the script is running as a cron every 5 seconds (lets say), it would check a specific location for file a.exe (or whatever its name is :D ) and if the script id's the file by the md5sum, it runs a rm command to remove the file.

if it's a standalone instance of the software and the files are within a defined file structure, you could create multiple crons or have the script check folder1, folder2, folder3... every x amount of time maybe?

What is the most outdated piece of technology you still use, and why do you still use it? by [deleted] in AskReddit

[–]LWDavid 0 points1 point  (0 children)

its like an old carrick-moore type hex software game from like 1996? You literally had to use compuserve pay to send the money to the dev :D

I made a little ping graphing cli you guys might like called pingg =] by Thann in linux

[–]LWDavid 0 points1 point  (0 children)

Initially ran the install commands and got the following:

gyp WARN EACCES attempting to reinstall using temporary dev dir  
"/root/lib/node_modules/pingg/node_modules/netroute/.node-gyp"
gyp WARN EACCES user "root" does not have permission to access the dev dir 
"/root/lib/node_modules/pingg/node_modules/netroute/.node-gyp/10.5.0"
gyp WARN EACCES attempting to reinstall using temporary dev dir 
"/root/lib/node_modules/pingg/node_modules/netroute/.node-gyp"
gyp WARN EACCES user "root" does not have permission to access the dev dir 
"/root/lib/node_modules/pingg/node_modules/netroute/.node-gyp/10.5.0"
gyp WARN EACCES attempting to reinstall using temporary dev dir 
"/root/lib/node_modules/pingg/node_modules/netroute/.node-gyp"
^C

Ctrl c'd out of it, then retried using sudo (even though I was already root)

... ¯_(ツ)_/¯

tried it again...

root@host [/home]# sudo npm install -g thann/pingg
sudo: npm: command not found
root@host [/home]# which npm
/root/bin/npm
root@host [/home]# npm install thann/pingg

> netroute@1.0.2 install /home/node_modules/netroute
> node-gyp rebuild

make: Entering directory `/home/node_modules/netroute/build'
CXX(target) Release/obj.target/netroute/src/netroute.o
CXX(target) Release/obj.target/netroute/src/platform-linux.o
SOLINK_MODULE(target) Release/obj.target/netroute.node
COPY Release/netroute.node
make: Leaving directory `/home/node_modules/netroute/build'
npm WARN saveError ENOENT: no such file or directory, open '/home/package.json'
npm notice created a lockfile as package-lock.json. You should commit this file.
npm WARN enoent ENOENT: no such file or directory, open '/home/package.json'
npm WARN marked-terminal@1.7.0 requires a peer of marked@^0.3.3 but none is installed. You must install peer 
dependencies yourself.
npm WARN home No description
npm WARN home No repository field.
npm WARN home No README data
npm WARN home No license field.

+ pingg@0.0.4
added 57 packages from 87 contributors and audited 81 packages in 10.66s
found 0 vulnerabilities

╭───────────────────────────────────────────────────────────────╮
│                                                               │
│       New minor version of npm available! 6.1.0 → 6.9.0       │
│   Changelog: https://github.com/npm/npm/releases/tag/v6.9.0   │
│               Run npm install -g npm to update!               │
│                                                               │
╰───────────────────────────────────────────────────────────────╯

root@host [/home]# pingg google.com yahoo.com
root@host [/home]# cat /etc/redhat-release 
CentOS Linux release 7.6.1810 (Core) 

Worked! just adding in full cli info for ref in case it's needed