Bitcoin Forum
March 19, 2024, 06:19:37 AM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 [13] 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 ... 83 »
  Print  
Author Topic: 10th anniversary art contest  (Read 58282 times)
GrosWesh
Legendary
*
Offline Offline

Activity: 2212
Merit: 1400



View Profile
October 20, 2019, 08:10:15 PM
Merited by Veleor (1)
 #241


Did you draw this from scratch? is it really your own art ?

He was inspired by the famous work of Vermeer: ​​'Girl with a Pearl Earring'.

https://en.wikipedia.org/wiki/Girl_with_a_Pearl_Earring

1710829177
Hero Member
*
Offline Offline

Posts: 1710829177

View Profile Personal Message (Offline)

Ignore
1710829177
Reply with quote  #2

1710829177
Report to moderator
1710829177
Hero Member
*
Offline Offline

Posts: 1710829177

View Profile Personal Message (Offline)

Ignore
1710829177
Reply with quote  #2

1710829177
Report to moderator
"Governments are good at cutting off the heads of a centrally controlled networks like Napster, but pure P2P networks like Gnutella and Tor seem to be holding their own." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1710829177
Hero Member
*
Offline Offline

Posts: 1710829177

View Profile Personal Message (Offline)

Ignore
1710829177
Reply with quote  #2

1710829177
Report to moderator
yenilmez86
Member
**
Offline Offline

Activity: 1244
Merit: 41


View Profile
October 20, 2019, 08:12:14 PM
 #242



BTC: 1BmHBhwaPs54LHqdRzkWKDnqv3HuJJnb9b
Crypto_Happy_Sad
Member
**
Offline Offline

Activity: 154
Merit: 47

BE-RACEFUL GRACEFUL


View Profile
October 20, 2019, 09:35:05 PM
Merited by theymos (30), Welsh (4), malevolent (3)
 #243

Hello All Smiley

Iam not a great artist but did my best to put my artistic talent on a white paper with my thoughts as I couldnt stop appreciating the community,its completely hand drawn and being a crypto woman tried my best to make it look fancy Smiley Once again wishing the Bitcointalk forum for the knowledge shared all the years and many more years to come ahead ! All the best to the great mods ,for keeping the forum clean and sharing the best of the crypto updates ! If I win I would be the happiest if I dont I wish the best for the Community always Smiley

Iam not able to post the images not sure but the links are here !

https://imgur.com/UVS44uA
https://imgur.com/0K7zTwx
https://imgur.com/h6JcOVu

Bitcoin Address :

35UrNhZ6nCTEaqPbduLUakH2r5ZDsF8Lxf

Thankyou and Goodluck for all of us !!
ritaconscience
Full Member
***
Offline Offline

Activity: 279
Merit: 109

reputation on reddit (for trades): bit.ly/3ja8HFK


View Profile
October 20, 2019, 09:50:06 PM
Last edit: October 28, 2019, 02:13:02 AM by ritaconscience
Merited by theymos (25), malevolent (17), Foxpup (6), Mitchell (6), suchmoon (4), Welsh (4), Veleor (3), vapourminer (1), ABCbits (1), Halab (1), o_e_l_e_o (1), DireWolfM14 (1)
 #244

I'm not going to be an artist (you can probably guess where I'm going after reading the rest of my entry)

Here's my entry. I'm going to upload a video of it soon(because it also spins).



(it looks like the forum isn't letting me post pictures)

How did I do it? My oscilloscope has an X-Y feature, so I took a picture of the Bitcoin logo and resized it to 32x32. Then I built a simple 5-bit digital to analog converter out of a couple of resistors. Then, I took all the coordinates on my 32x32 picture and I had the Arduino send them to the DAC. Here's the code for it if you want to try it yourself.

Code:
#define x1    12
#define x2    11
#define x4    10
#define x8    9
#define x16   8
#define y1    6
#define y2    5
#define y4    4
#define y8    3
#define y16   2
int spin(double deg, int orig){
  return (int)(15.5+(orig-15.5)*sin(deg));
}

void drawCircle(double x){
  int delayus = 20;
  int numPoints = 31;
  int xcoord[] = {0 ,0 ,1 ,1 ,1 ,1 ,1 ,1 ,2 ,2 ,2 ,3 ,3 ,4 ,4 ,5 ,5 ,6 ,6 ,7 ,7 ,8 ,9 ,9 ,10,11,12,13,13,14,15};
  int ycoord[] = {15,16,16,17,18,19,20,21,21,22,23,23,24,24,25,25,26,26,27,27,28,28,28,29,29,29,29,29,30,30,30};
    for (int i = 0; i<numPoints; i++){
    setXY(spin(x,xcoord[i]), ycoord[i]);
    delayMicroseconds(delayus);
  }
    for (int i = numPoints-1; i>=0; i--){
    setXY(spin(x,31-xcoord[i]), ycoord[i]);
    delayMicroseconds(delayus);
  }
      for (int i = 0; i<numPoints; i++){
    setXY(spin(x,31-xcoord[i]), 30-ycoord[i]);
    delayMicroseconds(delayus);
  }    for (int i = numPoints-1; i>=0; i--){
    setXY(spin(x,xcoord[i]), 30-ycoord[i]);
    delayMicroseconds(delayus);
  }
}
void drawBOuter(double x){

  
   int delayus = 20;
  int numPoints = 100;
  int xcoord[] = {8 ,9 ,10,11,11,11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 10 ,10,9 ,8 ,8 ,9 ,10,11,12,12,12,12,13,14,14,14,14,15,16,16,16,16,17,17,17, 17,18, 19, 19, 20,21,22,22,23,23,23,23,22,22,21,21,21,22,23,23,24,24,24,24,24,23,23,22,22,21,20,19,18,17,17,17,17,17,16,16,16,16,16,15,14,14,14,14,14,13,12,12,12,12,12,11,10,9,8};
  int ycoord[] = {8 ,8 ,8 ,8 ,9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 20, 21,21,21,22,22,22,22,22,23,24,25,25,25,24,23,22,22,22,23,24,25,25,24,23, 22,22, 22, 21, 21,21,21,20,20,19,18,17,17,16,16,15,14,14,14,13,13,12,11,10,9 ,9 ,8 ,8 ,7 ,7 ,7 ,7 ,7 ,7 ,6 ,5 ,4 ,3 ,3 ,4 ,5 ,6 ,7 ,7 ,7 ,6 ,5 ,4 ,3 ,3 ,3 ,4 ,5 ,6 ,7 ,7 ,7 ,7,7};
    for (int i = 0; i<numPoints; i++){
    setXY(spin(x,xcoord[i]), ycoord[i]);
     delayMicroseconds(delayus);
  }
}
void drawBUpperInner(double x){
     int delayus = 20;
  int numPoints = 22;
  int xcoord[] = {14,15,16,17,18,19, 19, 20,20 , 20, 20, 19, 19, 18 ,17,16,15,14,14,14,14,14};
  int ycoord[] = {15,15,15,15,15,15, 16, 16, 17, 18, 19, 19, 20, 20, 20,20,20,20,19,18,17,16};
    for (int i = 0; i<numPoints; i++){
    setXY(spin(x,xcoord[i]), ycoord[i]);
    delayMicroseconds(delayus);
  }
}
void drawBLowerInner(double x){
     int delayus = 20;
  int numPoints = 26;
  int xcoord[] = {14,15,16,17,18,19, 19, 20,20, 21, 21, 21, 21, 20, 19, 19, 18 ,17,16,15,14,14,14,14,14,14};
  int ycoord[] = {8 ,8 ,8 ,8 ,8 ,8 , 9 , 9, 10, 10, 11, 12, 13, 13, 13, 14, 14, 14,14,14,14,13,12,11,10,9};
    for (int i = 0; i<numPoints; i++){
    setXY(spin(x,xcoord[i]), ycoord[i]);
    delayMicroseconds(delayus);
  }
}

void setXY(int x, int y){
  digitalWrite(x1, x%2);
  x=x>>1;
  digitalWrite(x2, x%2);
  x=x>>1;
  digitalWrite(x4, x%2);
    x=x>>1;
  digitalWrite(x8, x%2);
    x=x>>1;
  digitalWrite(x16, x%2);
    digitalWrite(y1, y%2);
  y=y>>1;
  digitalWrite(y2, y%2);
  y=y>>1;
  digitalWrite(y4, y%2);
    y=y>>1;
  digitalWrite(y8, y%2);
    y=y>>1;
  digitalWrite(y16, y%2);
}

void setup() {
pinMode(x1, OUTPUT);
pinMode(x2, OUTPUT);
pinMode(x4, OUTPUT);
pinMode(x8, OUTPUT);
pinMode(x16, OUTPUT);
pinMode(y1, OUTPUT);
pinMode(y2, OUTPUT);
pinMode(y4, OUTPUT);
pinMode(y8, OUTPUT);
pinMode(y16, OUTPUT);
}
double x = 3.14/2;
void loop() {
  

drawCircle(x);

drawBOuter(x);

drawBUpperInner(x);


drawBLowerInner(x);

x=x+0.03;
}
The circuit can be found here. It's basically two R2R ladders and an Arduino:


Here's my bitcoin address: 3LGFCYRgpqsJXdUjvn5AHhvEetb726YrgL

If this gets 10 merits I'm drawing more stuff.

Edit: That was quick. What should I draw next?

https://www.youtube.com/watch?v=FoGXVam3CNU

Here's the video (it's not very good quality because I took it with my phone)
Edit 2: I'll have the other drawing done this week.
Edit 3: Done, go to page 32.

3LGFCYRgpqsJXdUjvn5AHhvEetb726YrgL
Yatsan
Legendary
*
artcontest
Offline Offline

Activity: 2338
Merit: 1231


Leading Crypto Sports Betting & Casino Platform


View Profile
October 20, 2019, 10:30:53 PM
Merited by Mitchell (10), eddie13 (3), LoyceV (1), Vispilio (1), serg1e (1), Laskoo (1)
 #245

Happy 10years old bitcointalk!!!
Done using acrylic on canvas 😊



Entry # 2




Process




BTC Address: 33gZb8CuaGauYtXFaEkuapzHjo5SuhvgjW
Sorry for questioning your skills and fairness, but why your 2nd entry is signed "YATSAN" in the process and on the finished painting is "nikki/18" or "nikkil18"?

P.S. I really liked your paintings and this is why I take a close look as the details are amazing, very good skills!! Will give a Merit anyway as the author (who ever he/she is) is really good Smiley


Did you draw this from scratch? is it really your own art ?

Hi everyone! Thankyou for asking  Cheesy To answer your question, yes! It is my own paintings and I draw it from scratch , I am using acrylic and canvas on my paintings.
Regarding the pen name or signature in the painting, Don't be confuse! Yatsan is just my username here in forum, I have my real name and I have my own pen-name or signature in every painting I make.

My first painting was bought by TECSHARE, The second one is still here, and I am making a third one so wait for it!!!

Thank you guys for appreciating my painting!  Cheesy



Wait for this one!


..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
wolwoo
Legendary
*
Offline Offline

Activity: 2016
Merit: 1130



View Profile
October 20, 2019, 11:26:07 PM
Merited by Mitchell (1)
 #246









1G7HCyiRbQSZgXCmt61FUD4X6qhDwSQnbo

Kurtla beraber öldürüyorlar, çobanla beraber yiyorlar, sahibiyle beraber ağlıyorlar.
guzuyu zaten ipleyen yok Wink
Deathwing
Legendary
*
Offline Offline

Activity: 1638
Merit: 1328


Stultorum infinitus est numerus


View Profile WWW
October 20, 2019, 11:46:03 PM
 #247



snip


Just so you know, spamming this thread with several posts per day is probably not going to help your chances to win... Just so you know.
DragonDance
Full Member
***
Offline Offline

Activity: 127
Merit: 116


View Profile
October 20, 2019, 11:52:09 PM
Merited by theymos (8), Vispilio (1)
 #248

Hi,

here is my entry, it's a 3d piece, a mix of my own drawings from scratch and a few stock 3d images:

original 3d render: https://i.imgyukle.com/2019/10/21/EhvGw0.jpg

image size reduced to fit Bitcointalk format:




My BTC address: 1KyC263q14cMyoAwBYqqG5NLhzgDAh8pPm


Happy 10th Anniversary Everyone !!
cissrawk
Sr. Member
****
Offline Offline

Activity: 1218
Merit: 410


Secure your crypto : https://notyourkeys.org


View Profile
October 21, 2019, 12:02:15 AM
Merited by theymos (15)
 #249

Just see this today. Don't have much time but here is my simple art i draw

https://i.imgur.com/ahmB3kZ.jpg

Happy Anniversary bitcointalk!

Btc addy : 16CYsf1yonoVAN3jLAJguREmoJfCy5twi4

I'm doing steam artwork.Official thread (Indo, but please pm me even if you're english speaker) : https://bitcointalk.org/index.php?topic=5323281
NOT YOUR KEYS, NOT YOUR MONEY. PLEASE PROTECT YOUR MONEY! More info click here or go to NotYourKeys.org
Trade Crypto and get 10% cashback BTC16CYsf1yonoVAN3jLAJguREmoJfCy5twi4
Felipe Postingher
Member
**
Offline Offline

Activity: 94
Merit: 30

Here we go! I am a portuguese translator!


View Profile
October 21, 2019, 12:04:41 AM
Merited by theymos (4)
 #250

https://i.imgur.com/gew2xLC.jpg[/img]]

1NUigJLrATfG4TwgYTdfoHxA4Q96Wg49Az

Felipe Postingher
Member
**
Offline Offline

Activity: 94
Merit: 30

Here we go! I am a portuguese translator!


View Profile
October 21, 2019, 12:07:50 AM
 #251

https://i.imgur.com/P9WWddD.jpg[/img]]

1NUigJLrATfG4TwgYTdfoHxA4Q96Wg49Az

Felipe Postingher
Member
**
Offline Offline

Activity: 94
Merit: 30

Here we go! I am a portuguese translator!


View Profile
October 21, 2019, 12:08:54 AM
 #252

https://i.imgur.com/tdwHaKE.jpg[/img]]

1NUigJLrATfG4TwgYTdfoHxA4Q96Wg49Az

wolwoo
Legendary
*
Offline Offline

Activity: 2016
Merit: 1130



View Profile
October 21, 2019, 12:09:54 AM
 #253



snip


Just so you know, spamming this thread with several posts per day is probably not going to help your chances to win... Just so you know.


I know I can't win.
I'm not writing for bounty either.
I know it's not forbidden to send messages every day.
I'm trying to have a good time.
Thank you

Kurtla beraber öldürüyorlar, çobanla beraber yiyorlar, sahibiyle beraber ağlıyorlar.
guzuyu zaten ipleyen yok Wink
Hecquyn
Member
**
Offline Offline

Activity: 129
Merit: 15


View Profile
October 21, 2019, 01:12:27 AM
Merited by theymos (15)
 #254

Happy 10th Anniversary BCT!

I cannot post images, please see the following link:



15UEvDAy9MB47X9XPgANx4cQhL81DRiQyn
truongtheanhc3
Jr. Member
*
Offline Offline

Activity: 53
Merit: 4


View Profile
October 21, 2019, 01:28:48 AM
Merited by theymos (3)
 #255

Happy 10th Anniversary Bitcointalk!



My BTC Address: bc1qfnersm6pz83c5sm59p9qwct693zvcn0hlwaduj
truongtheanhc3
Jr. Member
*
Offline Offline

Activity: 53
Merit: 4


View Profile
October 21, 2019, 01:30:01 AM
Merited by congakia113 (1)
 #256

Happy 10th Anniversary Bitcointalk!



My BTC Address: bc1qfnersm6pz83c5sm59p9qwct693zvcn0hlwaduj

what? Why aren't my images displayed as big and clear as others?

I have been blocked ?? Help me! Please
whtchocla7e
Full Member
***
Offline Offline

Activity: 392
Merit: 116


Worlds Simplest Cryptocurrency Wallet


View Profile
October 21, 2019, 01:33:09 AM
 #257

Happy 10th Anniversary Bitcointalk!



My BTC Address: bc1qfnersm6pz83c5sm59p9qwct693zvcn0hlwaduj

what? Why aren't my images displayed as big and clear as others?

I have been blocked ?? Help me! Please

Do not worry. Your account is okay! Only accounts rated from Jr Member or above will display the photo! I will help you, boys!

Quote
▂▂▂▂▂▂▂▂▂▂▂▂▂▃▅▆█ L E A D █▆▅▃▂▂▂▂▂▂▂▂▂▂▂▂
World's Simplest and Safest Decentralized Cryptocurrency Wallet!
▬▬▬▬▬▬▬ • STORE • SEND • SPEND • SWAP • STAKE • ▬▬▬▬▬▬
Toplistico.com
Jr. Member
*
Offline Offline

Activity: 209
Merit: 3


View Profile
October 21, 2019, 02:59:52 AM
Merited by theymos (2), Renampun (1)
 #258




Hope you like it  Cheesy

BTC Address: 1NtB4kH5SZRwy29RowGcEi6uFgjkFrvr7b
sheenshane
Legendary
*
Offline Offline

Activity: 2366
Merit: 1206


🔰Buy/Sell Cryptocurrencies🔰


View Profile WWW
October 21, 2019, 03:08:33 AM
Last edit: October 21, 2019, 06:13:54 AM by sheenshane
 #259

Quoted, to show your images. Good luck..
You need to purchase a copper membership or reach the Jr. Member rank if you want to appeal the images you had been posted.




Hope you like it  Cheesy

BTC Address: 1NtB4kH5SZRwy29RowGcEi6uFgjkFrvr7b

.BEST..CHANGE.███████████████
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
███████████████
..BUY/ SELL CRYPTO..
Darker45
Legendary
*
Offline Offline

Activity: 2520
Merit: 1831


🙏🏼Padayon...🙏


View Profile
October 21, 2019, 03:13:30 AM
Last edit: October 21, 2019, 07:57:18 AM by Darker45
Merited by theymos (17), Mitchell (5), Welsh (1)
 #260

I couldn't compose a much better explanation than this one.

There will be many forums and many places to discuss Bitcoin, many social media sites and many Facebook groups. But how many of those will have been something Satoshi created? A hundred years from now, nobody will give a shit about Twitter, Facebook or Reddit. But there's a good chance they will give a shit about Bitcoin (and one can hope they will be using it). You can be sure this forum will be in the history books. Little kids will look over archives of our threads as they dream of one day owning 1 BTC. Threads like "we are the new wealthy elite" will be discussed in classrooms. Homework assignments will ask kids to go and research how the HODL meme originated. If Bitcoin does take over the world, you can tell your grandkids you were in the place where it all began. We have something that can't be replicated elsewhere: history.

Just like the rest, this forum will eventually reach its end. But unlike the rest, history is made here. And I am very proud to have been part of this forum. I tried, am trying, and will try even more to contribute something to this forum.  

They may all look the same eggs,



but when the lights are off and the curtains are down, only one continues to glow...



and shine in history!    



Ahh, Darker45, gimme some tissue please...  Cry and your address.  Grin



My first entry.
My second entry.
My BTCitcoin address 1DarkerGNME6p52mXvHdaDWNbuzkuwRJJZ.  Grin

(Credits to Cøbra for the wonderful post and TECSHARE for you know what.)


.BEST..CHANGE.███████████████
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
███████████████
..BUY/ SELL CRYPTO..
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 [13] 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 ... 83 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!