Vladimir CveticVladimir Cveticday to day by geekis web developer and marketing consultant
Articles:
1, 2
Articles
Ubuntu: Mounting remote directory, ssh
2008-05-30 11:12:00 $sudo apt-get install sshfs Will install fallowing: fuse-utils and libfuse2 When sshfs is installed: $sudo mkdir /path/to/mount/point $sudo chown your-username /path/to/mount/point $sshfs ssh-username@ssh-server.com:/target/dir /path/to/mount/point Thats it. To unmount just type $sudo umount /path/to/mount/point Share This More About: Ubuntu , Directory , Remote
Age of Conan
2008-05-19 11:52:00 So... I started playing Age of Conan ... Compare AoC to WoW and see why... More About: Age of Conan
Recursively add files to CVS
2008-04-04 12:59:00 Linux shell command, recursive cvs add: cvs -qn update | grep -v CVS | xargs cvs add or even find . -type d -print | grep -v CVS | xargs cvs add find . -type f -print | grep -v CVS | xargs cvs add Share This More About: Programming , Files
Mozilla: ?event is not defined?
2008-03-24 12:28:00 One of most common event related questions I got is about error in Mozilla browsers “event is not defined”. IE and Mozilla treat event variable differently, while in IE it is a global variable (accessible without passing it to the function) in Mozilla you need to pass it every time (which btw is by w3c standards). Example ... More About: Event , Java , Script , Defined
Cross-Site XMLHttpRequest
2008-03-18 16:04:00 I’ve just finished writing up some docs on the new Cross -Site XMLHttpRequest feature in Firefox 3. I was a little worried at first, but it definitely appears to be both easy-to-implement and easy-to-use. Specifically, it’s an implementation of the W3C Access Control working draft (which is respected by Firefox’s XMLHttpRequest). If you’re interested in giving it ... More About: Java , Script , Ajax
Common validation regular expressions
2008-01-24 10:48:00 All regular expressions are tested with php function eregi Validate E-Mail, Validate URL and Validate Date/Time. More About: Programming , Validation , Common , Expressions , Regular
Common validation regular expressions
2008-01-24 10:48:00 All regular expressions are tested with php function eregi Validate E-Mail, Validate URL and Validate Date/Time. More About: Programming , Validation , Common , Expressions , Regular
In my Javascript I keep getting ?submit is not a function?. What did I do?
2008-01-11 15:17:00 If you have a Javascript function, doing some form validation for example, and at the end, it will submit the form, and it suddenly stops working, throwing up an error message in the console box that reads “submit is not a function” then you have probably mis-named one of your form fields. The most common being ... More About: Submit , Function
In my Javascript I keep getting ?submit is not a function?. What did I do?
2008-01-11 15:17:00 If you have a Javascript function, doing some form validation for example, and at the end, it will submit the form, and it suddenly stops working, throwing up an error message in the console box that reads “submit is not a function” then you have probably mis-named one of your form fields. The most common being ... More About: Submit , Function , Something Else
Experiment: JS News Sticker
2007-09-04 15:55:00 Yesturday I saw this neat news sticker in Flash and decided to try and do it in JS. Actualy it was very easy… Create list with title, description and background image and it will display like so: News Sticker Demo Bah, nuf talk look at it and I hope someone finds it usefull Share This More About: Java , Experiment , Script
Experiment: JS News Sticker
2007-09-04 15:55:00 Yesturday I saw this neat news sticker in Flash and decided to try and do it in JS. Actualy it was very easy… Create list with title, description and background image and it will display like so: News Sticker Demo Bah, nuf talk look at it and I hope someone finds it usefull Share This More About: Java , Experiment , Script , Peri
How to: Getting freelance projects
2007-09-03 12:56:00 I am not going to talk about sites like rentAcoder or similar sites, but will try to give you insight in how to attract clients (let them come to you) Knowing your clients Clients are everywhere, on your favorite forum, social network even your own blog. You may not know it and they may not know it ... More About: Projects , Freelance
How to: Getting freelance projects
2007-09-03 12:56:00 I am not going to talk about sites like rentAcoder or similar sites, but will try to give you insight in how to attract clients (let them come to you) Knowing your clients Clients are everywhere, on your favorite forum, social network even your own blog. You may not know it and they may not know it ... More About: Projects , Freelance
Guide to simple Database Abstraction
2007-08-27 11:31:00 A database abstraction layer is an application programming interface which unifies the communication between a computer application and databases such as MySQL, Oracle or SQLite. Traditionally, all database vendors provide their own interface tailored to their products which leaves it to the application programmer to implement code for all database interfaces he would like to ... More About: Programming , Database , Guide , Simple
Guide to simple Database Abstraction
2007-08-27 11:31:00 A database abstraction layer is an application programming interface which unifies the communication between a computer application and databases such as MySQL, Oracle or SQLite. Traditionally, all database vendors provide their own interface tailored to their products which leaves it to the application programmer to implement code for all database interfaces he would like to ... More About: Programming , Database , Guide , Simple , Trac
Helping AdSense focus
2007-08-24 12:38:00 To cut the long story short… If you are not satisfied with ads showing in AdSense unit on your page you can help AdSense bot by telling it wich part of the page is most important. Some content… Blog story, news, title or whatever you want. Share This More About: Marketing , Adsense , Focus
Helping AdSense focus
2007-08-24 12:38:00 To cut the long story short… If you are not satisfied with ads showing in AdSense unit on your page you can help AdSense bot by telling it wich part of the page is most important. Some content… Blog story, news, title or whatever you want. Share This More About: Marketing , Adsense , Focus
JavaScript: PopupGUI 0.1
2007-08-20 17:06:00 Few days ago I have created very simple JS class for creating popup html forms. Task was pritty specific, create dynamic form interface with ajax form submission. Apon completition of the task I noticed that the class was pritty much plug&play so I decided to publish it here. It has simple controls, you can show, hide and ... More About: Javascript
JavaScript: PopupGUI 0.1
2007-08-20 17:06:00 Quick drop for now, just download link will write more tomorrow i guess. REQUIREMENTS: script.aculo.us 1.7.0 (script.aculo.us) DEMO: View Simple Demonstration DOWNLOAD: PopupGUI 0.1 This work is licensed under a Creative Commons Attribution-Share Alike 3.0 License. More About: Javascript
JavaScript: PopupGUI 0.1
2007-08-20 17:06:00 Few days ago I have created very simple JS class for creating popup html forms. Task was pritty specific, create dynamic form interface with ajax form submission. Apon completition of the task I noticed that the class was pritty much plug&play so I decided to publish it here. It has simple controls, you can show, hide and ... More About: Java , Script , Javascript , Ajax
PHP Function: check_parameter()
2007-07-13 13:59:00 Checks whether the named parameter exists. Optionally, type of the parameter can be checked and the default value can be provided, to be used if the parameter does not exist. In case of some problem, an error message will be printed and page terminated. @param $name string Name of variable to check. @param $type ... More About: Function , Meter
Wordpress Plugin: ContentGen+
2007-04-24 14:12:00 I have just released another plugin for wordpress. You can get more info at: http://www.knowbies.com/contentgen/ ContentGen+ is content generator for Wordpress . It comes in form of a plugin. Main characteristics of ContentGen+ are ease of use, simple installation and hight performance. To improve reliability all content is cached thus making it run very fast. Share This More About: Wordpress Plugins , Plugin
Wordpress Plugin: ContentGen+
2007-04-24 14:12:00 I have just released another plugin for wordpress. You can get more info at: http://www.knowbies.com/contentgen/ ContentGen+ is content generator for Wordpress . It comes in form of a plugin. Main characteristics of ContentGen+ are ease of use, simple installation and hight performance. To improve reliability all content is cached thus making it run very fast. More About: Plugin , Tent
Wordpress Plugin: ContentGen+
2007-04-24 14:12:00 I have just released another plugin for wordpress. You can get more info at: http://www.knowbies.com/contentgen/ ContentGen+ is content generator for Wordpress . It comes in form of a plugin. Main characteristics of ContentGen+ are ease of use, simple installation and hight performance. To improve reliability all content is cached thus making it run very fast. More About: Plugin , Plug , Tent
aDsense avenue - AdSense Profit search engine
2007-04-20 14:33:00 I have just released aDsense avenue software. Basicly it is search engine created from various sources (msn, yahoo!, google, blog feeds etc) which incorporates most modern SEO tehniques to generate organic search engine visits. Content scraped from these sources and user defined RSS feeds is automatically rated by software so only the best possible content has ... More About: Marketing , News , Programming , Adsense , Search Engines
aDsense avenue - AdSense Profit search engine
2007-04-20 14:33:00 I have just released aDsense avenue software. Basicly it is search engine created from various sources (msn, yahoo!, google, blog feeds etc) which incorporates most modern SEO tehniques to generate organic search engine visits. Content scraped from these sources and user defined RSS feeds is automatically rated by software so only the best possible content has ... More About: Adsense , Search , Search Engine , Profit , Prof
aDsense avenue - AdSense Profit search engine
2007-04-20 14:33:00 I have just released aDsense avenue software. Basicly it is search engine created from various sources (msn, yahoo!, google, blog feeds etc) which incorporates most modern SEO tehniques to generate organic search engine visits. Content scraped from these sources and user defined RSS feeds is automatically rated by software so only the best possible content has ... More About: Adsense , Search , Search Engine , Profit , Engine
Google Grants - Free Advertising for Open Source Non-profits
2007-04-04 13:10:00 Generating awareness and driving new users and developers to your project’s website can be hard for any organization. It can be even harder for open source projects with limited marketing funds. Programs like Google Summer of Code can really help raise awareness of your project, but you may want to learn about another Google program ... More About: Rants , Open Source , Advertising , Open
Google Grants - Free Advertising for Open Source Non-profits
2007-04-04 13:10:00 Generating awareness and driving new users and developers to your project’s website can be hard for any organization. It can be even harder for open source projects with limited marketing funds. Programs like Google Summer of Code can really help raise awareness of your project, but you may want to learn about another Google program ... More About: Marketing , Open Source , Search Engines , Advertising
Google Grants - Free Advertising for Open Source Non-profits
More articles from this author:2007-04-04 13:10:00 Generating awareness and driving new users and developers to your project’s website can be hard for any organization. It can be even harder for open source projects with limited marketing funds. Programs like Google Summer of Code can really help raise awareness of your project, but you may want to learn about another Google program ... More About: Open Source , Advertising , Open , Free 1, 2 |



