HI, IAM
OPEENY GODFREY
Patience, I'm just patiently working my way up to the top, #freedom, because that's what i love, freedom. Although many don't see it yet because its a journey that has to be walked through. The challenges that I deal with on a day-to-day basis I find meaningful and rewarding.
First things first, full names "GOP", a simply an acronym with the above, reference. Some text about me
. Please do not forget the GOP syntax, whats this syntax like? this is a full topic of its own. It may sounds a little creepy but its remarkable.
ABOUT ME
I enjoy travelling to some great down hill rocks, swampy areas or finding a remote lake somewhere new for viewing, i sometimes like sitting a lone to figure out myself and how much further i can go. Although the majority of the time nowadays, you will find me behind a computer screen. Oh by the way let me wisper a secret. They almost crownd me a screen writer. First at school then home which almost prompted me to become a musical producer.
I am a passionate graphics designer which has had a huge impact on the start of my career, but that's a story for another time. I have worked very hard to get where I am today, but I'm just passionate about where my career is leading me, although many dont see it yet because its a gradual. The challenges that I deal with on a day-to-day basis I find meaningful and rewarding. Thats the GOP you can talk about.Read about-me
KNOW ME
HELLO,
The path i am taking as a Front-End developer is letting me to focus in HTML5/CSS and web application development. During the warmer months, I enjoy traveling to some great down hill rocks, swampy areas or finding a remote lake somewhere new for viewing, i sometimes like sitting a lone to figure out myself and how much further i can go. Although the majority of the time nowadays, you will find me behind a computer screen. Oh by the way let me wisper a secret Read More
GOP,
path i am taking as a Front-End developer is letting me to focus in HTML5/CSS and web application development. During the warmer months, I enjoy traveling to some great down hill rocks, swampy areas or finding a remote lake somewhere new for viewing, i sometimes like sitting a lone to figure out myself and how much further i can go. Although the majority of the time nowadays, you will find me behind a computer screen. Oh by the way let me wisper a secret Read More
Service
Web Design
- Fluid vs Adaptive web design
- Responsive web design
- progressive web design
Mobile Web development
- Service workers
DB Design
Database design is the organization of data according to a database model. The designer determines what data must be stored and how the data elements interrelate. With this information, they can begin to fit the data to the database model. Database design involves classifying data and identifying interrelationship
Adobe premier, video editing
Designed a couple of videos check me Dir Ayiya
Awesome Facts
PROJECTS
Work Hours a month
Customer SUPPORT
Happy Clients
Refereres

Fahad Guma
System developer at IITA.org
After gracefully graduating at Makerere University, Fahad, ran the linux commands at starter media company for as a junior system administrator, before joining iita.org, an international humantarian organization as asystem developer that focuses on improving agriculture across the grass rooot areas of the world
”
Evans
Software developer, Bugen Technologies
very ELaborate personality who loves his work, very free Network engineer
”
Andrew Kizito
Network engineer, Lycamobile Uganda
Telecom engineer, at Lycamobile Uganda
”
Herbert Etonet
NOC Engineer at Lycamobile Uganda
Very eLaborate personality who loves his work, very free Network engineer
”
Christopher Kagab
Stastician at Idcg Engineering group
Polite, professional and straight forward
”RESUME
My Experience
Education
Makerere University
Software engineering is the application of engineering to the development of software in a systematic method.
A software engineer is a person who applies the principles of software engineering Read More.
Kasubi Secndary School
UACE certificate view
Studied Physics, Chemistry, Mathematics and Economics(PCM/E) Good in Mathematics. Scored 16 points in PCM/Economics
Work History
Syncmedia
IT support
* Monitor and maintain computer systems and networks.
* Troubleshoot system and network problems, diagnosing and solving hardware or software faults.
Lycamobile Uganda
Software Developer
Developing and customization of systems by encouraging software development team to adopt emerging standards for software application development architecture and tools. Monitoring of the operation and performance of the different network nodes, servers and equipment.
Soft Skills
Communication
Work In Team
Speed
creativity
Technical Skills
HTML5
JavaScript
jQuery
CSS3
BLOG
Last Posts

Normal Post Style
Posted 9 Sep

Normal Post Style
Posted 12 Oct

Normal Post Style
Posted 2 Jul
Normal Post Style
Posted 2 Jul
SQL Commands You have already learned a lot about writing code in SQL! Let's take a moment to recap all that we have covered before moving on: Statement How to Use It Other Details SELECT SELECT Col1, Col2, ... Provide the columns you want FROM FROM Table Provide the table where the columns exist LIMIT LIMIT 10 Limits based number of rows returned ORDER BY ORDER BY Col Orders table based on the column. Used with DESC. WHERE WHERE Col > 5 A conditional statement to filter your results LIKE WHERE Col LIKE '%me%' Only pulls rows where column has 'me' within the text IN WHERE Col IN ('Y', 'N') A filter for only rows with column of 'Y' or 'N' NOT WHERE Col NOT IN ('Y', 'N') NOT is frequently used with LIKE and IN AND WHERE Col1 > 5 AND Col2 < 3 Filter rows where two or more conditions must be true OR WHERE Col1 > 5 OR Col2 < 3 Filter rows where at least one condition must be true BETWEEN WHERE Col BETWEEN 3 AND 5 Often easier syntax than using an AND Other Tips Though SQL is not case sensitive (it doesn't care if you write your statements as all uppercase or lowercase), we discussed some best practices. The order of the key words does matter! Using what you know so far, you will want to write your statements as: SELECT col1, col2 FROM table1 WHERE col3 > 5 AND col4 LIKE '%os%' ORDER BY col5 LIMIT 10; Notice, you can retrieve different columns than those being used in the ORDER BY and WHERE statements. Assuming all of these column names existed in this way (col1, col2, col3, col4, col5) within a table called table1, this query would run just fine. Creating a new column that is a combination of existing columns is known as a derived column (or "calculated" or "computed" column.