Tagged Questions
The smart tag has no wiki summary.
9
votes
4answers
5k views
Is boost shared_ptr <XXX> thread safe?
I have a question about boost :: shared_ptr.
There are lots of thread.
class CResource
{
xxxxxx
}
class CResourceBase
{
public:
void SetResource(shared_ptr<CResource> res)
{
m_Res = ...
5
votes
1answer
167 views
reading application usage information
All,
as you probably know, when dialing " * # * # 4 6 3 6 # * # * " a testing menu appears.
on this menu you van select > application statistics in order to read application usage time and lunch ...
5
votes
5answers
274 views
Mashable Microwave? Do any smart home appliances have an API?
Are there really any smart appliances we can read data from, or send data/commands to? AT&T and IBM have run some dreamy TV commercials to lead you to believe there are every day consumer goods ...
5
votes
4answers
317 views
How to remove smart pointers from a cache when there are no more references?
I've been trying to use smart pointers to upgrade an existing app, and I'm trying to overcome a puzzle. In my app I have a cache of objects, for example lets call them books. Now this cache of books ...
4
votes
5answers
599 views
Pointer to a Pointer question
I have a class with a (non smart) pointer to an interface object (lets call it pInterface) and I am building a nested class which also needs access to that interface. I am going to get around this by ...
3
votes
4answers
124 views
shall I delete smart pointer manually?
This might be a dumb question but I'm just not sure about the answer. The following code read a file, and for each line of the file, a smart pointer is created by "new". If the smart pointer will be ...
3
votes
1answer
399 views
Visual Studio/Notepad++: Highlight repeat occurences of selection text?
I use Notepad++ for all my note-taking, copying and pasting, rapid prototyping, etc. It's freaking awesome. (Just wish it had some cloud storage instead! That's another topic though.)
Now, in ...
3
votes
5answers
308 views
Should I use smart pointers on everything and forget about classic normal pointers?
I've been using C++ for a long time and know very well about carefulness in allocating and deallocating memory, especially not forgetting to delete unused instances.
Now, I've just recently used ...
3
votes
3answers
404 views
Smart Pointer Implementation in C [closed]
Possible Duplicate:
Smart pointers/safe memory management for C?
I have an embedded application where I am allocating an object in dynamic memory and passing it around to other modules.
...
3
votes
2answers
2k views
When should I give out my iPhone UDID? [closed]
When should I give out my iPhone UDID? A company is developing an application for my company for the iphone wants my UDID. Are there any risks to me as an individual giving this out? Many thanks
3
votes
1answer
1k views
Programmatically Enable Smart Tag in Outlook 2007
There's a "global" checkbox titled "label text with smart tags" in Outlook that enables/disables the entire list of smart tag recognizers, under Tools/Options/Mail Format/Editor ...
3
votes
1answer
701 views
Is there a S.M.A.R.T. Library for .NET or Java?
I asked a somewhat related question but I want it to make it more concrete and 'programming' oriented, so here it goes:
Does any body know, if there is a .NET, JAVA or any other Framework, library, ...
2
votes
1answer
84 views
How do i remove old files so that I keep one for every week, one for every month, etc.? [closed]
I do regular backups on my linux server but as it is now I delete all backups older than 14 days. I'd prefer if I could do it as sbackup or deja-dup. There you have the choice to keep all yesterdays ...
2
votes
1answer
78 views
Is there an app for presenting UI prototypes on iPhone or Android? [closed]
Is there way to create an interactive presentation on a smart phone device (iphone, android, tablets) that allows a user to have a general look and feel of an app without doing actual development? ...
2
votes
3answers
168 views
Matlab: a smart way to create a sparse matrix
I have to create a matlab matrix that is much bigger that my phisical memory, and i want to take advantage of the sparsity.
This matrix is really really sparse [say N elements in an NxN matrix], and ...
2
votes
1answer
75 views
smart keyboard in jQuery
SO I have need to develop online keyboard using jQuery or anything else that can help me achieve following.
When I type any letter , it can check against bunch of words and keep only those Keys ...
2
votes
2answers
993 views
Best way to build a SMART mySQL & PHP search engine?
What is the best way to build a mySQL & PHP search?
I am currently using things like
%term%
I want it to be able to find the result even if they spell it slightly wrong, for example:
Field ...
2
votes
3answers
158 views
Library function returns raw pointer and I want to use smart pointer
I have this situation where the library I use has many functions that return raw pointers to objects, how could I now use boost smart pointers in my program using this library and using smart ...
2
votes
1answer
453 views
Smart XLS examples?
I want to use the Smart XLS library for dealing with excel files in C# (particularly because it can generate charts, and it's price is significantly lower than Aspose Cells), but I can't find any good ...
2
votes
1answer
638 views
Is MVP pattern best way for every winforms app?
HI, i would like develop application about storing some information about books, i would like use MVP pattern - but i have some doubts if this pattern is always best practise for developing small/mid ...
2
votes
2answers
169 views
Smart Phone ! Iphone | Reading the device phone number HTTP etc
Does anyone know if one of these devices connect to the web whether their phone number can be read from a header or some other means?
2
votes
2answers
737 views
Publish/Subscribe and Smart pointer
I would like to implement a simple Publish/Subscribe pattern where:
A single publisher publishes a token (a pointer to an object) to its subscribers. Publisher and subscribers are all independent ...
2
votes
6answers
623 views
Piano (Peano) numbers?
Hey, I was listening to the steve yegge podcast (#29, around 21:29), and in part of it, they were talking about "how to tell if the person you're talking to is smart", and they said that one way was ...
1
vote
1answer
93 views
Smart pointers in C++ with shared object-validation
I need smart pointer class or template, which can invalidate it's referencing object after 'delete' happens. Key point is to make pointer usable in debug for multy-thread apps.
Here is an example, ...
1
vote
0answers
28 views
Cocoa and Insteon devices
I'm looking to tinker with some insteon devices (so I can monitor a basement water softner and water heater) and Cocoa, see if I can build an app. So coming into this with no knowledge about home ...
1
vote
0answers
51 views
1 : Set visual focus of an text field | 2 : deal with the char offset (JAVASCRIPT)
First of all, I work with chrome, but it should work on firefox. not on IE.
I'm curently working on a pesonal project, so no ruch, the idea is to make a very simple js text editor for webpage, you ...
1
vote
2answers
2k views
Unable to push a directory over smart-http
I've been going a this for two days in a row now, and I'm giving up on finding the solution all by myself.
I am trying to set up Redmine on a server - that part went well. I am also trying to install ...
1
vote
3answers
233 views
pass smart_pointer to constructor vs raw pointer
Lets say I have a polymorphic class Structure like that
class Base
{
//some implementation
};
class Deriv: public Base
{
//implementation
}
class Case1
{
boost::scoped_ptr<A> a_ ...
1
vote
2answers
526 views
Windows C/C++ Drive Init/Partition/Format
I am trying to build an application for Windows XP 64bit which is able to detect drives of a particular model in the system, and if they are not initialized & formatted perform these processes.
I ...
1
vote
2answers
764 views
Smart client Winform vs MVVM + Prism
I am new to desktop applications, so please bare with me if this sounds very basic question. The question is, is Windows forms Simart Client is a legacy thing now? and to be replaced by Prism (and/or ...
1
vote
4answers
459 views
Smart pointers and polymorphism
I implemented reference counting pointers (called SP in the example) and I'm having problems with polymorphism which I think I shouldn't have.
In the following code:
SP<BaseClass> foo()
...
1
vote
3answers
445 views
PHP - smart, error tolerating string comparison
I'm looking either for routine or way to look for error tolerating string comparison.
Let's say, we have test string Čakánka - yes, it contains CE characters.
Now, I want to accept any of following ...
1
vote
3answers
225 views
How do I check in bash if a process (or one of its children) is actually doing something (CPU/IO)?
Actually, I would like to have some kind of progress bar.
I would like for the user to be able to recognize when the process "hangs".
Usually I will use it to show the progress of ./configure and ...
1
vote
1answer
2k views
Visual Studio 2008 Create new Smart Device project option not available
I have installed Visual Studio 2008 (also tried with 2010 beta) and cannot see the option to start a new smart device project (for windows mobile)
I have tried multiple websites - I appears I have to ...
1
vote
1answer
72 views
Mimicking Smart folders
I am new to mac programming. I have a small task to do.
I need to watch for file creation events in a folder, intercept them, and create symbolic links instead of a copy.
ANy idea if there is any ...
1
vote
3answers
141 views
Smart Client and Web App simultaneous development
What are the strategies and tools to be used, if an Application that is being developed needs to have Web Client and Smart client. Does Smart Client Software Factory or related applications blocks ...
1
vote
3answers
3k views
How can I create an autocomplete ComboBox in VB6?
Is it possible to use the default ComboBox control under VB6 to make it a smart ComboBox?
We suppose that the values are already populated in the ComboBox. For example:
New Delhi
New World
New York
...
0
votes
0answers
39 views
Smart array Class [closed]
this is the implementation i created. if there are any error kindly correct:
#include<iostream>
using namespace std;
class SmartArray
{
int* p,size;
public:
SmartArray(int n)
{
...
0
votes
0answers
65 views
How can I use C# To read extended smart data?
I know a bit of C++ and Java, but am wanting to learn c# on my own. To mess with, I'm trying to read the SMART data of my hard drive. I have this C# Code, but I do not know how to modify it to read an ...
0
votes
0answers
68 views
Is Smarty killing my session?
i have the problem that i can't save informations in a session.
I debugged the whole project and i found out that the last smarty action kills my session because when i set an exit before displaying ...
0
votes
0answers
62 views
webservices smart device c#
Hello guys I really have a big problem. Everytime I try to consume a webservice from an emulator, I always receive the message "Unable to connect to remote server". I already tried installing mobile ...
0
votes
0answers
47 views
single sign on using smart card and kerberos
In a client server application I can use the Kerberos mechanism for authentication and authorization with the help of java APIs- the JAAS and GSS APIs. But I have the requirement to use smart card ...
0
votes
0answers
172 views
How to construct a smart keyboard skin apk?
I have made 5 themes for android and several keyboards as well but never an apk so I'm very new to all of this. I have the images I want for the keyboard..I'm just unsure on how I need to get the apk ...
0
votes
1answer
67 views
Want to use WMI to monitor SMART via vb.net
The code below:
For Each queryObj As ManagementObject In searcher.Get()
objWriter = New StreamWriter("C:\vsl\scripts\results.txt", False)
objWriter.Write("Active: {0} ", ...
0
votes
1answer
26 views
Where can I get wlWriterEditableSmartContent?
I've found a bunch of web sites that use wlWriterEditableSmartContent to show source code in a pretty-print sort of way. Where can I get that class to use on my own web sites?
0
votes
0answers
101 views
SmartGWT grid events not fired
I have a problem with Smart gwt, using a Grid embeded in a popup box (Dialog class). The thing is that the CellClick and FieldClick events, are not being fired by SmartGWT. Here is the code:
...
0
votes
0answers
59 views
Problem with Installer's .exe file after using SignTool.exe
I am having a problem with Smart Install Maker 5.03 installer .exe files after code-signing.
I am using SignTool.exe from the Microsoft Windows SDK v6.1 to do the actual code-signing.
It appears ...
0
votes
0answers
63 views
Adding a link to my site to automatically create “smart keyword” on client's browser
My site has search functionality.
On Firefox, one can assign a keyword to my site to automatically use the search on my site directly from their address bar: ...
0
votes
1answer
366 views
S.M.A.R.T HDD and WMI
I try to get the SMART data from my HDD using WMI (this is the only way I found).
Using the namespace root\WMI with class MSStorageDriver_ATAPISmartData I can get the VendorSpecific. I just wonder how ...
0
votes
2answers
40 views
Form submit handling and generating
I have this form that i need to submit few question with some hidden values and link them all together.
I currently append name with the ID of the question and then add _ then the number of ...