The world is in chaos, with AI upheaval, massive layoffs, and more. The future seems bleak, but all is not lost—people will always buy things.
It's time to challenge fate and change it!
https://t.co/rZfdRB5yFl
#ecommerce#website#site#sellingstuff#future#business#success
Selling Handmade Products Online: Your Niche Ecommerce Guide.
It's time you believed in yourself and invested in a website to reach a wider market!
https://t.co/D94ZoFZigX
How long does launching a profitable online store really take?
After hiring the best developer to use the best tech on your e-commerce, you now have an amazing website.
Is that it? https://t.co/Hib5y3NsRC
#website#ecommerce#googleanalytics#seo#earnonline#business
Climbing stairs problem in Golang
You are climbing a staircase. It takes n steps to reach the top. Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?
#golang#golangdeveloper#interview#golangtips#learninggolang
1. What is ACID?
In reference to databases not Chemistry 😉 .
anyways
A - Atomicity-> Either all operations complete successfully or the transaction fails and the db remains unchanged.
C - Consistency -> the db state must be valid after transaction. all…https://t.co/s1Ew9N4mXg
Is Golang an Object-Oriented Programming language?
mmmmh! I have been asked this question in a couple of interviews --
Lets see:
For many people, the essential elements of OOP is
1. abstraction
2. encapsulation
3. polymorphism
4. inheritance
Gola…https://t.co/nI0avaVWVk
It never occurred to me, being a freelance- full stack developer (frontend and backend developer) building applications for my clients, that APIs documentation was important.
I mean I developed the APIs I needed, and use them in the front end - easy peas…https://t.co/ECOTlRaj89
Write an algorithm that can get an int position on slice of integers of probably a million integer -sorted.
Hi everyone, I hope you had an awesome vacations for those celebrates Christmas - I hope you had a blast and for everyone an amazing start of new…https://t.co/iGRVEeMyIY
Did you know a slice has a header?
Slice is actually 3-word size data structure of struct type
type slice struct {
ptr unsafe.Pointer
len int
cap int
}
A slice is a window to an underlying map!
In the screenshot below are some gotc…https://t.co/zp6kcVaWCg
ErrGroup in Golang-- go routines
Last week I posted a post on semaphores and their use in regards to go routines,
but what if we countered an error!
I mean go routines are all good and dandy but we need a means to know when an errors occurs and how han…https://t.co/80WkQve3Fe
Semaphore in Golang!
The first time I heard it I was like "Is that a thing?"
turns out its a thing! ---
semaphore: a construct which is used to constrain or control access to a shared resource access via go routines.
Although go routines are meant to h…https://t.co/FbeEb8UV48
I've added media to my service page.They are e commerce websites I have created for clients. They include Cake shopping website, clothing e commerce website and online shoe e commerce website Check out my service page to see examples of my work and to lea…https://t.co/GpgicM3OMk
Interface in Golang
Wheeeh! This thing is crazy but not as crazy as javascript "2"+2 = 22 and "2"-2 =0, or []+{}="[object Object]" but {}+[] = 0🤣 😂 😃 😅
The craziness of interface -- an empty interface
1. it can accept any type whatsoever in Golang (…https://t.co/fPFPaFp9YO
As freelancer I build custom website -especially e commerce website -- with Golang And reactjs(nextjs).
These two are known for their efficiency and as such employ in my work to produce quality results.
So if interested in a website --especially e commer…https://t.co/pdBsUVYuYD
Did you know Julius Caesar used a system to encrypt his message so that only his generals were able to decipher the message?
Basically he used a system like-- taking 5 as a constant to jumble his message. If he wanted to write "A" he would write "E" and…https://t.co/e3Y4K5RhcX
Interview question: "[[{{}}]{([])}{()}]<>" consider this string and write a program that evaluates the following:
1. The bracket close each other following programming rules like
"[[{}]]<>()" is ok, "[{]} is wrong
2. There are even, though it must be- t…https://t.co/7ZVrudnANA