₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,330,348 members, 8,445,037 topics. Date: Tuesday, 14 July 2026 at 11:42 AM

Toggle theme

Brukx's Posts

Nairaland ForumBrukx's ProfileBrukx's Posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 (of 34 pages)

ProgrammingRe: I Want To Create Applications(i Need Help) by Brukx(m): 8:34am On Jun 26, 2020
TheGodlessGod:
I'm a novice and I've been wondering which programming language to learn, I've decided to learn how to create phones or computer application (Android os).

I need help with the type of programming languages to learn and the steps to follow, I also needs help on the apps to download in order to be learn how to create applications.

Thanks in advance.
Learn Java or Kotlin. Android os is built on Java. Most Google apps are built on Java but they are switching to Kotlin

But if you don't have a laptop, you can build apps in your phone using python.
1. Download pydroid3 from play store.
2.Get a good python book (introduction to programming using python .pdf)
3. Learn all the syntax and logic of python
4. Study python GUI libraries (e.g kivy)
TV/MoviesRe: What Series Are You Watching Now? Part 2 by Brukx(m): 2:35pm On Jun 24, 2020
abduleez1:
You donminit?? shocked

Man, I'm hooked already. grin Already in my watchlist. grin
You are following the right path. Sorry for the bolded spoiler
TV/MoviesRe: What Series Are You Watching Now? Part 2 by Brukx(m): 9:59am On Jun 24, 2020
It's weird how series like penny dreadful don't get the popularity they deserve. Imagine Dracula and Lucifer in one show
ProgrammingRe: Help A Python Newbie by Brukx(m): 9:34pm On Jun 22, 2020
NorthPrince:
so I just learnt the basics of python except for modules,packages and pypi.
so pls where can I lean this and what should I further study.

I also don't understand the concept of Django, what is it all about
Django is a web framework under python. Instagram was built with Django. Python is very popular in Data sciences, Ethical Hacking, Auto GUI. If you want to specialise in app and game development python is not a giant here but can still surffice.

Download "introduction to programming using python". It's a very good book
ProgrammingInterprete This Javascript by Brukx(op): 5:36pm On Jun 20, 2020
The script below are the instructions an online casino uses in generating random floats. I don't understand J's, but with my knowledge of python I have an idea what's going on in the script except for the hashing (SHA512) part. Anyone with good js knowledge should come tell us what's happening here

// fill client seed, server seed and nonce with values from your roll details:
const clientSeed = "ZOujisvXvVe7fBedsQkWQaHwi5GiBFTz";
const serverSeed = "Wgh5dqFCnKihl07hluONRzs8wkDJSaBMuAwuviWNlQjPrFsonsYYNe0irlz0ld00";
const nonce = 127;

console.log(roll(serverSeed, clientSeed, nonce));

// ------------ don't edit below this line ------------
function roll(serverSeed, clientSeed, nonce) {
const crypto = require('crypto');
const text = clientSeed + ':' + nonce;
const hash = crypto.createHmac('sha512', serverSeed).update(text).digest('hex');
const hashLength = hash.length;
const step = 5;
let index = 0;
let rollResult;

do {
const start = index * step;
const end = start + step;

if (end > hashLength) {
rollResult = 9999;
break;
}

rollResult = parseInt(hash.substring(start, end), 16);

index++;
} while (rollResult >= Math.pow(10, 6));

rollResult %= Math.pow(10, 4);
rollResult /= Math.pow(10, 2);

return rollResult;
}
EducationRe: The medical students and aspirants thread by Brukx(m): 7:01pm On Jun 19, 2020
Zeeknow3245:
Yep I will choose chemistry anyday over biochemistry. Lol Do you know chemistry is harder than biochemistry and With a bit of chemistry, biochemistry will be a childs play. Besides chemists work virtually every. From pharmaceuticals,to cosmetics,to brewry to .....
A foundation of chemistry will make you know biochem. Besides Biochem is much of a waste in naija. Recall there is, organic,analytic,industrial chemistry.
Clears throat
ProgrammingRe: Application Development Using Csharp (C#) by Brukx(m): 11:34am On Jun 18, 2020
omoluabiguy:
FORTRAN remains the fastest language in history, but it’s outdated. When it comes to Object oriented programming, C# has been proven to be faster than Java YES, C# is a better programming language when compared to Java. ... C# has a really nice lambda support, Java has it, but less sophisticated; C# is less bureaucratic than Java, you write less and get more; C# allows inline use of anonymous classes, Java does not.

And so many more....
thanks, this is really helpful
ProgrammingRe: Application Development Using Csharp (C#) by Brukx(m): 7:34am On Jun 18, 2020
Which Language is the best when it comes to speed? I was writing a music player app recently with python. The app is kinda slow. I heard Java is faster than python.
TV/MoviesRe: What Series Are You Watching Now? Part 2 by Brukx(m): 6:55pm On Jun 17, 2020
Penny Dreadful

Where has this show been all my life? I've come to the conclusion that one should not comment on a show till after seeing at least 5 episodes.
Victor Frankenstein
Dorian Grey
Van Helshing
All my favourite fictional characters in one show. I've not felt this way since early seasons of supernatural
ProgrammingRe: Programming Learning Challenge June. by Brukx(m): 11:02am On Jun 17, 2020
Planning to finish my music player app this month. The app detects all mp3 files on the user device. The app will be able to obtain lyrics from an API. It would also be able to update songs from the web ... Using python

ProgrammingRe: I Need Android Development Simplified Textbooks For Beginners by Brukx(m): 5:43pm On Jun 14, 2020
Kivy Cookbook
Kivy Blueprints
Creating Apps with Kivy

These are for python
TV/MoviesRe: What Series Are You Watching Now? Part 2 by Brukx(m): 11:48am On Jun 14, 2020
Apparently Ruth was a student of Socrates

ProgrammingRe: Python 3: Exercises And Solutions. by Brukx(m): 12:25am On Jun 12, 2020
iCode2:
I got a syntax error from line 7.
I've modified it. Check it again
ProgrammingRe: Python 3: Exercises And Solutions. by Brukx(m):
iCode2:
Write a program that asks the user to enter a sentence and then randomly rearranges the words of the sentence. Make sure that the sentence that will be printed out starts with a capital, that the original first word is not capitalised if it comes in the middle of the sentence, and that the period is in the right place.
import random
def main() :
sentence=input("enter a sentence: " )
list=sentence.split(" " )
new_sentence= random.shuffle(list)
new_sentence.capitalize(0)
new_sentence.replace(.,""wink
new_sentence(len(new_sentence))+("." )
print (', '.join(new_sentence))

main()
TV/MoviesRe: What Series Are You Watching Now? Part 2 by Brukx(m): 5:44pm On Jun 11, 2020
Kaycee7:
There is a high possibility that it will end in tears.
You mean it? I watched episode one. I can't conclude yet
TV/MoviesRe: What Series Are You Watching Now? Part 2 by Brukx(m): 5:39pm On Jun 11, 2020
kendrick9:
Of course there are many ways an assassin can kill...
But I believe she's killed over a dozen and none of em posed any challenge..... Some of em able bodied men....
For example the office scene, the young man was running around begging without posing any challenge or even Bill, a trained mi6 officer crying like a baby.. Very amateurish....
Let me add to the list, Nadia who was a fellow assassin was just begging for her life before Villanelle killed her. Abi they did not train Nadia too?
TV/MoviesRe: What Series Are You Watching Now? Part 2 by Brukx(m): 2:32pm On Jun 11, 2020
The number of times penny dreadful has been mentioned here. I'm forced to watch it
TV/MoviesRe: What Series Are You Watching Now? Part 2 by Brukx(m):
Kaycee7:
You want to be shown why? Like a flashback to a training facility or something? Isn't uncovering her history part of the show's storytelling? What exactly do y'all want?
yes bro, They should uncover her story to make her doings easier to digest
EducationRe: The medical students and aspirants thread by Brukx(m): 12:51pm On Jun 11, 2020
chukwukapromise:
In uniport, your chances is 101.2%
swr, this is the realest truth I've seen
TV/MoviesRe: What Series Are You Watching Now? Part 2 by Brukx(m): 7:56pm On Jun 10, 2020
sammycarz:
Is there any thread for billion
The only series with successful tread on nairaland are GOT and POWER. If you want to discuss about Billions, go to Reddit
TV/MoviesRe: What Series Are You Watching Now? Part 2 by Brukx(m):
Killing Eve S1

I don't know what they are trying to do with the Vanille character. They should have devoted at least an episode to show us how she carries out her kills, the obstacles she faces and how she overcomes them. Things are too easy for her to be realistic. She's very careless. No psychopath of her nature will make a good hitman.

Check out Mike of breaking bad
Nelson of Ozark
EducationRe: The medical students and aspirants thread by Brukx(m): 7:28am On Jun 09, 2020
Zeeknow3245:
I doubt this alot. A guy a told me many of his colleagues are Lecturers relatives of children.
E be like say u dey 100level read hard to scale through because going to 200level is the hardest dem dey drop ehn
who be this guy? Pls say what you are sure of. Uniport medics full here
EducationRe: The medical students and aspirants thread by Brukx(m): 7:24am On Jun 09, 2020
drvt:
someone once told me about uniport. please anyone who knows about their admission process especially for MBBS?
Change to uniport if you can afford it. Don't let your jamb score go to waste
ProgrammingRe: Android App Developers Hop In by Brukx(m): 7:24am On Jun 08, 2020
Following: Python Android dev
ProgrammingRe: You Would Better Start Programming With Java Or C# by Brukx(m): 6:46am On Jun 08, 2020
Mastermindx:
Yes oh
Face your medicine make we face our tech..
You can't have everything na, you're not Jesus.
I think say na Nursing abi pharmacy you dey run?
ProgrammingRe: You Would Better Start Programming With Java Or C# by Brukx(m): 6:38am On Jun 08, 2020
Ausrichie:
Well it is easier for a beginner (changed my opinion) but if you have dealt with a C like language (Java, C, C++, C#) steer clear of it the day I dumped python for good was the day I saw this: "arint".toUpper();
How can the bolded be valid. A constant has turned to a variable overnight?.
I understand what you mean now
ProgrammingRe: You Would Better Start Programming With Java Or C# by Brukx(m): 11:16pm On Jun 07, 2020
Mastermindx:
My guy u nor study medicine againhuhhuh
Na crime for medical student to love tech?
ProgrammingRe: You Would Better Start Programming With Java Or C# by Brukx(m): 7:54pm On Jun 07, 2020
Ausrichie:
C# is the best but if you are a comp science student advice is to just learn basics with c# then move to C or C++ for hardware programming and data science purposes or maybe Python you can start with c or c++ self but python is frustrating I advice you don't start with it. When you are done and feel like a brutal challenge go for Assembly for x86 and x64 architecture grin grin but learn with c# first I advice you
I don't really agree with the bolded
ProgrammingRe: You Would Better Start Programming With Java Or C# by Brukx(m): 7:50pm On Jun 07, 2020
netsage205:
Good points @progeek37, but it actually depend on which area they want to face, I don't really advise writing a website in either c# or java, the languages should be used where they are best suited, Python is actually very good for data science, for a data scientists, Python takes a cut above java and c# , for android apps, Java is more suited. So I believe it is just depends on where the beginners want to actually work on. They should learn the one more effective for the area they want to specialize .
well said
TV/MoviesRe: What Series Are You Watching Now? Part 2 by Brukx(m): 6:50pm On Jun 07, 2020
jmanity:
About to type this same thing too. They made MI5 officers appear too weak, can't even defend themselves. See the way Frank was crying like a baby when the assassin was after him, I expected more from an intelligence officer. Another thing, if your life is in danger are you not entitled to a gun at least? In my opinion they made the assassin too powerful.
I kinda agree with you. I've watched just one episode though. I feel things are way too easy for the assassin. But she's Dem sexy
TV/MoviesRe: What Series Are You Watching Now? Part 2 by Brukx(m): 4:40pm On Jun 05, 2020
OZARK

Season3 is by far the best drama series this year
TV/MoviesRe: What Series Are You Watching Now? Part 2 by Brukx(m): 11:50am On Jun 03, 2020
Born2Freak:
Season one ended with Eve stabbing Villanelle.

Season two ended with Villanelle shooting Eve.


Season three ended with Eve and Villanelle having a lovers talk and refusing not to look back at each other.


Eve's husband was almost murdered as a result of Villanelle's relationship with Dasha. Dasha wanted control over Villanelle to do her work. Yet, Eve who found this out, still has love talks with Villanelle.


So much nonsense in this season. We are to believe Konstantin that Kenny's death was an accident.
Thanks for the spoiler man

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 (of 34 pages)