Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
4answers
796 views

What is the type of lambda when deduced with “auto” in C++11?

I had a perception that, type of a lambda is a function pointer. When I performed following test, I found it to be wrong (demo). #define LAMBDA [] (int i) -> long { return 0; } int main () { ...
19
votes
4answers
828 views

C++ auto keyword. Why is it magic?

From all the material I used to learn C++, auto has always been a weird storage duration specifier that didn't serve any purpose. But just recently, I encountered code that used it as a type name in ...
6
votes
3answers
261 views

Recursive call in lambda (C++11)

Why can't I call a lambda recursively if I write it as: auto a = [&] { static int i = 0; i++; std::cout << i << std::endl; if (i<10) a(); //recursive call }; It ...
4
votes
3answers
2k views

Using auto and decltype in C++11

I'm trying to learn the currently accepted features of c++11 and I'm having trouble with auto and decltype. As a learning exercise I'm extending the std class list with some generic functions. ...
3
votes
3answers
112 views

auto from const std::vector<>&; object or reference?

suppose we have an object with the following interface: struct Node_t { ... const std::vector< something >& getChilds() const; } node; Now, i access the property with an auto variable ...
3
votes
1answer
103 views

What was `auto` used for before?

I know that before C++11 the auto keyword had a completely different meaning; it was a storage type specifier indicating an object that has automatic storage type (ie, placed on the stack). That's ...
3
votes
1answer
941 views

keep APP process running in background when locked in iOS 5

I need to play alarms that use volume fade-in over a long period so as to to be gradual for the user when screen is locked. As of iOS 5 by default apps are being suspended so my app is unable to ...
3
votes
2answers
57 views

In GDB, how do I execute a command automatically when program stops? (like display)

I want some commands to be automatically executed each time the program stops, just like what display does with x. How do I do that?
2
votes
1answer
20 views

jquery prevent auto trim while dynamically add table

I use jquery for adding table dynamically and I use this pattern: var tbl = $("<table></table>").addClass("messageTable"); var tblRow = ...
2
votes
1answer
54 views

Replace auto keyword with deduced type (clang or VS2010)

Has anyone written a script, plugin, or executable that replaces each instance of 'auto' with the compiler-deduced type? I need to port some C++11 code that uses auto all over the place. Clang is my ...
2
votes
2answers
95 views

Unexpected copy-construction caused by reference: what am I doing wrong?

I have some complex template code where the copy-constructor of OPC is being called even though I am only creating a reference to OPC (the actual instance is OP_S, which as a child class of OPC, ...
2
votes
3answers
93 views

Position absolute prevents browser to calculate correct height. Is it possible to fix this issue

I am developing a browser game. Until now i was using all position absolute. Because of that i have to set every page height myself. Now trying to pass this problem but since i used position absolute ...
2
votes
3answers
129 views

CSS problem - horizontal scrollbar hides the content

I have a problem with this one... because it gives me the scrollbar but the height remains the same so the text is covered by the scroll bar... <td class='messages'><div ...
1
vote
2answers
71 views

auto and const object

#include <iostream> #include <boost/shared_ptr.hpp> using namespace std; class A { public: const shared_ptr<const int> getField () const { ...
1
vote
0answers
32 views

DirectShow WindowsMobile 6.5 - autofoucus

I tried to develop a small application using DirectShow(http://msdn.microsoft.com/en-us/library/dd390351.aspx). Everything goes well, but still the autofocus does not work. I use this, to set ...
1
vote
1answer
52 views

CSS - Resolve scroll bar being covered by tiled auto size images

I found some great help on this site that helped me tile an image on either side of my fixed header. One issue I am having is the scroll bar on the right is being covered by the tiled image and ...
1
vote
1answer
50 views

Auto reload a page using JS, with a checkbox to enable/disable the script

HTML <body onload="JavaScript:timedRefresh(10000);"> <input type="checkbox" checked="checked" name="autoRefreshCheckboxes" >Auto Refresh</input> </body> JS function ...
1
vote
1answer
37 views

limited margin auto?

I want to have the content of my website centred but only for a certain width of a webpage. So when it's over say 500px I'd want the content to then be fixed, unable to stretch any further. Is there ...
1
vote
1answer
167 views

Is C++11 auto type dangerous? [closed]

Possible Duplicate: How much is too much with C++0x auto keyword The new keyword “auto”; When should it be used to declare a variable type? In C++11, Typing a variable auto ...
1
vote
0answers
53 views

Auto close accordion

I'm using the HW ACCELERATED ACCORDION by cubiq.org in my JQTouch project. If you open an accordion section and click on one of the links, the accordion remains open because you technically never ...
1
vote
1answer
45 views

Code Styling with Intellij IDEA

Lets say I have code that looks like this: public abstract class ResourceDownloaderBaseImpl implements ResourceDownloader { public Object getProperty( String name) ...
1
vote
2answers
47 views

'Auto' value in binding property 'width'

Must attach to the property Width, what I'm doing this: <ColumnDefinition Width="{Binding Path=TabPanelWidth, RelativeSource={RelativeSource TemplatedParent}}" /> - public float ...
1
vote
3answers
102 views

Makefile (Auto-Dependency Generation)

just for quick terminology: #basic makefile rule target: dependencies recepie The Problem: I want to generate the dependencies automatically. For example, I am hoping to turn this: #one ...
1
vote
2answers
153 views

Disable HTML auto-refresh?

A client's website has an auto-refresh feature which works great for desktop sites, but I'm making an iPhone app and need to disable it on the mobile version. The code used is: <META ...
1
vote
1answer
60 views

iPhone/iTunes Connect - Is it possible to automatically create an app and fill in metadata for it?

I am wondering if it is possible to automatically do the following regarding the iphone app store and itunes connect: Create an app id and bundle id. Create provisioning profiles. Create an app in ...
1
vote
1answer
139 views

disable scrolling when selecting text in richTextBox (C#)

I have a rich text box that contains (a lot of) text. I've added a search option for it, and when the user presses the search button, the program marks all the matches in yellow (by performing ...
1
vote
1answer
107 views

css auto width floating problem

Please check out this image <body> <div class="main> <div class="left">blah blah </div> <div class="right">blah blah </div> <div ...
0
votes
1answer
40 views

How to stop service itself?

I have for example some int myInt in service and if myInt = 1 I'd like to stop service itself. So service should stop automatically. @Override public void onCreate() { ...
0
votes
1answer
21 views

Disable automatic indexing in sql server

I need to disable auto indexing in a SQL Server database, basically I want to control when the indexing occurs (for example, at night). I don't want to disable the indexes by table, for instance ...
0
votes
0answers
28 views

how to automatically close the socket when the other side disconnect or close

i have a file transfer application between client and server how to automatically close the socket ?? when the other side : - disconnect or close - file sending or receiving fails or interrupt ...
0
votes
0answers
33 views

Time not updating in Blackberry

I recently made a counting down application that works just fine. I decided to add a feature which allows a message box to appear in a set time. The message box will appear even though the application ...
0
votes
1answer
55 views

Auto Populate TextBoxes of Entity Form In MS CRM 2011 on basis of lookup field using jscript

I want to auto populate the text boxes on basis of lookup field result in an entity form There are two entities Account Holder with fields (Name,Address,account number -primary key, etc etc) ...
0
votes
2answers
16 views

Get height and width after setting maxHeight and maxWidth and auto - pure javascript

Is it posible to getGet width and height of image after setting maxHeight and maxWidth with javascript. $new_image = new Image(); $new_image.src = 'xxx.jpg'; $new_image.style.maxHeight = '500px'; ...
0
votes
1answer
120 views

Apple rejected a new version app though it accepted a current app that uses an Auto-Renewable Subscriptions [closed]

I am providing a car navigation application for iPhone on App Store. This app uses an Auto-Renewable Subscriptions as In-App Purchase type. This time, I submitted the bug fixed app via iTunes Connect. ...
0
votes
0answers
66 views

Create simple application in VB.net to auto forward emails

I am new to VB.net programming, so please bear with me. I am trying to write code that will simply log into my Gmail or Yahoo account then forward only the new emails to another account. I know it ...
0
votes
1answer
99 views

PayPal auto return does not send back any POST data

I have a similar problem to this post Setting PayPal return URL and making it auto return? However, the solution there is not working. We have IPN set up and POST variables get passed back (the ...
0
votes
0answers
140 views

JWPlayer Fullscreen on Play

I am using JWPlayer to embed videos in my website. I have my videos setup in a continuous playlist. I would like to make it so that when a user clicks the fullscreen button. The player stays in ...
0
votes
0answers
36 views

Viewflipper: Do i need to finish the Activity?

I have a viewflipper with over 20views. I have private variables. private static int count = 0; private static int count1 = 0; Every button this is what i have. private OnClickListener ...
0
votes
0answers
15 views

is there any plugin for auto taging with unicode support for wordpress?

i found many plugin for auto tagging but none of them support Unicode text! is there any plugin that make tag,auto from content of wordpress post that support this? thanks all
0
votes
0answers
48 views

Hide Facebook Comments via API [closed]

Possible Duplicate: Hide Facebook Comments Can I know whether Facebook API allows to hide comments automatically? Thank you.
0
votes
1answer
98 views

Hide Facebook Comments

Can I hide facebook comments of a page automatically via facebook API? Can you please tell me the way to do it. Thank you.
0
votes
2answers
197 views

Div width auto fit to screen/parent element

I am sure this is simple but... I have the following: http://jsfiddle.net/SUBH3/1/ What I want is to have the final green panel fill the rest of the space. I have tried a few things but cannot do ...
0
votes
1answer
77 views

Input text remaining available space in a div with a button on its right

Is there an easy and elegant way to have an input remaining available space in a div with a button on the right without specifing any width on input neither button ? <div> <input ...
0
votes
1answer
48 views

How to make a script auto install under Ubuntu

I have pretty big assignment where I had to create some files for word frequency checks and a bash script connected with a crontab to make these function run under a specific set of folder every 5 ...
0
votes
0answers
121 views

Auto Scale TextView Text to Fit within Bounds in 4.0

The solution Chase gave for this problem was working fine in 2.2 - 3.2 but when I tested it on 4.0 it failed. Here is the original post: Auto Scale TextView Text to Fit within Bounds On 4.0 I get a ...
0
votes
0answers
54 views

Automatically checking facebook page for the fan count [closed]

My idea is simple. (but i don't really now how "simple" will be realization of this idea:)) Detailed Lets say currently, the page has 160 fans. Can we create mini-app which will notify when the ...
0
votes
3answers
162 views

jQuery - indefinitely scroll and loop one image inside a div

I'd like to create an auto-scrollable image inside of a div. like, I have a picture that's 600px wide and 1200px tall and I'd like to display it inside a 600px by 200px div and make it scroll and loop ...
0
votes
1answer
58 views

Always fill TextView with provided text

I have a textview that has a fill_parent width and a set height. Is it possible to have the text scale to fit the textview automatically if the text is larger than the textview? I don't want it to ...
0
votes
1answer
74 views

Netbeans auto import in IntelliJ

I'm struggling to find the equivalent to the auto import feature of Netbeans (Ctrl Shift i). I know IntelliJ can import automatically when autocompleting, but is there no way of including/finding ...
0
votes
1answer
219 views

Roundcube login via PHP script

For a long time there was a php script here in order to perform automatic login to Roundcube, i.e. you specify username and password in the script and in case of success you can open roundcube ...

1 2