Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,148,991 members, 7,803,283 topics. Date: Saturday, 20 April 2024 at 01:01 PM

Web Developers... Programmers LISTEN Up! - Programming - Nairaland

Nairaland Forum / Science/Technology / Programming / Web Developers... Programmers LISTEN Up! (1766 Views)

Urgent Vacancy For Software Engineers/developers/programmers: Remote Work / Would Love To Meet/know Developers/programmers / Names and Numbers Of Bad App Developers/programmers in Nigeria (2) (3) (4)

(1) (2) (Reply) (Go Down)

Web Developers... Programmers LISTEN Up! by ljtwp(m): 12:47am On Aug 05, 2022
Lorem Ipsum!

I am Long John the wicked programmer, the one the only the myth the legend the bonified the certified OG of web programming... Greetings to my boss @dhtml15

this is going to be repo from now on, my personal journal in the public domain crazy but it will do...
Re: Web Developers... Programmers LISTEN Up! by ljtwp(m): 12:54am On Aug 05, 2022
I am a big fan of linux UBUNTU, so i have this file in my Desktop

Its always
cd Desktop && cp git.sh new_project_folder

Working alone, No need for branches yea then why always

git add .
git commit -m "commiting"
git push origin main

when i can just
touch git.sh
nano git.sh
#!/bin/bash
echo "Adding"
git add .
echo "Commiting"
git commit -m "Updates"
echo "Pushing"
git push origin main
echo "Completed"
clear


then

chmod u+x git.sh

so next time i wanna push just

./git.sh

and all done. wrote this one and copy to any new project ..
Save the time! I hail Nairaland ceo e get why @elvis i sight you too

2 Likes 1 Share

Re: Web Developers... Programmers LISTEN Up! by ljtwp(m): 9:52am On Aug 05, 2022
Finally someone that get it cool

Re: Web Developers... Programmers LISTEN Up! by airsaylongcome: 10:47am On Aug 05, 2022
Shouldn’t that be @dhtml18. OG back in the days

1 Like

Re: Web Developers... Programmers LISTEN Up! by Nobody: 11:27am On Aug 05, 2022
ljtwp:
Finally someone that get it cool

Swears, every quack on twitter has this on their bio , ask them to do something custom they'll hook

3 Likes

Re: Web Developers... Programmers LISTEN Up! by Anonime1105(m): 11:27am On Aug 05, 2022
The html18 of wayyyyy back,
He was a very popular OG programmer troll then. grin grin grin wink wink wink
The man always serving Oga SeunThomas vahulence.

Oga html had a beef with seun osewa then he deleted his account.
He started his own forum A-f-r-i-c-o-d-e-r-s-.-c-o-m (typing the url back then would get you a ban) for African programmers back then.

1 Like

Re: Web Developers... Programmers LISTEN Up! by Babtunz: 2:20pm On Aug 05, 2022
ljtwp:
I am a big fan of linux UBUNTU, so i have this file in my Desktop

Its always
cd Desktop && cp git.sh new_project_folder

Working alone, No need for branches yea then why always

git add .
git commit -m "commiting"
git push origin main

when i can just
touch git.sh
nano git.sh
#!/bin/bash
echo "Adding"
git add .
echo "Commiting"
git commit -m "Updates"
echo "Pushing"
git push origin main
echo "Completed"
clear


then

chmod u+x git.sh

so next time i wanna push just

./git.sh

and all done. wrote this one and copy to any new project ..
Save the time! I hail Nairaland ceo e get why @elvis i sight you too

Your commit messages tho. It won't even make any sense to yourself in the long run.

2 Likes

Re: Web Developers... Programmers LISTEN Up! by qtguru(m): 3:24pm On Aug 05, 2022
It was even dhtml that gave me some tips to studying programming, I remember I was in NYSC then. Good times mehn

3 Likes

Re: Web Developers... Programmers LISTEN Up! by emmyN(m): 5:54pm On Aug 05, 2022
ljtwp:
Finally someone that get it cool

Gatekeepers

3 Likes

Re: Web Developers... Programmers LISTEN Up! by niel63(m): 11:43pm On Aug 05, 2022
The most interesting part is being able to recognise and understand every code you see. Even if it's bash scripting. Probably any weird looking command.


Someone recently told me he didn't know all the so-called web hosting and bare metal gibberish are people's computers. grin he told me, RDP are for white folks only. (Well, I no too argue with am because of electricity)

2 Likes

Re: Web Developers... Programmers LISTEN Up! by ljtwp(m): 11:13am On Aug 08, 2022
Babtunz:


Your commit messages tho. It won't even make any sense to yourself in the long run.

well you can always do this..

_echo "Enter commit message"
read commitMsg
git commit -m "$commitMsg"_

for dynamic messages

3 Likes

Re: Web Developers... Programmers LISTEN Up! by ljtwp(m): 11:14am On Aug 08, 2022
qtguru:
It was even dhtml that gave me some tips to studying programming, I remember I was in NYSC then. Good times mehn

@dhtml15 was an OG.. the realest and the biggest i always rep that dude
Re: Web Developers... Programmers LISTEN Up! by ljtwp(m): 11:14am On Aug 08, 2022
Anonime1105:
The html18 of wayyyyy back,
He was a very popular OG programmer troll then. grin grin grin wink wink wink
The man always serving Oga SeunThomas vahulence.

Oga html had a beef with seun osewa then he deleted his account.
He started his own forum A-f-r-i-c-o-d-e-r-s-.-c-o-m (typing the url back then would get you a ban) for African programmers back then.


Fact, you got it
Re: Web Developers... Programmers LISTEN Up! by ljtwp(m): 11:18am On Aug 08, 2022
I have been working with laravel (php) recently and honestly the caching can really waste your time especially in production..

You can use this bash script to handle your cache cleaning after every new commit to production server..
name: cache.sh
*!#/bin/bash
php artisan config:cache
php artisan config:clear
php artisan cache:clear
php artisan route:cache
php artisan route:clear
clear*

it just helps to handle the caching for you...
Re: Web Developers... Programmers LISTEN Up! by ljtwp(m): 11:19am On Aug 08, 2022
I think i will write my simple guide to hosting a laravel app on cloud server(linux machine) here so i dont have to go online and open different tabs always ... wink wink wink wink just need to rest for a bit it was a long night for me
Re: Web Developers... Programmers LISTEN Up! by Babtunz: 11:58am On Aug 08, 2022
ljtwp:

well you can always do this..
_echo "Enter commit message" read commitMsg git commit -m "$commitMsg"_
for dynamic messages
Makes sense...

1 Like

Re: Web Developers... Programmers LISTEN Up! by ljtwp(m): 6:53am On Aug 09, 2022
No matter how small a project is, i need to stop hosting on shared hosting.. I mean i use cloud alright but not on small project.. and those small project error can get frustrating.. Logging to cpanel, zipping,unzipping, trying to find a trick all that is just stress. it ends today
Re: Web Developers... Programmers LISTEN Up! by ljtwp(m): 2:59pm On Aug 15, 2022
Ok its been a while i am developing my platform https://kidify.africa african socio-cultural edutainment platform ... and i have been travelling for a bit so yeah
Re: Web Developers... Programmers LISTEN Up! by ljtwp(m): 3:00pm On Aug 15, 2022
Oh sveltejs is totally awesome i am a big fan.. svelte.dev better than reactjs no caps

1 Like

Re: Web Developers... Programmers LISTEN Up! by LikeAking: 2:14pm On Aug 16, 2022
ljtwp:
Oh sveltejs is totally awesome i am a big fan.. svelte.dev better than reactjs no caps

Confam..
Re: Web Developers... Programmers LISTEN Up! by ljtwp(m): 8:14pm On Jun 02, 2023
Dust everywhere dust
Re: Web Developers... Programmers LISTEN Up! by ljtwp(m): 8:14pm On Jun 02, 2023
I can't believe I forgot my diary
Re: Web Developers... Programmers LISTEN Up! by ljtwp(m): 8:14pm On Jun 02, 2023
Anyways is it just me or is Nairaland pushing anything APC and Tinubu to the front-page
Re: Web Developers... Programmers LISTEN Up! by ljtwp(m): 8:15pm On Jun 02, 2023
Cuz anything APC na front-page e dey go straight..
Re: Web Developers... Programmers LISTEN Up! by ljtwp(m): 8:15pm On Jun 02, 2023
So I got tired of using LARAVEL yesterday
Re: Web Developers... Programmers LISTEN Up! by ljtwp(m): 8:16pm On Jun 02, 2023
I spend my whole night creating an awesome express js API with prisma and planetscale DB. I will keep you in the loop.. got this fun side hustle project I will soon launch to the market .. about to start prototyping it now 💪💪💪
Re: Web Developers... Programmers LISTEN Up! by ljtwp(m): 8:19pm On Jun 02, 2023
Tip of the day😃

If you want to clone any HTML & CSS frontend use Webhttrack on windows or install Httrack on Linux.

Ctrl + Alt + T to open your terminal and type
>_: httrack http://websitetoclone.com
And hit enter .

It will clone the whole website to your cwd(current working directory)
Re: Web Developers... Programmers LISTEN Up! by ljtwp(m): 8:21pm On Jun 02, 2023
[sup][/sup]
Babtunz:


Your commit messages tho. It won't even make any sense to yourself in the long run.

Update on this you can make an Input prompt for commit message and attach holder to the message second in commit command
Re: Web Developers... Programmers LISTEN Up! by silento(m): 12:43pm On Jun 03, 2023
ljtwp:
So I got tired of using LARAVEL yesterday

Why
Re: Web Developers... Programmers LISTEN Up! by silento(m): 12:43pm On Jun 03, 2023
ljtwp:
Tip of the day😃

If you want to clone any HTML & CSS frontend use Webhttrack on windows or install Httrack on Linux.

Ctrl + Alt + T to open your terminal and type
>_: httrack http://websitetoclone.com
And hit enter .

It will clone the whole website to your cwd(current working directory)

Outdated
Re: Web Developers... Programmers LISTEN Up! by bassdow: 4:48pm On Jun 03, 2023
airsaylongcome:
Shouldn’t that be @dhtml18. OG back in the days
We miss that guy Ooo. nairaland admins sha
Re: Web Developers... Programmers LISTEN Up! by bassdow: 4:49pm On Jun 03, 2023
silento:


Outdated
Abeg leave am, e be like say na new commer

1 Like

(1) (2) (Reply)

C++? What You Need... / Fix This C++ Code If You can / If You Want To Earn $20 And Above With Adsense Daily

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 42
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.