Author Topic: Calling All Members: May I use Your Avatar?  (Read 8096 times)

0 Members and 1 Guest are viewing this topic.

Offline Qwerkey

  • Forum Resident
  • Posts: 755
    • View Profile
Calling All Members: May I use Your Avatar?
« on: July 22, 2018, 12:36:27 pm »
I am working on a Jigsaw Puzzle program, and one of the pictures used will be constructed from members' avatar images.  See the attachment.  Please let me know if you would like to be included or, indeed, not included.

The members whose avatar images I have already used are:

Steve McNeill
Ashish
bplus
donaldfoster (your avatar is a little blurry)
eoredson
euklides
Fellippe
Fifi
johnno56
keybone
odin
Pete
Petr (your avatar is a little blurry)
rhosigma
roadbloc
STxAxTIC
tempodibasic
Unseen
v
Walter (who has already kindly agreed)

Clippy & Luke, you don't yet have a .org avatar, I think.

The picture will use 18 avatar images selected at random at run time.  Closing date will be 29th July.

Thanks, Richard
jigsawpic.jpg
* jigsawpic.jpg (Filesize: 447.85 KB, Dimensions: 1265x789, Views: 341)

Offline RhoSigma

  • QB64 Developer
  • Forum Resident
  • Posts: 565
    • View Profile
Re: Calling All Members: May I use Your Avatar?
« Reply #1 on: July 22, 2018, 02:53:19 pm »
Hi Qwerkey,
just feel free to use my avatar or any other image you find in my software collections (see signature). I'm curious to see the finished puzzle game then.
My Projects:   https://qb64forum.alephc.xyz/index.php?topic=809
GuiTools - A graphic UI framework (can do multiple UI forms/windows in one program)
Libraries - ImageProcess, StringBuffers (virt. files), MD5/SHA2-Hash, LZW etc.
Bonus - Blankers, QB64/Notepad++ setup pack

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Calling All Members: May I use Your Avatar?
« Reply #2 on: July 22, 2018, 03:19:54 pm »
Hi Qwerkey,

Oh boy! my avatar was just grabbed off the Internet because it looked cool for a temporary forum site.

Who knew it would last more than a couple of days?

I have changed my avatar to a less legally ambiguous image, ie one I created myself, and was using @ TJP.

You can use that freely I am sure. :)



You all may also notice in my new signature, I have joined the next geberation! ;-D

Offline TempodiBasic

  • Forum Resident
  • Posts: 1792
    • View Profile
Re: Calling All Members: May I use Your Avatar?
« Reply #3 on: July 22, 2018, 05:54:12 pm »
Hi Qwerkey

I have adjourned my avatar because I haven't found original URL from which I have got it.
So now I have got another copy from this site https://www.coloradisegni.it/looney-tunes/daffy-duck-003.html. Painting and cutting it I mod my version that now is my new avatar.
IMHO the original image is downloadable or printable as goal of the site.... so this modification made by Paint3D can be used by you.

Good Coding
Programming isn't difficult, only it's  consuming time and coffee

Offline johnno56

  • Forum Resident
  • Posts: 1270
  • Live long and prosper.
    • View Profile
Re: Calling All Members: May I use Your Avatar?
« Reply #4 on: July 23, 2018, 02:58:56 am »
I have no objection... ;)

J
Logic is the beginning of wisdom.

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Calling All Members: May I use Your Avatar?
« Reply #5 on: July 23, 2018, 10:11:11 am »
Hi Qwerkey,

I have changed my avatar again, sorry but I thought one created in QB64 X64 code more appropriate.

I am also sorry the thumbprint can't show the exquisite detail as can be seen here:
Code: QB64: [Select]
  1. _TITLE "Sierpinski Circled by bplus"
  2. '2018-07-23 update some code tweaks learned when translating this to other BASIC flavors
  3. 'for new ORG avatar?
  4. CONST xmax = 740
  5. CONST ymax = 740
  6. SCREEN _NEWIMAGE(xmax, ymax, 32)
  7. DIM SHARED cx, cy, cr, ra, inc
  8. cx = xmax / 2: cy = ymax / 2: cr = ymax / 6: inc = _PI(1 / 360)
  9. COLOR _RGBA(100, 255, 100, 40), _RGB32(0, 0, 0)
  10. FOR n = 3 TO 8
  11.     a = 0
  12.     ra = _PI(2) / n
  13.     WHILE a < ra
  14.         CLS
  15.         levels = 12 - n
  16.         RecurringCircles cx, cy, cr, n, a, levels
  17.         a = a + inc
  18.         _DISPLAY
  19.         _LIMIT 200
  20.     WEND
  21.     CLS
  22.     RecurringCircles cx, cy, cr, n, 0, levels
  23.     _DISPLAY
  24.     _DELAY 5
  25. SUB RecurringCircles (x, y, r, n, rao, level)
  26.     fcirc x, y, r
  27.     IF level > 0 THEN
  28.         FOR i = 0 TO n - 1
  29.             x1 = x + 1.5 * r * COS(i * ra + rao + _PI(-.5))
  30.             y1 = y + 1.5 * r * SIN(i * ra + rao + _PI(-.5))
  31.             RecurringCircles x1, y1, r * .5, n, 2 * rao, level - 1
  32.         NEXT
  33.     END IF
  34.  
  35. 'Steve McNeil's  copied from his forum   note: Radius is too common a name
  36. SUB fcirc (CX AS LONG, CY AS LONG, R AS LONG)
  37.     DIM subRadius AS LONG, RadiusError AS LONG
  38.     DIM X AS LONG, Y AS LONG
  39.  
  40.     subRadius = ABS(R)
  41.     RadiusError = -subRadius
  42.     X = subRadius
  43.     Y = 0
  44.  
  45.     IF subRadius = 0 THEN PSET (CX, CY): EXIT SUB
  46.  
  47.     ' Draw the middle span here so we don't draw it twice in the main loop,
  48.     ' which would be a problem with blending turned on.
  49.     LINE (CX - X, CY)-(CX + X, CY), , BF
  50.  
  51.     WHILE X > Y
  52.         RadiusError = RadiusError + Y * 2 + 1
  53.         IF RadiusError >= 0 THEN
  54.             IF X <> Y + 1 THEN
  55.                 LINE (CX - Y, CY - X)-(CX + Y, CY - X), , BF
  56.                 LINE (CX - Y, CY + X)-(CX + Y, CY + X), , BF
  57.             END IF
  58.             X = X - 1
  59.             RadiusError = RadiusError - X * 2
  60.         END IF
  61.         Y = Y + 1
  62.         LINE (CX - X, CY - Y)-(CX + X, CY - Y), , BF
  63.         LINE (CX - X, CY + Y)-(CX + X, CY + Y), , BF
  64.     WEND
  65.  
new org avatar.PNG
* new org avatar.PNG (Filesize: 190.43 KB, Dimensions: 743x690, Views: 306)
« Last Edit: July 23, 2018, 10:17:52 am by bplus »

Offline Ashish

  • Forum Resident
  • Posts: 630
  • Never Give Up!
    • View Profile
Re: Calling All Members: May I use Your Avatar?
« Reply #6 on: July 23, 2018, 10:20:44 am »
Feel Free to use my avatar!
@bplus
Great Effect!
if (Me.success) {Me.improve()} else {Me.tryAgain()}


My Projects - https://github.com/AshishKingdom?tab=repositories
OpenGL tutorials - https://ashishkingdom.github.io/OpenGL-Tutorials

Offline Qwerkey

  • Forum Resident
  • Posts: 755
    • View Profile
Re: Calling All Members: May I use Your Avatar?
« Reply #7 on: July 23, 2018, 10:34:22 am »
bplus, thanks for attached file.  As you have worked out, I generally get folks' avatar images from a PrintScreen with low resolution.  Steve McNeill has also provided me with his original, which I use in preference.

Thanks, Richard

FellippeHeitor

  • Guest
Re: Calling All Members: May I use Your Avatar?
« Reply #8 on: July 23, 2018, 01:33:16 pm »
I had probably already given you the original file for my avatar, but here it is once again. Not that much bigger anyway.
qb64 - my avatar.PNG
* qb64 - my avatar.PNG (Filesize: 9.08 KB, Dimensions: 451x451, Views: 279)

Offline Qwerkey

  • Forum Resident
  • Posts: 755
    • View Profile
Re: Calling All Members: May I use Your Avatar?
« Reply #9 on: July 24, 2018, 04:33:12 am »
Thanks Fellippe.  If I had thought this through properly, I would have asked for members' orignal images in the first place.  Richard

Offline Todd_Bevins

  • Newbie
  • Posts: 7
    • View Profile
Re: Calling All Members: May I use Your Avatar?
« Reply #10 on: July 25, 2018, 02:13:51 pm »
Feel free to use mine as well.

Thanks

* ship_side.png (Filesize: 0.55 KB, Dimensions: 76x76, Views: 395)

Offline johnno56

  • Forum Resident
  • Posts: 1270
  • Live long and prosper.
    • View Profile
Re: Calling All Members: May I use Your Avatar?
« Reply #11 on: July 25, 2018, 04:49:25 pm »
Sorry... Forgot to attach.... lol

J

* spock100x120.png (Filesize: 20.96 KB, Dimensions: 100x120, Views: 423)
Logic is the beginning of wisdom.

Offline euklides

  • Forum Regular
  • Posts: 128
    • View Profile
Re: Calling All Members: May I use Your Avatar?
« Reply #12 on: July 27, 2018, 04:50:42 am »
Yes, of course, you can use my french frog...
Why not yes ?

Offline eoredson

  • Newbie
  • Posts: 55
  • Let the Farce be with you!
    • View Profile
    • Oredson QB45 Files At Filegate
Re: Calling All Members: May I use Your Avatar?
« Reply #13 on: July 27, 2018, 11:01:16 pm »
Feel free to use my Avatar : I got it from the internet anyway..

Erik.

* fatfreddiyscat1.jpg (Filesize: 4.81 KB, Dimensions: 123x134, Views: 421)
« Last Edit: July 27, 2018, 11:24:49 pm by eoredson »

Offline eoredson

  • Newbie
  • Posts: 55
  • Let the Farce be with you!
    • View Profile
    • Oredson QB45 Files At Filegate
Re: Calling All Members: May I use Your Avatar?
« Reply #14 on: July 28, 2018, 01:09:57 am »
Another avatar I use:

* billthecat1.jpg (Filesize: 3.32 KB, Dimensions: 98x94, Views: 367)