Begging for money online

AgoraForo - Digital Marketplace & Freelancer Forum

puroypoi

Somewhat Known
Member
Nov 23, 2022
542
111
Dex
$0.000
Raw Dex
$0.000
It could be object of a game.
Like for example:
Could you loan me just one dollar?
Then the prize of 1 ticket is second time number of the correct phrase online.
For the 34 words like randomly generated:
yydld ...etc
Then for each character in his correct place then it generates 1/34 $. Means for 4 characters you will get 0,11 $ then debited 0,08 $.
Python code:
word = "Could you loan me just one dollar?"
listA = list()
listB = list()
import random

ind = 0
ind1 = 0
cas1 = 0
cas2 = 0
while len(listA) < len(word):
f = random.choice(word)
listA.append(f)
if (f == word[ind]):
cas1 += 1
ind += 1
while len(listB) < len(word):
f = random.choice(word)
listB.append(f)
if (f == word[ind1]):
cas2 += 1
ind1 += 1
print('Word:', word)
print('Word 1:', ''.join(listA), ' correct : ', cas1, '/', len(word))
print('Word 2:', ''.join(listB), ' correct : ', cas2, '/', len(word))
val1 = round(cas1 / len(word), 2)
val2 = round(cas2 / len(word), 2)
print('Credited ', val1, ' $')
print('Debited ', val2, ' $')
Execution:
Word: Could you loan me just one dollar?
Word 1: at? odj emuotoe osujmmlolCdjnol us correct : 3 / 34
Word 2: Cae l no lol jndamlC rnoyjl uodCu correct : 4 / 34
Credited 0.09 $
Debited 0.12 $
Such a game is invited by mine but no PTP is executing up to the moment.
The post is for fun purpose.
What's with those code?
 

Carson20t

Notable
Member
Sep 10, 2022
1,617
294
Dex
$0.000
Raw Dex
$1.560
Maybe it is for those that are in dare needy of some emmergency assistance and it would not be a bad idea to extend a helpiung hand to them.But if it is just to give bto completely lazy people of which most of the online people are then it is wrong.It encourages people not to be in good standing with the society.
 

cherry123

Popular
Member
Sep 5, 2022
27,410
2,610
Dex
$0.001
Raw Dex
$0.100
Maybe it is for those that are in dare needy of some emmergency assistance and it would not be a bad idea to extend a helpiung hand to them.But if it is just to give bto completely lazy people of which most of the online people are then it is wrong.It encourages people not to be in good standing with the society.
Yeah I think it is for those in dire need for help not for lazy bones
 

Carson20t

Notable
Member
Sep 10, 2022
1,617
294
Dex
$0.000
Raw Dex
$1.560
Yeah I think it is for those in dire need for help not for lazy bone
Yeah for those in needy lol,we have alot of lazy bones and human junk on the online space who do not want to do the work.That is why we have alot of scamers,complainers and whiners because they do not want to start from somewhere and level up.If people can have a hardworking spirit then we would not always be complaining that paid to click and paid to post pay peanuts.We would always contribute atleast within six months to increase our pay.
 

Niyi Briggs

Well Known
Member
Nov 27, 2022
7,815
318
Dex
$0.000
Raw Dex
$0.000
It is pathetic when you see stuffs like this online. There was one lifestyle thread I knew on a local forum in my country. It was a hotbed of interesting discussions. As at now, it has turned into a beggars den because people are begging their lives out there.
 

cherry123

Popular
Member
Sep 5, 2022
27,410
2,610
Dex
$0.001
Raw Dex
$0.100
Well people tends to be funny sometimes by begging online. I don't think it is right just be contented with what you have sbd avoid being a beggar that's just it
 

Niyi Briggs

Well Known
Member
Nov 27, 2022
7,815
318
Dex
$0.000
Raw Dex
$0.000
Well people tends to be funny sometimes by begging online. I don't think it is right just be contented with what you have sbd avoid being a beggar that's just it
I know there might be genuine people that are in need and have no recourse than to beg. The problem is that the scammers beggars have made it difficult to know who is genuine or not.
 
Back
Top