Author Topic: Looking for a logo for BrowserBasic  (Read 18941 times)

Guilect

  • Guest
Looking for a logo for BrowserBasic
« on: June 28, 2013, 09:17:18 PM »
SteveOW suggested that BrowserBasic could use a logo.
So, since I can't draw a crooked line I am hoping that someone here could come up with a logo.
The winning design's author gets .... uhm... the winner gets... to know that their design was the winning one. :P

Mopz

  • Guest
Re: Looking for a logo for BrowserBasic
« Reply #1 on: June 29, 2013, 07:49:52 AM »
Yes, of course, here's a breakfast-cereals-gay-style logo :)



I'm just messing with ya, since this basic of yours'll kick naalaa's ass on the web ;)

Mopz

  • Guest
Re: Looking for a logo for BrowserBasic
« Reply #2 on: June 29, 2013, 08:14:38 AM »
Hardcore-heavy-metal-basic?


Cybermonkey

  • Administrator
  • *****
  • Posts: 0
Re: Looking for a logo for BrowserBasic
« Reply #3 on: June 29, 2013, 08:38:52 AM »
Yes, of course, here's a breakfast-cereals-gay-style logo :)

I'm just messing with ya, since this basic of yours'll kick naalaa's ass on the web ;)
Haha, (C) by the KELLOG company ...
BTW, Marcus, what programs do you use for image manipulation (aside from NaaLaa)?
« Last Edit: June 29, 2013, 08:55:03 AM by Cybermonkey »

Mopz

  • Guest
Re: Looking for a logo for BrowserBasic
« Reply #4 on: June 29, 2013, 08:56:06 AM »
Or you can use naalaa and the image manipulation lib to generate a logo :)

Code: [Select]
import "ImageManipulation.lib"

constant:
LOGO_IMG    0
TEXTURE_IMG 1
hidden:

rem Create font.
create font 0, "arial", 72, true

rem Create texture with the midpoint displacement thingie.
proc MD_GenerateImage TEXTURE_IMG, 129, 1.0, 0.1, 3
proc Blur TEXTURE_IMG, 16, true

rem Create logo image.
create image LOGO_IMG, 416, 72

set image LOGO_IMG
set color 255, 255, 255
wln "BrowserBasic"
proc MakeColorTransparent LOGO_IMG, 0, 0, 0
proc PatternFill LOGO_IMG, TEXTURE_IMG
proc Bevel LOGO_IMG, 2, 2, 200
proc Multiply LOGO_IMG, 1.0, 1.0, 1.2
proc ChangeBrightness LOGO_IMG, 24
proc ChangeContrast LOGO_IMG, 1.2
proc DropShadow LOGO_IMG, 4, 2, 2, 0, 0, 0, 200



set image primary
set color 255, 255, 255
cls
draw image 0, 100, 100

wait keydown


rem ==================================================================
rem Generate image. contrast and smooth should both be in the
rem range [0..1].
rem ==================================================================
procedure MD_GenerateImage(img, size, contrast#, smooth#, seed)
a#[][] = MD_Generate(size, contrast, smooth, seed)
create image img, size, size
set image img
for y = 0 to size - 1
for x = 0 to size - 1
i = int(a[x][y]*255.0)
set color i, i, i
set pixel x, y
next
next
set image primary
endproc

rem ==================================================================
rem Generate array with elements in the range [0..1].
rem ==================================================================
function MD_Generate#[][](size, contrast#, smooth#, seed)
randomize seed
contrast = min#(contrast, 1.0)
contrast = max#(contrast, 0.0)
smooth = min#(smooth, 1.0)
smooth = max#(smooth, 0.0)
smooth = 1.0 - smooth
md#[size][size]
md[0][0] = 0.5 + contrast*float(rnd(100))*0.01 - contrast*0.5
md[size - 1][0] = 0.5 + contrast*float(rnd(100))*0.01 - contrast*0.5
md[size - 1][size - 1] = 0.5 + contrast*float(rnd(100))*0.01 - contrast*0.5
md[0][size - 1] = 0.5 + contrast*float(rnd(100))*0.01 - contrast*0.5
proc MD_Rec md, 0, 0, size - 1, size - 1, contrast, smooth
return md
endfunc

rem ==================================================================
rem Recursive step.
rem ==================================================================
procedure MD_Rec(&md#[][], xmin, ymin, xmax, ymax, contrast#, smooth#)
if xmax - xmin <= 1 then return
if ymax - ymin <= 1 then return
hw = (xmin + xmax)/2
hh = (ymin + ymax)/2
md[hw][hh] = (md[xmin][ymin] + md[xmax][ymin] + md[xmax][ymax] + md[xmin][ymax])*0.25 + contrast*float(rnd(100))*0.01 - contrast*0.5
md[hw][hh] = max#(md[hw][hh], 0.0)
md[hw][hh] = min#(md[hw][hh], 1.0)
md[xmin][hh] = (md[xmin][ymin] + md[xmin][ymax])*0.5
md[xmax][hh] = (md[xmax][ymin] + md[xmax][ymax])*0.5
md[hw][ymin] = (md[xmin][ymin] + md[xmax][ymin])*0.5
md[hw][ymax] = (md[xmin][ymax] + md[xmax][ymax])*0.5
proc MD_Rec md, xmin, ymin, hw, hh, contrast*smooth, smooth
proc MD_Rec md, hw, ymin, xmax, hh, contrast*smooth, smooth
proc MD_Rec md, xmin, hh, hw, ymax, contrast*smooth, smooth
proc MD_Rec md, hw, hh, xmax, ymax, contrast*smooth, smooth
endproc

« Last Edit: June 29, 2013, 09:06:57 AM by Mopz »

Mopz

  • Guest
Re: Looking for a logo for BrowserBasic
« Reply #5 on: June 29, 2013, 09:09:34 AM »
Yes, of course, here's a breakfast-cereals-gay-style logo :)

I'm just messing with ya, since this basic of yours'll kick naalaa's ass on the web ;)
Haha, (C) by the KELLOG company ...
BTW, Marcus, what programs do you use for image manipulation (aside from NaaLaa)?

I always use the GIMP. But I don't like the latest version.

SteveOW

  • Guest
Re: Looking for a logo for BrowserBasic
« Reply #6 on: June 29, 2013, 10:56:38 AM »
When I google "BrowserBasic" it throws up a lot of chaff.
Maybe some kind of theme emphasising the initials "BB" "BeeBee" a pair of Bees? "BaaBaa"
A picture of Bridget Bardot might be going too far.
Depends who you are trying to attract I suppose. :)

Mopz

  • Guest
Re: Looking for a logo for BrowserBasic
« Reply #7 on: June 29, 2013, 11:56:24 AM »
Yeeaaah ...



... sorry :) Too many beers.
« Last Edit: June 29, 2013, 12:04:05 PM by Mopz »

SteveOW

  • Guest
Re: Looking for a logo for BrowserBasic
« Reply #8 on: June 29, 2013, 12:43:01 PM »
Enter [stage right] BROWSO !!!
the BrowserBasic.bee
</HTML> and {ja'script;}
have made him quite.angree
« Last Edit: June 29, 2013, 05:21:46 PM by SteveOW »

Guilect

  • Guest
Re: Looking for a logo for BrowserBasic
« Reply #9 on: June 29, 2013, 12:49:29 PM »
I like the heavy metal one by Mopz.
If it is ok with him I'll start with using that one.

Quote
Or you can use naalaa and the image manipulation lib to generate a logo
NaaLaa is quite powerful and versatile.

I did not take into account any search engine results when going with the name BrowserBasic.
But, in time, it will trickle through and infiltrate the internet.
« Last Edit: June 29, 2013, 12:55:52 PM by Guilect »

Tomaaz

  • Guest
Re: Looking for a logo for BrowserBasic
« Reply #10 on: June 29, 2013, 03:09:50 PM »
Logo:



Smaller icon:



Looks better on a white background. :)
« Last Edit: June 29, 2013, 03:14:47 PM by Tomaaz »

Guilect

  • Guest
Re: Looking for a logo for BrowserBasic
« Reply #11 on: June 29, 2013, 03:30:47 PM »
@Tomaaz
I like yours too.
I think i could use both yours and Mopz's.
Okay to do so?

Tomaaz

  • Guest
Re: Looking for a logo for BrowserBasic
« Reply #12 on: June 29, 2013, 03:32:50 PM »
Okay to do so?

Sure. That's why I made it. :)

Mopz

  • Guest
Re: Looking for a logo for BrowserBasic
« Reply #13 on: June 29, 2013, 05:43:54 PM »
Here're some combinations (png this time):







« Last Edit: June 29, 2013, 06:01:38 PM by Mopz »

bolbo

  • Guest
Re: Looking for a logo for BrowserBasic
« Reply #14 on: June 29, 2013, 06:36:00 PM »
What about the name "The Bro Basic" :)
I've just looked for other names like Brob in google image and and found these ones, the second one is nice because suggests a toy and portability, I think it is from an independent artisan.