Battle Rap and Freestyle Battles at Lets Beef


 
Start a battle

Vote on a battle to earn +1 credit!
 
  Scheme Championships May 2025
 
 
Battle Feed
JbFromthe90s vs Tain
Style: Written
0 Votes No Rating YetNo Rating YetNo Rating YetNo Rating YetNo Rating Yet
SunWave vs RhymeSmokeRhymeSmoke is on FIRE! 5+ wins in a row!
Style: Written
1 Vote 4.75 stars4.75 stars4.75 stars4.75 stars4.75 stars
ContagiousZ vs Blunt Rapper
Style: Freestyle
4 Votes 4.75 stars4.75 stars4.75 stars4.75 stars4.75 stars
SunWave vs JbFromthe90s
Style: Written
2 Votes 4.75 stars4.75 stars4.75 stars4.75 stars4.75 stars
ContagiousZ vs JbFromthe90s
Style: Written
1 Vote 4.75 stars4.75 stars4.75 stars4.75 stars4.75 stars

[ more battles... ]
 
 

Go Back   Lets Beef - Battle Rap Forums > Battle Arena > General Talk
Register Articles FAQ Community Calendar Today's Posts Search Journals

Notices

User Tag List

 
 
Thread Tools Display
Prev Previous Post   Next Post Next
  #1  
Unread 02-22-2017, 12:42 AM
Mindless Mindless is on FIRE! 5+ wins in a row!
Staff Hall Of Famer
HEBREW BANHAMMER
Join Date: May 2006
Posts: 6,578
Mentioned: 713 Post(s)
Tagged: 56 Thread(s)
Estimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 stars
Ranked Audio Record
3 Won / 1 Lost
Estimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 7.84/10 starsEstimated Skill in Text: 7.84/10 starsEstimated Skill in Text: 7.84/10 stars
Ranked Text Record
34 Won / 6 Lost
Exclusive Text Record
1 Won / 1 Lost
Default Anybody familiar with JavaScript?

I've been watching this YouTube channel where this professor at NYU teaches Java and JavaScript and he does these coding challenges. The guy is weird as fuck but for some reason his antics make it so I can actually learn the coding stuff w/o my eyes glazing over and wanting to kill myself.

Anyway, the most recent coding challenge was this little thing that you could put text in and it would convert that text into dots and those dots would automatically seek their location in order to form that text. Then you could move the mouse over it and it would scatter the dots within a certain number of pixels of the pointer and if the pointer was far enough from then the it would automatically move the dots back into place. At the end of the video the professor makes suggestions for what people should do with the code and one of the things was change the colors of the dots to colors of the rainbow. The channel used to be called Coding Rainbow (Like Reading Rainbow) and I figure that should be an easy enough thing to do. What I ended up creating though is a seizure inducer and I can't figure out what the fucking deal is. I'm pretty sure it's assigning a new color to each dot every time the draw() function runs but I'm at a loss at how to prevent that or change it.

Here's the code where I give it the color scheme
Code:
Vehicle.prototype.show = function() {
  var vRed = [209, 0, 0];
  var vOrange = [255, 102, 34];
  var vYellow = [255, 218, 33];
  var vGreen = [51, 221, 0];
  var vBlue = [17, 51, 204];
  var vIndigo = [34, 0, 102];
  var vViolet = [51, 0, 68];
  var RoyGBiv = [vRed, vOrange, vYellow, vGreen, vBlue, vIndigo, vViolet];
  
  var vColor = random(RoyGBiv)
  
  strokeWeight(8);
  stroke(vColor[0], vColor[1], vColor[2]);
//stroke(255);
  point(this.pos.x, this.pos.y);   
}
Here's a github repo with the entirety of the code for the thing: https://github.com/CodingTrain/Rainb...ing_Text_Paths
__________________
Quote:
Originally Posted by Krhyme Killz View Post
lol...hava nagila nigga
Reply With Quote
Unread 02-22-2017, 12:42 AM   #1
 
Mindless Mindless is on FIRE! 5+ wins in a row!
Staff Hall Of Famer
HEBREW BANHAMMER
Estimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 starsEstimated Skill in Audio: 5.83/10 stars
Ranked Audio Record
3 Won / 1 Lost
Estimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 5.83/10 starsEstimated Skill in Text: 7.84/10 starsEstimated Skill in Text: 7.84/10 starsEstimated Skill in Text: 7.84/10 stars
Ranked Text Record
34 Won / 6 Lost
Exclusive Text Record
1 Won / 1 Lost
 
Join Date: May 2006
Voted: 95 audio / 718 text
Posts: 6,578
Mentioned: 713 Post(s)
Tagged: 56 Thread(s)


Default Anybody familiar with JavaScript?

I've been watching this YouTube channel where this professor at NYU teaches Java and JavaScript and he does these coding challenges. The guy is weird as fuck but for some reason his antics make it so I can actually learn the coding stuff w/o my eyes glazing over and wanting to kill myself.

Anyway, the most recent coding challenge was this little thing that you could put text in and it would convert that text into dots and those dots would automatically seek their location in order to form that text. Then you could move the mouse over it and it would scatter the dots within a certain number of pixels of the pointer and if the pointer was far enough from then the it would automatically move the dots back into place. At the end of the video the professor makes suggestions for what people should do with the code and one of the things was change the colors of the dots to colors of the rainbow. The channel used to be called Coding Rainbow (Like Reading Rainbow) and I figure that should be an easy enough thing to do. What I ended up creating though is a seizure inducer and I can't figure out what the fucking deal is. I'm pretty sure it's assigning a new color to each dot every time the draw() function runs but I'm at a loss at how to prevent that or change it.

Here's the code where I give it the color scheme
Code:
Vehicle.prototype.show = function() {
  var vRed = [209, 0, 0];
  var vOrange = [255, 102, 34];
  var vYellow = [255, 218, 33];
  var vGreen = [51, 221, 0];
  var vBlue = [17, 51, 204];
  var vIndigo = [34, 0, 102];
  var vViolet = [51, 0, 68];
  var RoyGBiv = [vRed, vOrange, vYellow, vGreen, vBlue, vIndigo, vViolet];
  
  var vColor = random(RoyGBiv)
  
  strokeWeight(8);
  stroke(vColor[0], vColor[1], vColor[2]);
//stroke(255);
  point(this.pos.x, this.pos.y);   
}
Here's a github repo with the entirety of the code for the thing: https://github.com/CodingTrain/Rainb...ing_Text_Paths
__________________
Quote:
Originally Posted by Krhyme Killz View Post
lol...hava nagila nigga
Offline   Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 06:22 AM.


Powered by vBulletin
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.

 

[ LetsBeef Instagram | LetsBeef Facebook | LetsBeef Twitter | LetsBeef Youtube | Privacy Policy | Terms & Conditions | FAQ | Contact Support ]
Some members of the public may use explicit lyrics in the performance of their art, so please be advised that such language, if any, may not be appropriate for minors.
Graphics by Pixel Dreams · Site © 2025 LetsBeef.com
 
(new)
no new posts