Bookmarkinng Javascript solution

When you need this you can get it from me. On IuliuManiu.ro I implement on my own simple bookmarking solution that includes some social networks very used - faceboog, delicios, digg, twitter, reddit. What is nice on my bookmaring solution it is 100% customizable, it is javascript that means 100% controls when is about the behaviour of a click there and you can mask anything there (see my LinkExchange link in the bookmarking solution and my YouTube link); Also, because I have such a good control, I place there and the link that before was "powered by ...."  or "developed by..." [last link, after that space].

In this picture you can see some links on "follow us" section, after that my bookmarking solution and in the end "powered by pan-internet".

 

Bookmarking from pan-internet

For more informations, the code is here! And if you need help, let my know.


Posted by: admin
Posted on: 2/9/2010 at 2:52 AM
Tags: , , , ,
Categories: blog | Code | Community | network | SEO | WWW
Actions: E-mail | Kick it! | DZone it! | del.icio.us
Post Information: Permalink | Comments (0) | Post RSSRSS comment feed

XML and MS-DOS copy command

A bad combination. Why to use it? Because you need that XML. What can happens? Ugly thinks. Like what was happening to me: after executing this command in my XML there was a new character (that SUB), visible only in special editors:

copy command xml files error

The result is an invalid XML file. Untill now it was ok, this batch was working coreclty so it is posible that my computer has received some viruses or something goes wrong with my Windows. I didn't find the answer!

The solution is ... to not use copy; there is xcopy ms-dos command or robocopy [I didn't used it yet].


Posted by: admin
Posted on: 2/6/2010 at 3:48 AM
Tags: , , , , ,
Categories: Code | Programing | security | Windows
Actions: E-mail | Kick it! | DZone it! | del.icio.us
Post Information: Permalink | Comments (0) | Post RSSRSS comment feed

SQL Resources

Usefull and funny resources for SQL

Use delete with join

http://www.sqlservercentral.com/Forums/Topic493913-338-1.aspx

DELETE px
FROM #prodextend px
INNER JOIN #product p ON p.din = px.din
AND p.pkgSize = px.pkgSize
INNER JOIN #manu_clients mc ON mc.clientCode = p.clientCode


How to use in join in Update command

http://www.bennadel.com/blog/938-Using-A-SQL-JOIN-In-A-SQL-UPDATE-Statement-Thanks-John-Eric-.htm

UPDATE
b
SET
b.is_stud = 1
FROM
@boy b
INNER JOIN
@relationship r
ON
b.id = r.boy_id
INNER JOIN
@girl g
ON
(
r.girl_id = g.id
AND
g.name = 'Winona Ryder'
);


http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=100415


Posted by: admin
Posted on: 10/14/2009 at 4:17 AM
Tags: , , , , , ,
Categories: Programing | SQL | Code
Actions: E-mail | Kick it! | DZone it! | del.icio.us
Post Information: Permalink | Comments (0) | Post RSSRSS comment feed