I am writing a application that monitor the system's health, user should know when they need to defrag the volumes.
What I am thinking is calling the "defrag.exe /A" then analyze the output result to see whether it contains "You do not need to defragment this volume."
But it's slow and very bad, I fount that the "Analyze" is really quick on the MyDefrag.exe.
Anyone could tell me what's the best and simplest way?
i have this super manual:
http://www.arib.or.jp/IMT-2000/V710Dec08/5_Appendix/R99/27/27005-320.pdf
i dont understand whether it is for every phone or just a certain subset
i would like to know what i need to get started to have my computer speak to the phone
i am ready to write in c#, c++, or what ever they need
has anyone had experience writing AT commands?
Hi! I'm writing a little website (webapp) in php+codeigniter, I'd really like to make it open source (to attract collaborators and to have a free VCS hosting).
Is that a good practice?
This mine security?
Which are the best tools to change important data before uploading? (like config files with db names and passwords used for testing etc..)
I'm writing my own sessions controller that issues a unique id to a user once logged in, and then verifies and authenticates that unique id at every page load. What is the most secure way to generate such an id? Should the unique id be completely random? Is there any downside to including the user id as part of the unique id?
Hi,
Is there any good way (and a simple way too) using boost to read and write xml files?
I can't seem to find any simple sample to read xml files using boost? (can you point me some simple sample that use boost for reading and writing xml files)
If not boost, is out there any good and simple library to read and write xml files that you can recommend? (it must be a c++ library)
Thanks
Nuno
i am writing a visual basic ide , and i need to add lines numbers to QTextEdit and highlight current line . i have found this tutorial but it is written in java and i write my project in c++
so where to find tutorial like that in c++ , or if there is a ready to use component ?
thanks .
I'm writing a small program with the OpenSSL library that is suppose to establish a connection with an SSLv3 server. This server dispenses a self-signed certificate, which causes the handshake to fail with this message: "sslv3 alert handshake failure, self signed certificate in certificate chain."
Is there a way I can force the connection to proceed? I've tried calling SSL_CTX_set_verify like so:
SSL_CTX_set_verify(ctx, SSL_VERIFY_NONE, NULL);
But it does not seem to change anything.
Any suggestions?
I'm writing a navigator program for a GPS device running .NET Compact framework. This program constantly loads and draws maps (from .PNG files), based on coordinate of the GPS. I want it to do this smoothly. Is there any tips/techniques to do this?
Thanks in advance.
Following reading various questions on reading and writing Streams, all the various answers define something like this as the correct way to do it:
private void CopyStream(Stream input, Stream output)
{
byte[] buffer = new byte[16 * 1024];
int read;
while ((read = input.Read(buffer, 0, buffer.Length)) > 0)
{
output.Write(buffer, 0, read);
}
}
Two questions:
Why read and write in these smaller chunks?
What is the significance of the buffer size used?
Hi,
I know that there are few open sourced / Free BI projects and I am looking recommendations.
I have a growing Mysql database that i got tired from writing sql queries + gui + filtering over and over again.
if i am not able to find a free one than my budget will be: (1$ - 2500$ )
My needs are:
Mysql 5 Connection.
user permissions
export options
Basic Dashboard
--
nice to have:
Web Based GUI
Development framework integration in PHP
Rather than just writing a new function called import() i'd like to know if there's a better solution. Otherwise require_once would be included in the scope of import() only, which is bad for any "global" variable there.
My import() function would work differently than require_once, but serves the same purpose (enhanced usability).
Im using Java to create a maze of specified "rows" and "columns" over each other to look like a grid.
I plan to use a depth-first recursive method to "open the doors" between the rooms
(the box created by the rows and columns).
I need help writing a openDoor method that will break the link between rooms.
I'm writing an essay about ORM and SubSonic and I'm looking for some details regarding the project history (initial release, milestones, etc).
Anyone knows where I can find it? anyonce can give me a quick briefing?
Thanks
I'm looking for implementations of lock-free containers:
Blocking Queue
Blocking Stack
Hash Map
etc...
Are there any good libraries out there? I would like to refrain from writing these data structures... I would much rather use something that has been tested by the community.
Hello all,
I'm writing an R package that's going to be used by others, so I'm trying to get this one right ! I want to use roxygen for documentation and runit for unit testing, but I haven't used them before.
Can anyone suggest any packages (either on CRAN or elsewhere) that use either of these tools well ?
For my project(in asp.net) i wrote near 1000 lines of c# code for one asp.net page.It includes so many functions.The problem is,it is going complicated while i am writing more codes on one page.How can i make multiple c# files for one asp.net page?? I tried by adding new class in VS2008.But calling a function from one file to other is making error(item is not present in current file).How can i do that??
Don't know if this is possible, I am looking a writing social network-esque code but need a bit of help.
SELECT wall.Wid, wall.uid, wall.wcomment, wall.name, comment.wid, comment.comment,comment.wid
FROM wall
LEFT JOIN comment ON wall.Wid=comment.wid
WHERE wall.uid in (SELECT fid from friends where uid = 3)
Cheers guys
I'm reading about Red Gate SQL Backup, and I liked the concept of creating a database backup compressed and writing on disk the compressed backup directly without an intermediate SQL Server native backup.
And I'm wondering how this type of software make backups. It accesses the database files directly? It uses some sort of SQL Server or Windows API? Windows Shadow Copy?
I'm working in GraphEdit to capture video from a Pinnacle PCTV card, in preparation for writing a program that will do the same, among other things.
What, precisely, is the meaning of the tune request parameters? How do I find the appropriate values to use, and is there a way to do so automatically? (ie, not to have to manually change params in the final program when trying to watch DVB in different countries.)
i have built jQuery drop-down menu which is having problems floating over the UI header. Flash and everything else is fine, menu has no problem floating over anything except UI headers, i have tried messing with z-index in css files but it seems that jQuery script is over writing all of my css. the JS files are minified so i can not edit them. I think a JS solution is necessary but i do not know how to solve this with JS.
URL: http://patel.mine.nu/live%20site/metanoia/
Hi,
I am writing a small shooting game using cocos2d. It's working good in simulator.
But when testing in the device, the animations of sprites are slow and they are stucking. The images I used are CCSprites. And I used CCAnimation for the animation of the images. Why the game acting different in simulator and device ?
Thank you.
I'm refactoring some client-server code and it uses the terms Response, Result & Reply for the same thing (an answer from the server). And although its not really that important it's become hard to guess which word to use while writing new code, so I'd like to unify the three terms into one and do the appropriate refactoring, but I'm not sure which word is the "best", if there is such a thing.
Any suggestions based on precedence and standards towards naming for this case?