Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,165,101 members, 7,859,997 topics. Date: Thursday, 13 June 2024 at 11:16 PM

OmotayoOlawoye's Posts

Nairaland Forum / OmotayoOlawoye's Profile / OmotayoOlawoye's Posts

(1) (of 1 pages)

Programming / Re: To The Software Developers In The House by OmotayoOlawoye(m): 8:13pm On Oct 01, 2017
cayodey:
I've been pondering over this for some time that why is security not captured in System Development Life Circle (SDLC) Phase not until resent despite how vital it is.... I will like to know the reason for this and perhaps if its introduction have shown any significant difference.
Thanks.

I once read an article online about the major reason why security has become so big an issue. The most insightful observation the writer made and talked about was that software development organisations usually consider security as an after thought. something you can always incorporate after getting the software up and running. There is always an oversight on security in the development stages and this over the years has proven to be extremely costly.

Security has to be a critical part and equally important a goal as getting the software running.

After loosing almost countless billion dollars for this mistake, software engineers have come to terms with this important aspect of every phase as it is not a phase in itself, but a part of every stage of the development phases.

1 Like

Programming / Do You Need An Inventory Management System? Check Out This One! by OmotayoOlawoye(m): 12:25pm On Aug 16, 2017
This is a sample inventory management system.

Programming / Re: Coding Challenge For Fun by OmotayoOlawoye(m): 11:46am On Aug 16, 2017
edicied:
Count the number of Duplicates

In any Programing Language, Write a function that will return the count of distinct case-insensitive alphabetic characters and numeric digits that occur more than once in the input string. The input string can be assumed to contain only alphabets (both uppercase and lowercase) and numeric digits.

Example

"abcde" -> 0 # no characters repeats more than once
"aabbcde" -> 2 # 'a' and 'b'
"aabBcde" -> 2 # 'a' occurs twice and 'b' twice (bandB)
"aA11" -> 2 # 'a' and '1'

# PYTHON program

# this function handles the counting of the number of
# occurrence of each letter.
def countOccurrence(word):
WordSet = set([])
myDict = {}

for c in word:
WordSet.add(c)

for letter in WordSet:
myDict.update({letter : word.count(letter)})

return myDict


# Example words.
word1 = 'hippopotamus'
word2 = 'hippopotomonstrosesquipedaliophobia'
word3 = 'pneumonoumtramicroscopicsilicovocanokoniosis'

# create different dictionary type variables that takes the
# dictionary returned from the method call.
dict1 = countOccurrence(word1)
dict2 = countOccurrence(word2)
dict3 = countOccurrence(word3)

print (dict1, '\n' )
print (dict2, '\n' )
print (dict3, '\n' )


# the following allows the user to enter the word they want the
# number of occurrence of each letter computed.

# this will prompt the user to enter a word.
new_word = input ("Enter a word: " )

new_dict = countOccurrence(new_word)
print (new_dict, '\n')

1 Like

Computers / Re: I Need A Good Vpn On My Laptop by OmotayoOlawoye(m): 11:48am On Aug 11, 2017
lastborn19:


no i no get the process, na why i talk say make you gimme your number make i call you
07059671460 when you call let me know it lastborn from Nairaland
Computers / Re: I Need A Good Vpn On My Laptop by OmotayoOlawoye(m): 11:00am On Aug 10, 2017
lastborn19:



Bro Pls drop your digit
I have you tried any of those and did it work?
Computers / Re: I Need A Good Vpn On My Laptop by OmotayoOlawoye(m): 12:07am On Aug 10, 2017
lastborn19:
pls i need a trusted and ok vpn on my hp corei5.im ready to pay for it.....08191532370 call me if you go any
There are several free vpn service as plugin on google chrome:

In google chrome, go to your extensions in setting and search for Hide My IP or visit their website www.hide-my-ip.com.

Even better is the the built in vpn in Opera browser if you can update an older version or download the new version on line

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