Begging for money online

AgoraForo - Digital Marketplace & Freelancer Forum

Sanjeev

Well Known
Member
Sep 23, 2022
8,556
1,212
Dex
$0.333
Raw Dex
$0.010
That's a surprise for me. Beggars are everywhere but I never thought that they could be online too. How do they beg online?. Clicking on the link is not paying them?
 

Sanjeev

Well Known
Member
Sep 23, 2022
8,556
1,212
Dex
$0.333
Raw Dex
$0.010
Begging is the easiest way to earn money but that's the toughest work to do because that's not a respectable way as people abuse you when you go and ask for elms from the people
 

Shavkat

Very Familiar
Member
Sep 7, 2022
13,631
947
Dex
$0.515
Raw Dex
$0.003
I think it is a silly site that needs to be so desperate in asking for money. I would rather give money to legit sites under the umbrella of the United Nation.
 

saoussen5765

Notable
Member
Jun 17, 2022
2,079
260
Dex
$0.210
Raw Dex
$0.060
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.
 
Back
Top