Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,154,676 members, 7,823,910 topics. Date: Friday, 10 May 2024 at 06:03 PM

Solomonope's Posts

Nairaland Forum / Solomonope's Profile / Solomonope's Posts

(1) (2) (of 2 pages)

Career / Re: Should I Drop Out Or Not? by solomonope(m): 4:32pm On Jun 01, 2022
I am a Software Engineer, and I have been one for more than 10 years. I studied Communications Engineering. I am giving these initial detail because I think you don't need to drop out of school if you are considering going into IT.

Your mom is correct in some way, Electrical Engineering is broad and you can specialize in many similar fields later.

You can get books and online resources to grow your IT skills. I learned how to code in school during my undergraduate degree, you can do that too.

I don't think you should drop out. There are many courses in undergraduate Electrical engineering classes that you can apply in real-life. E.g Statistics, Linear Algebra, Calculus, Digital Electronics, Information theory, etc. I have applied the knowledge that I learned from these classes in my day job at some point.

3 Likes

Programming / Re: Continuous Integration by solomonope(m): 4:17pm On Apr 30, 2013
lordZOUGA: is this not just a name given to a normal developer's routine? write, test and commit.
are you telling me that during the lifecycle of developing a software that you stick to one development pattern?
believe me, I do understand the basic ideologies of these development patterns but I just use it the way it suits me not the other way round.
besides, real programmers ship, checking if every line of code I write adheres to a certain pattern is just redundant

I shared this same feelings,until I had to work with a team of developers that were miles a part.And the common theme was it's working on my machine and it's not working on yours,this was as a result in fairly different development enviroments,was my module tested against their most recent comits etc.With CI the automated tests and builds you get to know as soon as you commit.Again there is no best to do anything but what works for you.
Programming / Re: Pos Terminal Connectivity To Web Server by solomonope(m): 8:32am On Sep 04, 2012
funny that POS has been sitting in my office for a while ,i have the SDK although it has been another team that has been working on the project.but i think i can help
Mail me:
solomonope@gmail.com
Webmasters / Re: Zenith Bank Globalpay by solomonope(m): 9:42am On Aug 17, 2012
@Gudman, i did not opt out it was used for a client and it is in production ryt now, i am sorry for the confusion.
Programming / Re: How Do I Create Application For Ingenico 5100 by solomonope(m): 1:12pm On Aug 15, 2012
Hi,

I can help,but do you have ingenico SDK?.
you can contact me solomonope@gmail.com.
Webmasters / Re: Zenith Bank Globalpay by solomonope(m): 8:55am On Aug 15, 2012
i've used it before.

It can accept.
VISA(Local and International)

MASTERCARD(Local and International)

=N=250K thats wot they charge and =N=5000 monthly access.

and it is very easy to integrate.
Software/Programmer Market / Job Opportunity by solomonope(m): 3:36pm On Aug 08, 2012
Hello All

We are hiring experienced Developers with proficiency in any of the following languages

C/C++,Java,Php


Please forward your CV to:

bunmi.awonowo@iisysgroup.com
or
bankole.alani@iisysgroup.com

thanks
Software/Programmer Market / Re: Programming Language C++ Collection Of 49 Ebooks+source Codes by solomonope(m): 8:42am On Apr 09, 2011
solomonope@gmail.com
Webmasters / Re: Google Adsense Cheque by solomonope(m): 11:04am On Aug 26, 2010
Anyways, it is impossible for your check to go
to anoda person and i am hearin dis for the first
time. u can stop d check if dats true

i have recieved someone else's check before. i did not try cashing shay.
Programming / Re: Grfinger /.net 2.0/vs2008 by solomonope(m): 5:05pm On May 21, 2010
i've been able to solve this problem, all i did was to download a later version of a dll from the grfinger website and replace it with the oldone and it went well.
Programming / Re: Need Help With Java Web Services by solomonope(m): 2:05pm On Apr 14, 2010
@poster
get the wsdl documents of the webervices you want to consume.u shld be able to use this document to generate a proxy class in java with these document.am sure a java ide like eclipse might help to generate this
Programming / Re: Microcontroller Programming Corner by solomonope(m): 4:16pm On Mar 11, 2010
@kobenol
check for the kind of 8bit processor i.e the manufacture and all those stuff.may be ur chip can support an rtos. but since it is an 8bit chip it won't be so different from the mcu's we have been talking about here.just google RTOS
Programming / Re: Microcontroller Programming Corner by solomonope(m): 10:23am On Feb 08, 2010
@aksat
dot matrix modules that is what u need. u can look for them in oshodi shop a7.
i have a friend that builds programmers for sale > =N=10,000 i can contact him on the cct.
Programming / Re: Microcontroller Programming Corner by solomonope(m): 2:12pm On Feb 04, 2010
@aksat it is not realy difficult u can even simulate it first.i use proteous.

here is what u asked for
source:
sbit LCD_RS at RB4_bit;
sbit LCD_EN at RB5_bit;
sbit LCD_D4 at RB0_bit;
sbit LCD_D5 at RB1_bit;
sbit LCD_D6 at RB2_bit;
sbit LCD_D7 at RB3_bit;

sbit LCD_RS_Direction at TRISB4_bit;
sbit LCD_EN_Direction at TRISB5_bit;
sbit LCD_D4_Direction at TRISB0_bit;
sbit LCD_D5_Direction at TRISB1_bit;
sbit LCD_D6_Direction at TRISB2_bit;
sbit LCD_D7_Direction at TRISB3_bit;
void main() {
TRISB = 0xff;
TRISA = 0xFF;
Lcd_Init();
Lcd_Cmd(_LCD_CLEAR);
for(;wink{
Lcd_Out(1,1,"Hello World"wink;
Delay_ms(2000);
Lcd_Cmd(_LCD_CLEAR);
Delay_ms(2000);

}
}

cct:

Programming / Re: Microcontroller Programming Corner by solomonope(m): 3:36pm On Feb 02, 2010
i can of like this corner and i thought is should contribute a project that any hobbist can play with
am using a pic16f877, i feel pic's are more common here in nigeria than any other place.
The project is just a digital themometer based on lm35 chip that gives a certain voltage based on the temp the voltage then goes to the adc of the pic which is then displayed on the lcd

Parts:
pic16F877
10k resistors *2
25pf capacitors *2
8MHz crystal *1
1 LCd *1
lm35 *1
compiler
MikroC pro
www.mikroelectronika.com
Source:
sbit LCD_RS at RB4_bit;
sbit LCD_EN at RB5_bit;
sbit LCD_D4 at RB0_bit;
sbit LCD_D5 at RB1_bit;
sbit LCD_D6 at RB2_bit;
sbit LCD_D7 at RB3_bit;

sbit LCD_RS_Direction at TRISB4_bit;
sbit LCD_EN_Direction at TRISB5_bit;
sbit LCD_D4_Direction at TRISB0_bit;
sbit LCD_D5_Direction at TRISB1_bit;
sbit LCD_D6_Direction at TRISB2_bit;
sbit LCD_D7_Direction at TRISB3_bit;
char txt1[] = "WelCome";
void main()
{
unsigned long Vin, mV,Vdec,Vfrac;
unsigned char op[12];
unsigned char i,j,lcd[5],ch1,ch2;
TRISB = 0xff;
TRISA = 0xFF;
Lcd_Init();
Lcd_Cmd(_LCD_CLEAR);
Lcd_Out(1,1,txt1);
Delay_ms(2000);
ADCON1 = 0x80;
for(;wink
{
Lcd_Cmd(_LCD_CLEAR);
Vin = Adc_Read(0);
Lcd_Out(1,1,"Temp = "wink; // Display "mV = "
Vin = 488*Vin; // Scale up the result
Vdec = (Vin / 100)*0.5; // Decimal part
Vfrac = Vin % 100; // Fractional part
LongToStr(Vdec,op); // Convert Vdec to string in "op"
//
// Remove leading blanks
//
j=0;
for(i=0;i<=11;i++)
{
{
if(op[i] != ' ') // If a blank
{
lcd[j]=op[i];
j++;
}
}
//
// Display result on LCD
//
Lcd_Out(1,7,lcd); // Output to LCD
Lcd_Out_Cp("."wink; // Display "."
ch1 = Vfrac / 10; // Calculate fractional part
ch2 = Vfrac % 10; // Calculate fractional part
Lcd_Chr_Cp(48+ch1); // Display fractional part
Lcd_Chr_Cp(48+ch2); // Display fractional part
Delay_ms(1000); // Wait 1 second
}
}
}

Circuit Diagram:

Programming / Re: Grfinger /.net 2.0/vs2008 by solomonope(m): 10:12pm On Nov 22, 2009
@beaf here is d stacktrace

Programming / Grfinger /.net 2.0/vs2008 by solomonope(m): 5:22pm On Nov 20, 2009
am tryin to develop a biometric app using grfinger soon as i add the grfinger control on a form i get this funny errors i wuz wondering if any budy with exprience wit grfinger can help, a screenshop is attached with this message

Programming / Re: Pls I Need Help With This Assignment by solomonope(m): 7:55am On Nov 14, 2009
#include "stdio.h"

int main()
{


int a, n, sum;
a = 2

while (a <= 2222)
{

for (a=2; a<=n; n=a*a)
sum = n+a

printf("The sum is %d ", sum);
}


return 0;
}
the program did not becos u failed to initialize n and sum and u omitted some semicolons,being a local variable the actual value is undefined so the first iteration of the loop might not even work

#include <stdio.h>

int main()
{


int a, n=0, sum=0;
a = 2;

while (a <= 2222)
{

for (a=2; a<=n; n=a*a)
sum = n+a;

printf("The sum is %d ", sum);
}


return 0;
}
Programming / Re: Read And Generate Barcode In C# by solomonope(m): 8:30am On Nov 12, 2009
u can use this libray to generate ur barcode ,there are also 3 party libraries u can use to interprete a barcode from an image file

http://www.codeproject.com/KB/graphics/BarcodeLibrary.aspx
Programming / Re: Can Anyone Help On AT Commands by solomonope(m): 10:11pm On Oct 06, 2009
hi at commands are realy eazy to work wit ,am guessing u are workin wit a telit module gm 86 or something and probably a pic mcu check www.edaboard.com u would get help from there and u should check the at command set of the module u are using but it is realy easy to work wit
if u run into any problem call 08056244001 or email solomonope@gmail.com.
Programming / Re: I Want To Be A Part Of The It Industry by solomonope(m): 5:32pm On Sep 24, 2009
@poster ,hw can u have a first degree in engineering and can't program?
Programming / Re: What Is Wrong With Microsoft? (Compulsory Visual Studio Upgrades) by solomonope(m): 7:45pm On Aug 11, 2009
@poster i feel ur pain
Programming / Re: Java And Its Compiler by solomonope(m): 6:00pm On Aug 07, 2009
java.sun.com
Software/Programmer Market / Re: Asp.net/C#/VB.NET/SQL/Web Service Developer(s) Wanted (no Pay) by solomonope(m): 9:13pm On Jul 31, 2009
i want in
Email solomonope@live.com
and i already have a viewpath acct.
Programming / Re: Vb.net Alert by solomonope(m): 2:03pm On Jul 29, 2009
here is a c# example, the logic is the same and u have access to the same classes on the .net frame work.


using System;
using System.Data;
using System.Data.OleDb;
public class Program
{
static OleDbConnection m_Connection;
static OleDbCommand m_Command;
static OleDbDataReader m_reader;
static void Main()
{
m_Connection = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Users\Solomon\Documents\nairaland.accdb;Mode=ReadWrite;Persist Security Info=False"wink;
m_Command = new OleDbCommand();
try
{
m_Command.Connection = m_Connection;
m_Command.CommandText = "Select * from threads";
m_Command.Connection.Open();
m_reader = m_Command.ExecuteReader();
Console.WriteLine("ThreadName\t\tThreadDescription"wink;
while (m_reader.Read())
{

Console.WriteLine("{0} \t\t{1}", m_reader[1], m_reader[2]);
}
Console.WriteLine("Press Enter to Continue"wink;
Console.ReadKey();


}
catch (OleDbException ew) { }
finally
{
if (m_Connection.State == ConnectionState.Open)
{
m_Connection.Close();
}
}

}
Programming / Re: Embedded by solomonope(m): 2:32pm On Jul 27, 2009
right now the most common embedded development in nigeria is mcu (mostly pic) cos they are cheap and easily accesible. and most of these developments are focused on undergraduate projects ,and i think there is also a fairly large markets too for PLC's too.
Programming / Re: Post Your C#.net Questions Here by solomonope(m): 11:20am On Apr 28, 2009
thanks
Programming / Re: Visual Basic 2005 Ebook? by solomonope(m): 12:30pm On Apr 20, 2009
ur email i would try sending it to but it is large abt 25mb (pdf)
Programming / Re: Post Your C#.net Questions Here by solomonope(m): 11:18am On Apr 20, 2009
pls hw can i prevent people from seeing my codes through ildasm.exe
Programming / Think Of Developing Apps For Linux ,mac With .net by solomonope(m): 11:20am On Mar 25, 2009
Am sure u've heard of .net's platform independence here is an open source implemnetation of the CLR,BCL ;
http://www.mono-project.com/Main_Page
www.go-mono.com
Programming / Re: Embedded? by solomonope(m): 10:13am On Mar 25, 2009
cool
grin
Programming / Embedded? by solomonope(m): 12:09pm On Mar 23, 2009
Post Comments on Embedded programming here (pic)

(1) (2) (of 2 pages)

(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. 35
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.