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

This virtual machine is already in use

0 komentar

This virtual machine is already in use


Some times when you start you vmware virtual machine you get error that this virtual machine is already in use and you get amazed, because you are not using this machine. You did not turned on the machine and even you are getting this message.


So what�s the matter?


Generally this error occurs when you copy your virtual machine from one place to other place. For get rid of this message you just need to delete few files from your virtual machine folder and you are done with that.


Open your virtual machine folder where all files of your VMware virtual machine are there. You will get a folder like osname.vmx.lck. open this folder and delete all the .lck files of this folder. Now turn on the machine and you will not have any issue now to turn it on.


Suni

USB internet Data card modem on Linux

0 komentar

USB internet Data card modem on Linux

Here is procedure for connecting USB interent Data card on Linux box.



I have tested it on Reliance,Tata and BSNL card on linux.

1)Connect USB Data card on USB port of computer

2) Open a terminal window.

3) Log in as root, i.e. type �su -� sans the quotes and enter the root password.

4) "wvdialconf /etc/wvdial.conf" It will create a wvdial.conf file in etc directory (Please remove quote ).

5) Then use to edit the file �/etc/wvdial.conf�.(you can use any editor I would recommend gedit. Command would be �gedit /etc/wvdial.conf�).

6) Enter/edit the following text into this file.

[Modem0]

Modem=/dev/ttyUSB0

Baud=115200

SetVolume=0

Dial Command = ATDT

init1=ATZ

init2=AT+CRM=1

FlowControl= Hardware (CRTSCTS)

[Dialer Reliance]

Username= username

Password= password

Phone= #777

Stupid Mode= 1

Inherits = Modem0

7)Disable network connection of your computer

8) Final step is giving the command �wvdial Reliance�, and if everything is proper you should be able to connect to the internet.



For Tata: username and password is �internet� without quote

For Relianace : username and password is phone number of the device

For BSNL modem: its username and password is �cdma�



I used only three USB modem till this time but I hope it will work for all the USB modem.



Please let me know if you get any problem in your connection.



Do comment if you like it.

Suni

Download PCMAV 1.6 Build 1

0 komentar
Tidak ada antivirus lain yang mampu mengatasi dengan tuntas virus komputer, baik lokal maupun asing, yang banyak menyebar di Indonesia sebaik PCMAV.

Umumnya antivirus yang ada hanya mampu mengenali dan menghapus file yang dideteksi bervirus. PCMAV menyempurnakannya dengan keakuratan pendeteksian yang lebih presisi serta kemampuan menyelamatkan file, dokumen dan sistem yang menjadi sasaran serangan virus hingga kembali pulih 100%



Dengan PCMAV, Anda akan mendapatkan antivirus yang bukan hanya sekadar mendeteksi namun daya basminya yang tangguh mampu memburu 99.9% virus yang dikenal sampai ke "akar-akarnya" tanpa menimbulkan kerusakan pada file maupun sistem yang terinfeksi.



APA YANG BARU?
  • Ditambahkan, database pengenal dan pembersih 79 virus lokal/asing/varian baru yang dilaporkan menyebar di Indonesia.Total 2064 virus beserta variannya yang banyak beredar diIndonesia telah dikenal di versi 1.6 ini oleh engine internal PCMAV.
  • Diperbaiki, bug pada rutin yang bertugas untuk memeriksa kondisi suatuobject sebelum scan dilakukan, untuk memastikan bahwa PCMAV telahmendapatkan hak akses baca. Bug ini dapat mengakibatkan terganggunyakerja dari engine heuristic.
  • Diperbaiki, kesalahan deteksi pada beberapa aplikasi yang dikenalioleh USB Disk Filtering sebagai Virus Suspected.
  • Diperbaiki, bug pada engine GetUpdates yang terkadang kurang akurat dalam mendeteksi atau melakukan pengecekan terhadap file update baru.
  • Diperbaiki, kesalahan deteksi (false alarm) pada beberapa programataupun script.
  • Improvisasi, engine heuristic untuk Virus Suspected (RD). Kini,engine ini lebih akurat dalam mendeteksi sebuah object.
  • Improvisasi, user-interface dari USB Disk Filtering.
  • Diperbarui, perubahan beberapa nama virus mengikuti varian baru yang ditemukan.
  • Perbaikan beberapa minor bug dan improvisasi kode internal untukmemastikan bahwa PCMAV Cleaner & PCMAV RealTime Protector lebih dari sekadar antivirus biasa.

Download :

- Update Database Virus
- PCMAV 1.6 Build 1

Suni

Advanced Algorithm: Sequencing Dependencies

0 komentar

Some database applications require you to perform a series of actions
where you know only that some actions must be performed before others.
Before you can perform the actions, you must work out a safe sequence
that takes into account all of the dependencies. This week in The
Database Programmer we will see an algorithm for doing this.



Examples



There are many examples where a programmer must work out dependencies
before doing something.



A manufacturing package may track many steps in the manufacture of an
item. Some steps cannot be performed until others are complete. A
simple system would require the end-user to work out the entire process,
but a better system would let the user enter only the dependencies: which
processes require others to be complete. In this kind of system the
computer can be used to schedule manufacturing tasks.



All popular Linux distributions have a package installation system in
which each package lists its required dependencies. If you want to install
a large number of packages in one shot, producing a tangled bunch of
related dependencies, today's algorithm can be used to work them all out.



If you are using a data dictionary to build tables, every foreign key
represents a dependency, where the child table requires the parent table
to exist before it can be built. Today's algorithm can be used to
sequence the tables and build them in order.



Another database example is generating code to perform calculations.
Some calculations will depend on previous calculations, so your code
generator must be able to sequence them all so that the calculations
are performed in the proper order.



Big Words: Directed Acyclic Graph



The examples abvoe are all cases of what mathematicians call a "http://en.wikipedia.org/wiki/Directed_acyclic_graph"
>Directed Acyclic Graph
. If you do not want to read the entire
Wikipedia article, the main points are these:



  • We have a set of items. These can be anything you are keeping
    track of in your database.
  • Any item may be connected to zero or more other items.
  • The connection is one-way only. So if we say A requires B, we are
    not saying that B also requires A (in fact it is forbidden).
  • There can be no loops (cycles). If A requires B, B may not require A.
    Further, if A requires B, and B requires C, C may not require A.


Whenever I can, I like to point out that it is very useful to read up
on the mathematical foundations of certain programming techniques.
We can often pick up very useful insights from those who think of these
things at the most abstract level. It is also much easier to get
advice from the more abstract-minded database people if you are at least
marginally familiar with the mathematical terms.



The Tables



So now let us proceed to the tables and the code. The tables below
show a data dictionary that will be used to generate DDL to build
a database:




Table: TABLES

TABLE | DESCRIPTION | SEQUENCE
------------+------------------------+---------
ORDERS | Sales Orders Headers | ?
ORDER_LINES | Sales order lines | ?
CUSTOMERS | Customers | ?
ITEMS | Items | ?


Table: DEPENDENCIES

CHILD_TABLE | PARENT_TABLE
-------------+---------------
ORDERS | CUSTOMERS
ORDER_LINES | ORDERS
ORDER_LINES | ITEMS


The problem here is knowing the safe order in which to build the
tables. If I try to build ORDER_LINES before I have built ITEMS,
then I cannot put a foreign key onto ORDER_LINES, because ITEMS is
not there. In short, I need to know the value of the SEQUENCE
column in the example above.



The Expected Answer



The example above is simple enough that we can work it out by hand.
This is actually a good idea, because we want to get an idea of what
the answer will look like:




TABLE | DESCRIPTION | SEQUENCE
------------+------------------------+---------
ORDERS | Sales Orders Headers | 1
ORDER_LINES | Sales order lines | 2
CUSTOMERS | Customers | 0
ITEMS | Items | 0


This answer should be self-explanatory, except maybe for the fact that
both CUSTOMERS and ITEMS have the same value. We need to look at that
before we can see the code that produces it. Is it OK that two entries
have the same value, and how would our program handle that?



The short answer is that it is perfectly OK and natural for two or more
entries to have the same value. All this means is that they can be done
in any order relative to each other, so long as they are done
before the other entries.



In terms of the example, where we want to build these tables in a
database, it means that:



  • We would query the list of tables and sort by SEQUENCE
  • We would loop through and build each table
  • We don't care about ITEMS and CUSTOMERS having the same value,
    they get built
    in whatever which-way the server gives us the list.


The same concept applies to the other potential examples: manufacturing,
software packages, and generating calculations. So long as you follow
the sequence, we don't care about items that have the same value.



Stating the Solution in Plain English



We are now ready to work out a program that will generate the SEQUENCE
column. The basic steps the program must perform are:



  1. Initialize the column to -1. A value of -1 means "Not sequenced."
  2. Update the column to zero for all items that have no dependencies.
  3. Repeat the following action until the affected rows are zero:
    Update the SEQUENCE column to 1 (then 2, then 3) for all rows
    that have all of their dependencies sequenced already.

  4. Once the command in step 3 is no longer affecting any rows,
    check for any rows that have -1, these are involved in
    circular dependencies and we cannot proceed until the
    user straightens them out.


Stating the Solution in Code



The first step is very easy, we initialize the table with this command:




UPDATE TABLES SET SEQUENCE = -1;


The next step is also very easy, we mark with a '0' all of the
tables that have no dependencies. The basic idea is to find all of the
entries that have no entries in DEPENDENCIES.




UPDATE TABLES SET SEQUENCE = 0
WHERE NOT EXISTS (SELECT child FROM DEPENDENCIES
WHERE child = TABLES.TABLE)


Now for the hard part. We now have to execute a loop. On each pass
of the loop we are looking for all items whose dependencies have
all been sequenced.
We will do this over and over until the command
is not affecting any rows. It is important that we cannot exit the
loop by testing if all rows are sequenced, because a circular dependency
will prevent this from happening and we will have an infinite loop.



You can control this loop from client code, but I wrote mine as a
Postgres stored procedure. This algorithm turns out to be surprisingly
complicated. The UPDATE command below may not be all that
self-explanatory. What it works out is:



  • Get a list of child tables from the DEPENDENCIES table
  • JOIN through to TABLES to look at the SEQUENCE value
    of their parents.
  • Group and check that the minimum value is greater than zero, if
    it is it means all parents are sequenced and the table can
    be sequenced.
  • Update the SEQUENCE value for the tables we found



CREATE OR REPLACE FUNCTION zdd.Table_Sequencer() RETURNS void AS
$BODY$
DECLARE
-- Note that rowcount is initialized to be > 0, this makes
-- the loop work properly
rowcount integer := 1;

-- This tracks the value we are assigning to SEQUENCE. We
-- initialize it to 1 because we already took care of the
-- the rows that have value 0
lnSeq integer := 1;
BEGIN
while rowcount > 0 LOOP
UPDATE tables set SEQUENCE = lnSeq
FROM (SELECT t1.CHILD
FROM DEPENDENCIES t1
JOIN TABLES t2 ON t1.PARENT = t2.TABLE
GROUP BY t1.CHILD
HAVING MIN(t2.SEQUENCE) >= 0
) fins
WHERE TABLES.TABLE = fins.CHILD
AND TABLES.SEQUENCE = -1;

lnSeq := lnSeq + 1;
GET DIAGNOSTICS rowcount = ROW_COUNT;
END LOOP;

RETURN;
END;
$BODY$
LANGUAGE plpgsql;


The stored procedure above will stop executing once the UPDATE command
is no longer having any effect. Once that happens, your final step is
to make sure that all rows have a valid SEQUENCE value, which is to say
that no entry has SEQUENCE of -1. If any of the rows have that value
then you have a circular dependency. You must report those rows to
the user, and you can also report the dependencies that are causing
the loop.



Conclusion



Sequencing dependencies is a fundamental algorithm that has a lot of
use cases in database applications. It is easy enough to accomplish,
but the innermost UPDATE command can be a little puzzling when you
first look at it. Once you have mastered this algorithm you are on
the way to the "big leagues" of database applications such as ERP,
MRP and others.



Next Essay: "http://database-programmer.blogspot.com/2008/09/advanced-table-design-secure-password.html"
>Secure Password Resets

Suni

BSNL EVDO Internet data card

0 komentar

BSNL EVDO Internet data card speed Upto 2MBPS

Back one year BSNL Launched 3G technology internet data card for giving 2 mbps internet connection on wireless technology, that too in only in INR 500. They launched this service long back but they start selling it just few days back.



I am using this internet data card since one month and I got really amazing speed on this data card. At-least in India this is the fastest and most stable connection till this time that I have used. I used TATA,Reliance and Airtel internet data card but neither of those were stable nor good speed.



I got its maximum speed till 1.2 mbps in good condition. Speed varies from location to location. At my room I get average speed 512kbps, maximum speed goes to 1.2mbps and most of the time speed varies betweeb 500 kbps to 700kbps. At my office I get average 250kbps speed nad maximum speed till 800kbps It varies between 250 to 400kbps.



Good things about BSNL Data card.

1) Up to 2 mbps speed.

2) Documentation only as much as you need to get a fixed line phone.

3) Available on rent.

4) Only in INR 500 you get unlimited internet connection with a good speed.



Bad things About BSNL data card

1) Roaming is not there with it till this time. (As per official nce they got infrastructure over entire country they will make it roaming.)

2) On wireless so sometime problem occurs (not reliable as fixed line but more reliable than other provider in India).



Its usage is very simple.



Just Install->change the user name password->connect



Yes it�s like this only it works with windows XP as well as windows Vista also. For Vista they will give you an aditional patch.I have not tested it on Linux or Mac but I am sure it would work because it just need a dialler and in Linux and Mac you can use wvdial for dialling internet connection (on Linux I have tested Tata and Reliance USB internet data card, will post that soon here) I will test it and I will share the result.



One thing that you need to remember if they haven�t told you username and password you will be in trouble. You may not get it on any website or forum. Its username and password both is CDMA.I got the same problem after taking the connection and I found solution after reaching to their office only. On web I found use phone number and It was bullshit reliance user might have thrown a guess with that answer.

Suni

Web Application Projects - Publish Options

0 komentar

In Web Application Projects (WAPs) we have the following Publish Dialog box.

image

 

It has the target location text box which takes destination to be HTTP (which uses Front Page Server Extensions (FPSE) behind the scenes), FTP, or File System.

Publish settings also allows you to have a clean install or just incremental updates.  Although what is interesting to notice are the various Copy options.  Let us try to understand what these mean:

  • Only files needed to run this application - In a WAP we usually have a Project file, User File,  Bin folder, Obj Folder, ASP.NET pages, User Controls, WCF and Web Services etc.  ASP.NET Pages and other similar files have two additional artifacts in a WAP project as shown below:

image When you build the WAP project the sources from both the .aspx.cs as well as .aspx.designer.cs files are taken and compiled into the intermediate output folder (i.e. OBJ folder) and then finally moved to the (BIN folder)...   

You do not really need the Project Files (.csproj/.vbproj); User File (.user)  to run your web neither do you need any of the code behind or designer files as they are compiled into your Bin folder.  At the same time you also do not need the OBJ folder as that is just the intermediate folder VS uses before produces the final output in the BIN folder.  Based on this rationale VS removes all those files from the publishing process and only publishes the files which are required to run your application (which are your .aspx and other similar markup files), your referenced DLLs and your bin folder.

  • All Project Files - Based on the above discussion it is apparent that your code behind and designer files are part of your project, so are your .user and .csproj/.vbproj...  If you select this option then your entire project with these files is published to remote location.  You can usually use this option to move your working project to any remote location and get working on it without having to do a physical copy of select files.  If you want to share your project with your friends over FTP this is a good option to use. Do note Publish feature does not publishes OBJ folder as it is not a folder that a user should really be worried about, it is just for temporary compilation use.
  • All files in the source Project Folder - Many a times users chose to exclude files from their projects by choosing the "Exclude From Project" command

image

This command essentially removes the artifact from the Project File, although do note that these files are still present in your source project folder.

Apart from this many a times users want to add help files, read me files, references docs (e.g. requirements doc) and other misc items in their project folder while they do not really want to publish these artifacts most of the time.

By choosing "All files in the source Project Folder" you can take all these files (excluding OBJ) folder and transfer it to any remote location via HTTP, FTP or simple disk IO to a UNC location.

The above three options kind of provides all the dials for a user to choose the appropriate publish option applicable to them.

  • Include files from the App_Data folder - App Data folder might potentially contain huge files and sensitive data, hence it is given a special status and you can choose whether or not you would like to publish your App_Data folder or not.  It is selected by default as VS assumes that you need the Data to run your application but if you really do not have anything in the App_Data folder or if you are hoping to use SQL Server in production (as opposed to MDF files & SQL Express during development) then you should go and uncheck this box.

Hope this summary of "Publish" feature for Web Application Projects helps...

Suni

Download Laptop Alarm 1.21

0 komentar
"With this Software, you can leave your laptop safely for a while."

Brothersoft Editor: Did you ever hesitate to leave your laptop for a few minutes in a public space like a library? Afraid that someone will take your laptop? Now there is a simple and free solution to this problem! Laptop Alarm will emit a loud alarm whenever someone tries to steal your laptop!



License: Freeware Free
OS: Windows Vista, 2003, XP
Requirements: No special requirements
Publisher: info@syfer.nl More Products
Homepage: http://www.syfer.nl/

Download : Click to Download



Suni

View your Adsense Earnings from your Mobile Phone

0 komentar

View your Adsense earnings from your mobile phone, anywhere, anytime.Wapsense is a php script available for download in a zip file.

Download Wapsense Script

INSTRUCTIONS:

  1. Edit the 3 main variables.
  2. Create a directory in your public html called eg. private
  3. Password protect this directory with .htaccess!
  4. Upload wapsense.php in ASCII mode to this directory.
  5. Visit http://www.yoursite.com/private/wapsense.php on your mobile phone.

Website : http://www.scriptsocket.com/wapsense.php


Suni

Forex Strategy Builder

0 komentar
How about making better investments on the Forex market
What would you say if you could test your trading strategies using real market data dating back to 199...? Forex Strategy Builder gives you this opportunity for Free.


Market: EURUSD 1 Day Account balance: 8317 pips


What would it be like if you could see how your strategy would actually work on the market and what profit or loss it would have made, had you used it in the previous months (including your broker's fees)? No task is easier for Forex Strategy Builder.


Make reliable back test of your trading systems!

How is it possible for one trading system to show excellent results in the historical test and still lead to a catastrophic outcome in real trade? Using this free software will help you easily recognize the pitfalls of testing forex trading systems. It recognizes all ambiguous bars in the back test, protects you from curve-fitting and finds the average balance line between all possible market scenarios.


Wrong Logic

Real Result






The most common mistake in back testing can be easily avoided.

It is advantageous that Forex Strategy Builder is being continually updated and you can partake in its shaping in the way you prefer. So, feel free to share with us the things you believe can be improved, and be certain that we will follow your recommendations in the next versions. This program aims at making the process of creating profitable strategies, based on technical analysis, an easier task.

While you are not on the real market, do not hesitate to test all strategies or combinations of technical indicators you can think of, in order to gain more experience and understanding of how the different logics and parameters influence the foreign exchange trading.

Use this free forex software

This forex software is absolutely free. It is not necessary to pay money or to make any registration. You can start testing your trading system with historical market data right now.
Step into the world of Forex Strategy Builder. It is 100% Free forex software.

Visit our download page. You can find installation hints, download links, system requirements and other useful information there.

Website : http://forexsb.com/

Download: Forex Strategy Builder

Suni

Download ActivIcons 5.0

0 komentar

"Change the Windows default desktop icons/cursors, restore desktop positions, etc"

BrothersoftEditor, ActivIcons allows you to customize the Windows desktop icon and cursor attributes. Includes the functions you need whether you want to use animated icons on your desktop, or just to replace icons for Network Neighborhood, My Computer, and other icons which Windows places on your desktop and Explorer file manager. It also lets you quickly change the default Windows mouse cursors, make the icon text labels transparent, change the color of desktop icon text descriptions, replace the Windows startup and shutdown screens, rebuild and/or purge the Windows icon cache, increase the size of the Windows desktop cache, replace various drive and folder icons, remove shortcut symbols, restore the desktop default icons, save/restore the positions of desktop icons, change or hide the Start button, replace the IE and OE logo animations, change Favorites icons, and more.Features:

switch your own, custom icons for Network Neighborhood, My Computer, and other icons which Windows places on your desktop and Explorer file manager; quickly change the default Windows mouse cursors; make the icon text labels transparent; change the color of the text below the icons; change the "Start" button graphic and text; hide the "Start" button; rebuild the Windows icon cache; increase the size of the system icon cache; replace various drive and folder icons (both the default icons and individual drive and folder icons*); remove shortcut symbols; use animated icons on the desktop; hide all desktop icons; change "Favorites" icons; save and restore your desktop's icon layout; replace Internet Explorer and Outlook Express's animated logos; change Windows startup and shutdown screens (backs up the originals);

License: Freeware Free
OS: Windows XP, 2000, 98, Me, NT
Requirements: No special requirements
Publisher: CursorArts Company More Products
Homepage: http://www.cursorarts.com/

Click to Download



Suni

Tempat Request Sobat Nih

0 komentar


Nah Bagi Siapa Aja Yang Mau Request Code Program,

Silahkan Ajukan Permintaan Kalian Disini, Ntar Kalo Ada Akan Sy Post Disini Atau Akan Saya Kirim Langsung Ke Email Anda.


Suni

Turn Calculator Into A Metal Detector

0 komentar


Are you believed with this video ? I got it from youtube last.
I don't understand how possible three things can make effect like metal detector. Well, i'll try at home later, cause i must find AM Radio, Walkman Tape, and Calculator to practice that video :P
Suni

Info Metal Detector Schematic

0 komentar

Many visitor at my blog frequently asked about metal detector, how to build it easy at home. He3 ... may be habits to find treasure become new hobby. Weeww ... who knows at your back yard at home in deep underground a treasure box filled with gold coin latent without we know.

Disini saya akan menampilkan list link dan rangkaian tentang metal detector schematic, sama saja dengan Anda, saya juga masih belajar dalam membuat metal detector ini. Faktor kesulitan dalam membuat metal detector adalah coil sesuai, baterai, dll. Karena soal frekuensi memang labil kalau tidak tepat membuatnya. Semoga artikel ini menjawab semua pertanyaan yang masuk ke email saya.


Find Metal Detector Schematic Here

1. Metal Detector Schematic








2. Metal Detector at electronics-lab
3. Metal Detector at Yuri Kolokolov
4. Metal Detector at Hobby-hour
5. Free Metal Detector Schematic
6. Comercial Schematic at Geotech
7. Schematic at Geotech Forum
8. Metal Detector at Matni
9. Metal Detector on Talking Electronic
10. Compas Metal Detector Forum at Nabble
11. Metal Detector Geo BandidoIIuMax
12. Metal Detector BFO
13. Pulse Induction Metal Detector
14. Project Metal Detector and other at telus
15. Metal Detector with IC TDA 2822
16 Geotech Treasure
17. One coil metal detector
18. Proscan Pulse Induction Metal Detector
19. Geotech Forum Other
20. Metal Box Detector
21. Simple Metal Detector By Steve and Rachel Hageman
22. Simple Metal Detector By Steve and Rachel Hageman II

Also Schematic :
1. nina foxdelta
2. zen22142
3. Freeinfosociety
4. Beat Balance metal detector
5. Coil Coupled Operation Metal Detector

If you have another metal detector schematic, you can share with other people to discuss with comment or send email to me.
Suni

Tawk.to