I have an amazing business concept, but no money to see it through. Does anyone know of any venture capitalists that might be interested in hearing a web2.0 business concept?
I have an amazing business concept, but no money to see it through. Does anyone know of any venture capitalists that might be interested in hearing a web2.0 business concept?
So, in my spare time (like I really have any, huh?) I have been working on and developing an RSS based news aggregation site, called RANCT(RSS Aggregator and News Collaboration Tool). It’s located at www.ranct.com if you wish to take a look.
While I am still working on a lot of additions for it, the core of what the site does is there.
The sites scours the internet for news websites and using there RSS feeds, displays the links to the relevant news. RSS feeds will be able to be tagged as local news by a zipcode. You will then have all your local news on one site.
Popular News uses the assumption that if multiple news agencies are writing on a topic around the same time, then it must be something important and newsworthy. Then it searches for an image that pertains to the story on the relevant sites, displaying them.
Users can share the links they are reading by using a twitter and facebook share link.
So far there has been a couple months into the project and I am ready to start working on some features to make it more friendly to visitors, but for now, the hard stuff is done!
I was working on a little bit of CSS this morning and ran into some problems that I tried researching a solution for.
The problem?
I created a div that contained an image and some text. Then I overlayed another div directly on top of it to protect the image from a right-click as well as to [...]
As a university web developer I’ve come across the need for a CMS in many diffrent applications. Currently we are using Ektron CMS400 to house over 17K pages. In the past, prior to my employment. The previous web developer used this system for anything and everything, which works, but is not fully effective!
For example, our [...]
In the past have always declared my font sizes using the traditional method based on pixel size. Before I made this jump, I figured using px was sufficient enough for my use, but I came to realize that this is not the case. For your reference, this is how I declared font-sizes in the past:
a {
[...]
I was working on a project tonight and came across an error that I’ve seen before in my PHP programming. If you have ever worked with PHP includs or requires then you may eventually run intoan error message that looks similiar to this:
Fatal error: Cannot redeclare myfunction() (previously declared in /usr/local/www/myfile.php:48) in /usr/local/www/myfile.php on line [...]
Im taking a few days off of writing the blog, so I just want to wish every a Happy Thanksgiving!
read more...There will come a time in your experience in PHP that will require the use of a variable that remains the same for all functions. This variable should be called global and is best placed at the top of your PHP page in your variable declarations section. So, for example:
global $sitetitle;
$sitetitle = “Blazek Web Design”;
Now the [...]
Have you ever wished you could adjust how bold your font actually appears? In CSS, we are given this ability, but don’t get to excited because it doesn’t work as you expect. For example:
MY FONT (100weight)
MY FONT (200weight)
MY FONT (300weight)
MY FONT (400weight)
MY FONT (500weight)
MY FONT (600weight)
MY FONT (700weight)
MY FONT (800weight)
MY FONT (900weight)
As you can tell, [...]
I was working on a project yesterday that I found it necessary to create an auto-save feature do to the lengthy amount of text that would be entered into a text area. This is a little more complicated, but here it goes!
create.php
<?php
include ‘../../config.php’; //THIS FILE STARTS YOUR DB CONNECTION
if (isset($_POST["submit"])) {
$content = $_POST["content"];
$SQLsavearticle = “PUT [...]