Hello Guest
No Avatar
Profile of MLM  »  
Show Posts  »  
Sign In to Remove

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - MLM

Pages: 1 2 3 [4] 5 6 ... 26
Posts: 
400
Posted: February 8, 2013, 7:45 AM
I am unable to find what you are trying to round, could you please post a image or a relative url like "index.php?topic=290.0"
Posts: 
400
Posted: January 23, 2013, 4:54 AM
Great job! Thank you very much!

No Problem, please keep in mind I may implement API keys or the format may change. I will keep this post up to date with the latest developments on the API.
Posts: 
400
Posted: January 23, 2013, 4:51 AM
Here is a easy to use Kmean API for favicon's of websites. This API will analyze the 16x16 favicon of the requested url and return the most prevalent color in the image.


You can read more about Kmean clustering and check out the app here.

Use:
To use the API just call the link with parameters:
Code: [Select]
http://apps.visualpulse.net/kmean_chrome_color_stripe/api.php
Parameters:
url: Define the url you wish to analyze
Code: [Select]
http://apps.visualpulse.net/kmean_chrome_color_stripe/api.php?url=http://visualpulse.net/

k (optional): number of color clusters.
Default: 3
Code: [Select]
http://apps.visualpulse.net/kmean_chrome_color_stripe/api.php?url=http://visualpulse.net/&k=3

ignoreExtremity (optional): Enable/Disable the ignoring of color extremities (white and black)
Default: true
Code: [Select]
http://apps.visualpulse.net/kmean_chrome_color_stripe/api.php?url=http://visualpulse.net/&k=3&ignoreExtremity=true
http://apps.visualpulse.net/kmean_chrome_color_stripe/api.php?url=http://visualpulse.net/&k=3&ignoreExtremity=false

blackLevel, whiteLevel(optional): Level at which you cut off the extremities of black and white. This is the symmetric rgb equivalent (ex. rgb(10, 10, 10))
Defaults: blackLevel=10, whiteLevel=245
Max: 255
Min: 0
Code: [Select]
http://apps.visualpulse.net/kmean_chrome_color_stripe/api.php?url=http://visualpulse.net/&k=3&blackLevel=10&whiteLevel=245

Output
The API returns a JSON format of the data. Here is an example of the output:

Call:
Code: [Select]
http://apps.visualpulse.net/kmean_chrome_color_stripe/api.php?url=http://visualpulse.net/&k=3

Output:
Code: [Select]
{
"rgb": {
"r": 97,
"g": 107,
"b": 169
},
"hex": "616ba9",
"url": "visualpulse.net",
"k": 3,
"ignoreExtremity": true,
"blackLevel": 10,
"whiteLevel": 245
}
Posts: 
400
Posted: January 22, 2013, 8:30 AM
Is there already some kind of api for it?

I still have a bit more to do with it to make it a finished product behind the scenes but it is fully functional at the moment.

It is a json output and gives you the hex, rgb, url, and K value.

You can call the api by giving a url and an optional K value. K is 3 by default.
ex.
Code: [Select]
http://apps.visualpulse.net/kmean_chrome_color_stripe/api.php?url=http://www.google.com&k=2or
Code: [Select]
http://apps.visualpulse.net/kmean_chrome_color_stripe/api.php?url=http://www.google.com
Posts: 
400
Posted: January 17, 2013, 6:54 AM
Hey Marc! Thanks for showing interest in the Kmean app. I am currently looking up best practices on how to pass a URL as a GET variable ex.
example.com/index.php?name=marc

It will also probably be a json output so it will give the hex and rgb value of the color. I hope to get this done by the end of the long weekend. I also have to make sure people don't abuse the service so I have to figure out how to limit requests.
Posts: 
400
Posted: January 3, 2013, 6:54 AM
...
Thats the imagefiles i would need the .psd for

Here is the psd for all of those files. new_none, new_redirect, new_some are just half the size of off, on, redirect.
Posts: 
400
Posted: January 2, 2013, 10:19 AM
Is it possible to make a extra image set for this, or provide me with the .psd files so i can change this myself?

Thank You
Skolten

Name the image files and I can get you the psd's.
Posts: 
400
Posted: December 25, 2012, 7:24 AM
Not much new content recently but I haven't just been wasting time. I did some XNA game development stuff over the summer (running through tutorials) and I hope to have something up in the new year sometime. I have also been bitten by the electronics bug and I got my first FPGA board in September. With a FPGA you are able to code the logic to make custom circuits. I also have a project around this and this is what has been taking most of my time lately. I might have to make a electronics section to fill my strong interest in this field.

Please suggest any content you would like to see, a friendly nudge is always great encouragement to get something done.

First class has also been a little re-done. There is no longer any special perks of becoming First Class other than your name in a special color. I did not want to create content for a exclusive few and now more people benefit from any content produced. The price is $3 a month or $20 for a year and the money goes towards keeping the site up and running smoothly.

I hope everyone is having a great break from the day to day duties whether it be school or work and Happy Holidays!

- MLM
Posts: 
400
Posted: December 21, 2012, 3:33 AM
Heya Robert!

Welcome to Visual Pulse.
Posts: 
400
Posted: December 21, 2012, 3:13 AM
If you have some content you made yourself then feel free to post in the Tutorials section. I moved the topic here(web questions) as it is more discussion on good sites.

Thanks for the post  ;)
Posts: 
400
Posted: December 18, 2012, 3:18 AM
Site started off looking great but seems youve lost interest or inspiration. Being a Ps site owner I understand how that  can happen. You seem to have some good peeps involved and the right thoughts so dont give up on it yeah.

I'm on here everyday, just not creating new content. I got into doing XNA indie Xbox game stuff over the summer and now I am working on Electronics stuff (FPGA...).

Feel free to suggest any video or content ideas!

Thanks for the words of encouragement!
Posts: 
400
Posted: November 11, 2012, 2:53 AM
I do not see any issue unless...

If you are talking about the difference in width of the last post block then that is because of the date.

For example. The welcome board has
Code: [Select]
on November 09, 2012, 07:23:42 AM and Enchantments has
Code: [Select]
on Today at 10:07:05 AM
It just has to do with if it prints the relative day like "Today" or "Yesterday" or the full month, etc.

The only way to fix that issue is to add some css and a fixed width to .boardindex_board_lastpost
Code: [Select]
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;

width: 200px;
Posts: 
400
Posted: October 14, 2012, 6:13 AM
No Problem, come back anytime  :D
Posts: 
400
Posted: October 13, 2012, 7:24 AM
Should be
Code: [Select]
images/theme/main_block.png
Posts: 
400
Posted: October 12, 2012, 2:12 AM
hmm, I guess I forgot to add the theme setting in but all you have to do is overwrite this file:
Code: [Select]
images/vertex_image/banner_logo.png
You could also add this little snippet to your index.template.php to get the setting to work.

Replace:
Code: [Select]
<img src="', $settings['images_url'] ,'/vertex_image/banner_logo.png" alt="" />
With:
Code: [Select]
', empty($context['header_logo_url_html_safe']) ? '<img src="'. $settings['images_url'] .'/vertex_image/banner_logo.png" alt="' . $context['forum_name'] . '" />' : '<img src="' . $context['header_logo_url_html_safe'] . '" alt="' . $context['forum_name'] . '" />' ,'
Pages: 1 2 3 [4] 5 6 ... 26
anything