.:: Jasa Membuat Aplikasi Website,Desktop,Android Order Now..!! | | Order Now..!! Jasa Membuat Project Arduino,Robotic,Print 3D ::.

How to Add YouTube Video in blogger

0 komentar



How to Add YouTube Video in blogger.



Blogger provide video upload for any blog post but what if you want to use some YouTube video. Directly you cannot do it but it doesn�t mean blogger does not support it. There is a simple tweak for this thing and you can do it very easily as 1, 2 and 3...

Here is the process in steps.

1. First open your desired video in YouTube

2. Now copy the code embedded video for webpage (highlighted in image)

3. Now open the blogger and edit or create a new post.

4. Decide where you want to show the video for example I have decide a line as in below screen shot.

5. Now click on Edit HTML ??



6. You will get a screen like this

7 Paste your copied embedded code just after your desired line or your desired location.

8 Now click on compose link and it will show you a place for video.

9 You can click on preview to see if this video is properly entered in your blog post or not before publishing it?



Here is an example for this







Hope it was useful for you

Thanks for being here

Suni

Track website traffic with Google Trends

0 komentar

When it comes to web services that track web site traffic we think of Alexa. But we know that Alexa and other like services could not really give us accurate statistics because they just compile third party data instead of looking at your actual server data.

Now Google has enters the game with Google Trends.Google gets its stats from a combination of sources like search traffic, anonymous Google Analytics figures, and other third party marketing data.

This is not to say that Google Trends can give more accurate stats than Alexa and other services but at least we have another point for comparison to get us nearer to what is accurate.

Suni

10 tips for securing your PC

0 komentar
  1. Update / patch ALL your software every now and then!
  2. Check / adjust ALL your settings so they are safe, since they ARENT by default!
  3. Use firewall, like ZoneAlarm!
  4. Use good passwords: at least 13marks long, containing both letters and numbers. Remember to chance your password every few months atleast!
  5. Get good anti-virus & Spyware softwares and keep it updated!
  6. Don�t open or execute files that you are not 100% sure are absolutely safe no matter where or how you get them
  7. Wipe your historyfiles (like cookies, internet history and temporary files, etc.), logs and personal files, with specific wiping program (like Eraser) instead of just deleting them.
  8. Use encryption to enhance your privacy! Use encrypted email (like Hushmail or Ziplip) and encrypt sensitive files on your computer (PGP).
  9. Don�t use public computers for anything you need to type in your logins, they usually have Trojan horses that capture your passwords.
  10. Don�t assume anything. If you don�t know, find out! If you cant or don�t understand, ask someone who knows! There�s nothing more dangerous than doing something you don�t really know anything about. That�s the best way to cripple your system or get a Trojan horse on your computer!
Suni

Data and Code at the Application Level

0 komentar

This week I would like to address the assertion that "code is data"
and how the application developer might benefit or be harmed by
this idea in the practical pursuit of deadlines and functioning
code. For some reason my essay written back in May, "http://database-programmer.blogspot.com/2008/05/minimize-code-maximize-data.html"
>Minimize Code, Maximize Data
got picked up on the blogosphere
on Thursday, and comments on "http://news.ycombinator.com/item?id=343633">ycombinator,
on "http://www.reddit.com/r/programming/comments/7927o/the_database_programmer_minimize_code_maximize/"
>reddit.com
, and on the post itself
have suggested the thesis is flawed or unworkable
because "code is data." Let's take a look at that.



Credit Where Credit Due



I first heard the thesis "Minimize Code, Maximize Data" from
"http://en.wikipedia.org/wiki/Neil_Pappalardo"
>A. Neil Pappalardo
. I consider it the "best kept secret in
programming" because I personally have found it to be almost
completely absent from my own day-to-day experience with other
programmers.



However, glomek over
at reddit.com also credits Eric Raymond with the following quote,
"Smart data structures and dumb code works a lot better than the
other way around."



Also, sciolizer
over on the >news.ycombinator.com comments area gives us these quotes from
some of the greats:




  • Fred Brooks: "Show me your flow charts and conceal your tables and I
    shall continue to be mystified, show me your tables and I won't
    usually need your flow charts; they'll be obvious."
  • Rob Pike: "Data dominates. If you've chosen the right data structures
    and organized things well, the algorithms will almost always be
    self-evident. Data structures, not algorithms, are
    central to programming."
  • Eric S. Raymond (again): "Fold knowledge into data, so program
    logic can be stupid and robust."
  • Peter Norvig: "Use data-driven programming, where pattern/action
    pairs are stored in a table."


And finally, Kragen Javier
Sitaker
left a comment on my original essay mentioning Tim
Berners-Lee and his theory of "least power." You can read a
description of that
here.



So Why Do They Say Code is Data?



The suprising answer is that code is data, in particular contexts
and when trying accomplish certain tasks.
The contexts do not
include application development, and the tasks do not involve
storing of customer information, but the fact remains true for
those who work in the right contexts.



As an example, at the bottom layer of the modern computer
are the physical devices
of CPU and RAM. Both the computer program being executed and the
data it operates on are stored in RAM in the same way. This is called
the
Von Neumann architecture
. Its a fascinating study and a programmer
can only be improved by understanding it. At this level code is
data in the most fundamental ways. There are many many other
contexts and tasks for which it is true that code is data.



But we who create applications for customers are separated from
Von Neumann by decades. These decades have seen a larger and larger
stack of tools that allow us to concentrate on specialized tasks
without worrying about how the tools below are doing their jobs.
One of the most significant sets of tools that we use allow us
to cleanly separate code from data and handle them differently.



The One and Only Difference



Trying to explain the differences between code and data is like
trying to explain the differences between a fish and a bicycle.
You can get bogged down endlessly explaining the rubber tire
of the wheel, which the fish does not even have, or explaining
the complexity of the gills, which the bicycle does not even
have.



To avoid all of that nonsense I want to go straight to what
data is and what code is. The differences after that are
apparent.



Data is an inert record of fact. It does nothing but sit
there.



A program is the actor, the agent, the power. The application
program picks up the data, shakes it, polishes, and puts it
down somewhere else (as in picking it up from the db server,
transforming it into HTML, and delivering it to a browser).



To repeat: data is facts. Code is actions that operate on
facts. The one and only difference is simply that they are not the same
thing at all, they are a fish and a bicycle.



Exploiting The Difference



All of the quotes listed above, and my original essay in May on the
subject, try to bring home a certain point. This point is simply
that the better class of programs are those that begin with
a distinction between fact and action, and seek first to organize
the facts and only then to plan the actions.



Put another way, it is of enormous practical advantage to the
programmer to fully understand that first and always he is
manipulating facts (data). If he ignores the principles of how facts are
organized and operated on, he can never reach his full abilities
as a programmer. Only when he understands how the facts are
organized can he see the clearest program designs.



And Again: Understand the
facts first. From there design your data structures. After that
the algorithms write themselves.



Minimizing and Maximizing



The specific advice to minimize code and maximize data is nothing
more than taking the idea to its logical conclusion. If I write
program X so that the data structures are paramount, and I find the
algorithms to be simple (or "dumb" as ESR would say), easy to write
and easy to maintain, don't I want to do that all of the time?



Conclusion



The wise programmer is one who can take the wisdom and theory
of the industry and correctly judge what is appropriate and
applicable and what is not. This is the programmer who has a shot
at keeping focused, making budget and making deadlines. He
knows when a generalized routine will support the overall
project and when to just code the case at hand and move on.



The unwise programmer is one who cannot properly apply a theoretical
concept to the correct context, or cannot judge the context in
which a concept is appropriate. He is the one who produces
mammoth abstractions, loses sight of the end-goals of the
check-signers and end-users, and never seems to be able to
make the deadline.



Of all of the advice I have received over the years, one of the
most useful and productive has been to "minimize code, maximize
data." As an application developer and framework developer it has
served me better than most.

Suni

Free Network Tool Software Downloads

0 komentar

Network Tools:
hese types of software is used for optimizing networks.
Here are some FREE Network Tools Software available :.

  1. CMDTime NTP Utility - http://www.softshape.com/download/
  2. Ethereal Protocol Analyzer - http://www.ethereal.com/
  3. NMap - http://www.insecure.org/nmap/
  4. Ntop - http://www.ntop.org
  5. PingPlotter - http://www.pingplotter.com
  6. PuTTY - http://www.chiark.greenend.org.uk/~sgtatham/putty
  7. RAS Graph & Stats - http://www.trvx.com/rasgs/
  8. RealVNC - http://www.realvnc.com/
  9. TightVNC - http://www.tightvnc.org/
  10. UltraVNC - http://ultravnc.sourceforge.net/
  11. WinSCP - http://www.winscp.com/
Suni

Broader release of IE 8 coming this summer

0 komentar
Although anyone can now download the Internet Explorer 8 browser, Microsoft is gearing this release for Web developers. However, a second beta, slated to arrive this summer, is aimed at a wider audience, Microsoft's top browser executive told CNET News.com.
"It's public," general manager Dean Hachamovitch said of the Beta 1 released Wednesday. "It's out on Microsoft.com somewhere. Anyone can download it."
Although features like Web Slices may appeal to consumers, Hachamovitch said that "the (current) beta really is for developers."







Microsoft isn't saying when the final version of the browser will be released. Hachamovitch also declined to say whether it will be released at the same time as Windows 7, the next version of Microsoft's operating system. He did note that Microsoft released IE 7 for XP ahead of Windows Vista, so it is technically possible to do so.

As was the case with the IE 7 betas, those installing the test version of IE 8 will have to replace their current browser.The IE 8 beta will run on both 64-bit and 32-bit versions of Windows Vista and Windows Vista SP1 as well as Windows XP Service Pack 2.
Suni

Great Tips For Browsers

0 komentar

Here's a great tip to speed up your browsing of Windows XP machines. Its actually a fix to a bug installedas default in Windows 2000 that scans shared files for Scheduled Tasks.And it turns out that you can experience a delay as long as 30 seconds whenyou try to view shared files across a network because Windows 2000 is usingthe extra time to search the remote computer for any Scheduled Tasks. Note thatthough the fix is originally intended for only those affected, Windows 2000 userswill experience that the actual browsing speed of both the Internet & Windows Explorersimprove significantly after applying it since it doesn't search for Scheduled Tasks anymore.

Here's how : Open up the Registry and go to : HKEY_LOCAL_MACHINE/Software/Microsoft/Windows/Current

Version/Explorer/RemoteComputer/NameSpace Under that branch, select the key :
{D6277990-4C6A-11CF-8D87-00AA0060F5BF} and delete it. This is key that instructs Windows to search for Scheduled Tasks.If you like you may want to export the exact branch so that you can restore the key if necessary. This fix is so effective that it doesn't require a reboot and you can almostimmediately determine yourself how much it speeds up your browsing processes.

Suni

Download Gameloft Brother In Arms

0 komentar

June 1944:
The Allies land on the beaches of Normandy to liberate the continent�You�ll have to show your brothers in arms how to face the terrible ordeals that await you so that they will follow you on the road to liberty�

Features (may vary by handset):

* The mobile version of the hit game for consoles and PC!!!
* Variety of weapons, environments and enemies never before matched on mobile!
* Pick-up-and-play system for immediate gaming fun.
* The first good WWII shooter for mobile, cinematic experience worthy of a Hollywood blockbuster.


Tested on Nokia N82 and working perfectly!


Original N73: http://rapidshare.com/files/10531062...0_0_Signed.zip
Original N80: http://rapidshare.com/files/10531075...0_1_signed.zip
Original N95: http://rapidshare.com/files/10531086...0_0_Signed.zip

Alternative

Brother InArms S60V3.rar


Brother In Arms N95,N96,N82 - S60V3

Brother In Arms S60 OS9 240x320

Brother In Arms For Nokia N73, N75, N76, N81, N82, N92, N93i, N95, E50, E51, E65, E90, 5700, 6110, 6120, 6121, 6210, 6220, 6290.
Suni

Download Gameloft Derek Jeter Pro Baseball 2008

0 komentar

Drill one deep with Derek Jeter! Super-fast action, revamped stadium
& hot tips from Derek himself.

Features (may vary by handset):

* The 4th opus of the best mobile baseball game!
* Super-fast gameplay providing the most exciting diamond action ever!
* Get ready for an entire season of baseball with the full 58-game season and playoff modes!
* Exclusive tips from Derek Jeter helping you become a better player in the game and in real life!
* Brand new revamped stadium with an electric atmosphere!



K700i/K750i/W800i/W810i/350i:
http://rapidshare.com/files/13955110...00__W350i_.jar

W600i: http://rapidshare.com/files/13955110...NONIGP_100.jar

Z750a: http://rapidshare.com/files/13955110...dT_MRC_100.jar

K300/J300i: http://rapidshare.com/files/13955110...03__J300i_.jar

K500/W200i/W300i/Z520i/Z310i/F500i:
http://rapidshare.com/files/13955110...00__F500i_.jar

K800i/K790i/S500i/W580i/G500:
http://rapidshare.com/files/13955111...105__G500_.jar
Suni

Download Gameloft NFL 2009

0 komentar

Experience the most authentic NFL simulation, 100% real teams, 100% real players

Features (may vary by handset):

* 100% authentic NFL experience: All the teams, all the players of the 2008-2009 season
* Improved AI that utilizes real NFL team-specific strategies
* Superior graphics providing the best NFL experience on mobile.
* Real 11 vs 11 action
* Full season mode including the Super Bowl XLIII in Tampa Bay


Nokia S40v2 128*160 Download Here

Nokia S40v2 240*320 Download Here

Nokia 128x128, 128x160, 176x208, 176x220, 240x320
Download Here
Suni

Remove Shortcut Arrows from Desktop Icon

0 komentar
  1. Start regedit.
  2. Navigate to the following registry value HKEY_CLASSES_ROOT -- > lnkfile
  3. Delete the IsShortcut registry value in the right pane.
  4. Reboot your PC.

Note:Before editing regisrty take a back up of regisrty.

Suni

Download Gameloft CSI: Vegas The Mobile Game

0 komentar


Join the CSI team in Las Vegas for an exclusive case!

* Exclusive plot written in collaboration with the creator of the TV series.
* Crack the case with the help of all the main characters from the show!
* Use the brand new 3D engine to examine objects from every possible angle.
* 5 original evidence-analysis mini-games: extract DNA, match pieces of a ripped picture and more!
* Experience the unique atmosphere of Las Vegas by night


Nokia 240x320: Save As Here
Suni

Multiple IP on single LAN card

0 komentar

Multiple IP on single LAN card


Yesterday I was taking an interview and I asked a simple question that how many IPs can be there on a single lan card and I was amazed because that guy answered me only one. In fact he was very good in network and hardware knowledge but then also he was not knowing this answer so I decide to right it on my blog that how many IP can be there on one LAN card and how to do that in windows machine.


On a single LAN card we can give 1024 IP yes 1024 IP it�s a different thing that we are not going to do it ever in normal case. What about limitation of Windows machine? In fact I also do not know about windows Maximum IP limitation but I have tested it with 32 IP on a windows Vista machine and it worked fine for all 32 IP on that machine.


Ok now let�s see how we can give more than one IP on a single machine


First open properties of your lan card select Internet protocol version and then click on properties button.



It will open you another window where you give your single IP. For providing one more additional IP what you need to do is just click on the advanced button and it will open one more window is advanced TCP/IP settings.



Here click on add and it will give one more prompt windows with heading TCP/IP address. In this window you can give additional IP and subnet mask ID.


You can give as much IP as you need to give by the same way.


Ok we gave multiple IP but what about the multiple Default gateways.


So for giving additional default gateways go to advanced TCP/IP setting again and this time click on the add button of Default gateways option


it will open a window named TCP/IP gateways address just give you default gateways address here and click on add you are done with this.



Needless to say you can give multiple default gateway in the same way.


OK now we are done with IP and gateways what about multiple DNS address on a single LAN card.

By default you can give 2 DNS address without any additional click but what if you need to give more than 2 DNS address then what to do?


Answer is simple just go to TCP/IP settings window again and click on DNS tabthan click on Add button.


It will open a TCP/IP DNS server window


just give your DNS server IP here and here you are done with this also.


Here you can prioritise your DNS server IP as per your requirement by appending them


Do contact me if you get any problem


I hope it was useful for you and you liked it


Thanks for visiting my blog.

Suni

Complete backup solution single tool

0 komentar

Complete backup solution by a single tool

I gave simple backup script in my previous post that could copy the data at backup location and it could zip it and rename it with current date but what if you want to have an incremental data backup or what if you want to copy something on your ftp server religiously for keeping something more secured. This time I am here with a solution that can not only backup or upload data but can do many other tasks also.



This is simple light weight software that can do Backup, Restore of backup, FTP Mirroring, uploading data on FTP, Download and copy the data from local computer as well as from network too. You can decide the time and priority for any task and you can schedule it.



The best thing with this tool is that you can back up the data not only on local machine but also on ftp as well as on DVD also.



If you need it you can download if from here for free.



I am using a downloaded version and I have no issue in using it.



I hope it was useful for you

Suni

"STOP� ERROR MESSAGES AT SHUTDOWN

0 komentar

Some users have gotten an error message similar to the following when attempting either to shutdown or restart Win XP:

STOP 0000009F, DRIVER_POWER_STATE_FAILURE
STOP 0x0000001E: KMODE_EXCEPTION_NOT_HANDLED
STOP 0x000000D1: DRIVER_IRQL_NOT_LESS_OR_EQUAL

TechNet and the Microsoft Knowledge Base have numerous articles discussing this type of error condition; for example, these. As a review of these articles will show, these are commonly device driver problems, but may also be caused by troublesome software (such as the notorious CrashGuard), or a problem in a system service. MSKB article Q262575 discusses a shutdown problem of this type, known to exist in Windows 2000 due to a resource (IRQ) conflict, if you have PACE Interlok anti-piracy software installed. This problem may occur in Windows XP as well.

Microsoft advises the following as one approach to these problems: Restart the computer. Press F8 during the restart and select �Last Known Good Configuration.� If you catch the problem when it first occurs (meaning you likely have installed only one or two drivers or new service), this will return you to a previous working condition. (Would System Restore accomplish the same thing? I don�t know, and don�t have a broken system to test it on.)

Microsoft reported similarly that these STOP code error message occur when Windows XP is trying to shut down devices. He says that he has seen this twice: once with Logitech Quickcam installed (with an unsupported driver), and once with a USB DSL modem that would hang if it wasn�t disconnected before shutdown.

Suni

The Best Online Travel Guide: TrustedTours.com

0 komentar

Tours in vacations brings happiness to all the people right from the childhood age to the old age. Even I love to go to the new places during summer and winter vacation. Last summer vacation we went for New York tour. As we all know it is the worlds famous city and it is the capital of America. In New York we visited many places, the best place i like is the Metropolitan Museum of Art. Its an art museum as am an architecture student i love that place there were thousand of paintings and sculptures.

There was major collections belonging to the Museum include arms and armor, Asian art, costumes, European sculpture and decorative arts, medieval and Renaissance art, musical instruments, drawings, prints, antiquities from around the ancient world, photography, and modern art.

Actually i found a site TrustedTours.com its a best site for tourists. They offer the tours to the city, you can visit this art museum for just 20$. There are many museums out there you can go their through TrustedTours with cheap rate like in $26 you can visit Madame Tussauds New York Wax Museum. This is also a great place in New York i found. With millions of things to do in New York City, there is only one place where over 200 of the world's top celebrities provide you with an interactive experience of a lifetime.TrustedTours provides you "Thing to do in New York" like you can have All Around Town Tour of New York in just $49. Just visit New York tour section in this site you can find the list of things to do in New York. TrustedTours provides you the best experience for your holiday vacations. You can also visit the Orlando which one of the best city i love to visit and the Cypress Gardens Florida is one of the best place in that city you can visit this place through TrustedTours for just $35

You can find online travel guides at trustedtours.com where you can have the safe tours. Are you planning your next vacation? if so, then sign up for the Trusted Travels Newsletter to win a $150 Magellan�s Gift Certificate.

Suni

Firefox is already running, but not responding

0 komentar

Firefox is already running, but not responding in Linux



Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system.



It was the error message on my fedora 7 machine that had Firefox 2 installed. I was able to launch Firefox in my root user account but I was not able to do so in my non root user account.



I am not Linux expert but I always believe you can search any solution as long as you know what you need to search so I just goggled for this and got the solution and cause of problem too.



Cause of the problem is a bug that is in Firefox since version 1.5 and its solution is simple delete the old profile and creates a new one. Here is the complete process in steps.



1) Login as non root user.

2) Press alt+f2 it will give you a small window.

3) In text field of this windows type Firefox �p

4) It will open Firefox profile window.

5) Delete or rename the existing all profiles.

6) Create a new profile and make it default.

7) Start you Firefox and here you go. It�s should work fine now.



I got this problem in Linux (Fedora) but doesn�t matter if you have same problem in windows solution is same in windows also for this problem



If you are in windows for step 2 instead of alt+2 please user windows key+r and rest all the process is same.



Do let me know if you face any issue in this.



Hope it was useful for you.



Thanks for visiting my blog

Suni

Tawk.to