See bottom of page for search results.

Tuesday, April 7, 2009

My chin stitches scar

I'd rather not share my emotional scars :)

I have a long scar across the bottom of my chin. I got it when I was five and playing tag on the playground. I climbed up the slide and fell off, falling to the ground and busting my chin wide open. We got it stitched open, and I looked like I had beard hair for a while. :D

I get my news from the Internet

It is unlimited. The more it grows, the more powerful and influential it becomes. The more influence it has, the more opportunity it has to grow. Newscasters have their own opinions, but the internet has ALL opinions, even the unusual ones. It has information from all areas, not just the easily accessible ones.

I could eat nothing but Mexican food for a year

I would have to say that Mexican food would serve me well for however long I'm forced to eat it. It tastes great, it is fairly healthy, and it is quite plentiful. It is not varied much, but that's ok. I don't mind. I would want to have a few different types of drinks, i.e. fruit juices, but I could live with limonada y bebidas frescas. Aguas frutas wouldn't be half bad to try... I'll remember that for when I move to Spain after I become insanely rich.

God is someone I admire

God
He's kinda omnipotent, omniscient, and all that jazz. I don't look up to any human as an example because we are all broken. I look up only to somebody worth looking up to.


In Response To 'Cellar Door' - Philosophical Ramblings

Alright, well. Well well well.

In response to some recent comments made by a friend, I feel compelled to spill out my brains concerning my personal beliefs and my soul. :D



I really do try not to have any expectations at all about the future. If my expectations are right, then I don't get any more joy than being surprised. If they're wrong, then that just makes people sad, doesn't it? I just think that since the future isn't in our hands, it shouldn't be heavy on anyone's heart. In the same way, the past should not worry anyone. I found this one out the hard way. If a person is to blame for some occurance, worrying isn't going to help anyone, especially not himself.



There's my philosophy on hope. As for my own motivation for love affairs, there is a bit to say about that too.



In order for two people to be successful in a romantic relationship, they must have a connection on four levels: spiritual, emotional, mental, and physical.

The spiritual connection is love. If there is no love, there cannot be understanding nor romance nor compromise. Nothing more to say about that. Emotional connection is the ability of two people to experience intimacy.(Not physical intimacy; emotional intimacy. We'll get to the physical part in a second.) Mental connection is the similarity and/or compatability of ideas, opinions, thought, and decision-making processes. This doesn't mean that they have to be the same; far from it. The less actions of a couple will conflict, the more of a mental connection there is. Phyiscal connectedness is a very important and intrensic part of any relationship. It is by no means what a relationship should hang on; that is why it is listed last. (That is also something I found out the hard way... d'oh!)



I have a friend, I believe his code-name is Tom, who did not approve of me feeling a connection with different women all at the same time. I think that it is quite natural to have feelings for more than one person at a time, especially during the adolescent years. However, it is not ok to act on all of those at the same time. I understand that now. I have a physical connection with a girl commonly called Chick, a spiritual connection to someone we'll codename Winde, and an emotional/mental connection with one we'll call Sara. While I have all of these connections, there is not one person who shares all four strong bonds with me in both directions. If there was, this person would be my twin flame. I suppose most people would call this a soulmate.


That's about it of my philosophy. More later, perhaps? Yeah, probably. Tune in next week for another exciting episode of "Philosophical Ramblings!"

~ROBO~

Monday, February 9, 2009

Random Picture

This is a chop I did for an "add 1 thing" contest on PhotoshopContests.com. Wonderful site; definately worth checking out if you're into image manipulation or not.



~ROBO~

Wednesday, January 28, 2009

New Personal Best!

I was speedcubing today, and I got the amazing (for me) time of 53.88 seconds! I was videoing and everything! It was great. I added titles, plus some background music from the wonderful French artist Yelle. I took a screenshot of the cubetimer, even though I didn't use the scramble that they gave me. I suppose I'll also post the video... Blogspot won't let me save the vid here, so I'll just post the Facebook link.

P.S. Yelle, I know I used your music without permission, but it is not for financial gain, so please don't sue the poor highschooler.

~ROBO~


Saturday, January 17, 2009

Boids Model for Visualbots

Alright, here is my take on the Boids model as promised:


Public SwarmRange As Range, WanderRange As Range, TimeRange As Range
Public SwarmingBugs As Integer, WanderingBugs As Integer
Private Sub World1_OnSimBegin(ByVal World As World, ByVal Bugs As Bots, ByVal Cells As Cells)

World.Random.Seed = 115
World.Screen.Bounds = vbtWalled
World.Screen.Resize 900, 400
World.Screen.SetScale -1800, -800, 1800, 800
World.Screen.Color = vbBlueGray
World.Screen.FadeRate = 0.04
World.Screen.FadeMode = True
Cells.Hide

RandomLoop = 0
RandomNum = World.Random.Real(-20, 20)

Bugs.Create 100
Bugs.Shape = vbtTadpole
Bugs.Shape.FillColor = vbRed
Bugs.Shape.BorderVisible = False
Bugs.Size = 50
Bugs.Pen.Color = vbtLightBlue
Bugs.Pen.Width = 5
Bugs.Pen.Down

Bugs.Tags.Add "align"
Bugs.Tags.Add "converge"
Bugs.Tags.Add "separate"
Bugs.Tags.Add "velocity"
Bugs.Tags("velocity") = 1

Bugs.ViewField.Radius = 150
Bugs.ViewField.Span = 360
Bugs.Speed = 25

'define Excel ranges to store results
Set SwarmRange = ActiveSheet.Range("Q1")
Set WanderRange = ActiveSheet.Range("R1")
Set TimeRange = ActiveSheet.Range("S1")

ActiveSheet.Columns(SwarmRange.Column).Clear
ActiveSheet.Columns(WanderRange.Column).Clear
ActiveSheet.Columns(TimeRange.Column).Clear

SwarmRange.Value = "SwarmingBugs"
WanderRange.Value = "WanderingBugs"
TimeRange.Value = "Time"

End Sub

Private Sub World1_OnSimStep(ByVal World As World, ByVal Swarm As Bots, ByVal Cells As Cells)

Dim Bug As Bot
Dim ClosestBug As Bot
Dim Neighbors As Group
Dim TurnDirection As Double
Dim AngleToPoint As Double
'Dim RandomLoop As Integer
'Dim RandomNum As Variant
'Dim RandomChange As Variant 'for quadratic change in RandomNum
SwarmingBugs = 0
WanderingBugs = 0

'random number generator - change RandomNum every 500 steps
'uncomment this block and line 130 and Dims above.

'If RandomLoop >= 5 Then
' RandomChange = RandomChange + World.Random.Real(-20, 20)
' RandomNum = RandomChange + RandomNum
' RandomLoop = 0
'Else
' RandomLoop = RandomLoop + 1
'End If

'gather information
For Each Bug In Swarm

Set Neighbors = Bug.GroupNear
Bug.Tags("align") = 0
Bug.Tags("separate") = 0
Bug.Tags("converge") = 0

If Neighbors.Count > 1 Then
Bug.Tags("align") = Neighbors.Avg("Dir") - Bug.Dir


Set ClosestBug = Bug.Closest

If Bug.DistTo(ClosestBug) <> 100 Then
Bug.Tags("velocity") = (Bug.DistTo(Neighbors.Centroid) + Bug.DistTo(ClosestBug) * 0.5) / 20
Else
If Bug.AngleTo(Neighbors.Centroid) > 300 And Bug.DistTo(Neighbors.Centroid) > 100 Then
Bug.Tags("velocity") = (Bug.DistTo(Neighbors.Centroid) + Bug.DistTo(ClosestBug) * 0.5) / -20
End If
End If

End If

'count, coloring, and stray behavior
' - add to SwarmingBugs and WanderingBugs variables
' - color Bug red if alone, green if in group
' - if alone, make Bug turn randomly and adjust to normal speed
If Neighbors.Count < 2 Then
Bug.Color = vbtRed
Bug.TurnRand -20, 20
Bug.Speed = 25
WanderingBugs = WanderingBugs + 1
Else
Bug.Color = vbtBrightGreen
SwarmingBugs = SwarmingBugs + 1
End If

Next Bug

'action loop - change direction based on composite behavior
For Each Bug In Swarm
If Neighbors.Count > 1 Then
TurnDirection = Bug.Tags("align") + Bug.Tags("separate") + Bug.Tags("converge") '+ RandomNum
Bug.Turn TurnDirection
If Bug.Speed < 1000 Then
Bug.Speed = 25 + Bug.Tags("velocity")
Else
Bug.Speed = 1000
End If
End If
Next Bug

'set the values to be used in data recording
TimeRange.Offset(World.Sim.Time).Value = World.Sim.Time
WanderRange.Offset(World.Sim.Time).Value = WanderingBugs
SwarmRange.Offset(World.Sim.Time).Value = SwarmingBugs

'move Bugs
Swarm.Step


End Sub


(In case you haven't read my previous post, this code was written for the VisualBots Excel add-in. It's completely safe, plus an easy yet powerful way to use BASIC programming.)

This is actually version 5.3. I plan to condense this a bit, get rid of the orphans, and reorganize it so I can have a v6. Enjoy!

~ROBO~

Thursday, January 15, 2009

VisualBots

I want to pay my tribute to a fantastic program made by the Waite family called VisualBots. It is an agent-based addin for Microsoft Excel that runs off of the built-in Visual BASIC compiler/interpreter. The program is free for download from this link. I have modified their flocking example program (a crude adaptation of the BOIDS flocking model) to include a speed modification, and I have renamed it into bugs instead of birds. I will post the code this afternoon.

~ROBO~

Thursday, January 8, 2009

---BLANK---

Sorry, deleted post :(

~ROBO~