pid
int64 2.28k
41.1M
| label
int64 0
1
| text
stringlengths 1
28.3k
|
---|---|---|
19,161,492 | 0 | <p>Using joins would make it easier to follow, and afraid you have not said which field is giving a duplicate.</p> <p>For example the following is a quick hack (untested) at you code to eliminate some of the separate selects:-</p> <pre><code><?php $SQL = "SELECT ID, ItemID FROM IR_Logs"; $data = $db->getResults($SQL); $count = mysql_num_rows($data); echo '<p>Returned Results: '.$count.'</p>'; while($row = mysql_fetch_assoc($data)) { $ItemID = $row['ItemID']; $SQL = "SELECT cs.SiteManager, cs.CompanyID, cs.Reference, cu.Name, cu.Telephone, cu.Email FROM IR_Logs ir INNER JOIN Customer_Sites cs ON ir.LocationID = cs.ID INNER JOIN Customer_Users cu ON cs.CompanyID = cu.CompanyID AND cu.ID = cs.SiteManager"; $LocationData = $db->getResults($SQL); while($row2= mysql_fetch_assoc($LocationData)) { $SiteManagerID = $row2['SiteManager']; $CompanyID = $row2['CompanyID']; $SiteReference = $row2['Reference']; $Manager_Name = $row3['Name']; $Manager_Telephone = $row3['Telephone']; $Manager_Email = $row3['Email']; $SQL = "SELECT i.Reference, ca.Company, cs.Reference, a.Type, DATE_FORMAT(a.Date, '%d %M %Y'), a.CompanyID, a.LocationID FROM IR_Logs a LEFT OUTER JOIN Inventory i ON a.ItemID = i.ID LEFT OUTER JOIN Customer_Accounts ca ON a.CompanyID = ca.ID LEFT OUTER JOIN Customer_Sites cs ON a.LocationID = cs.ID WHERE a.LocationID = $LocationID ORDER BY CompanyID ASC"; $LogData = $db->getResults($SQL); if(mysql_num_rows($LogData) <> 0){ $HQEmail = $db->getValue("SELECT PrimaryEmail FROM Customer_Accounts WHERE ID = $CompanyID"); $message .= '<h3>Site Ref: '.$SiteReference.'</h3>'; $message .= '<p>For the Attention of '.$Manager_Name.', in regards to Site Reference: '.$SiteReference.'</p>'; $message .= $blk->GetBlock(6); $message .= '<table style="border:1px solid black; padding: 10px;" cellpadding="10">'; $message .= '<tr>'; $message .= '<td><strong>Reference</strong></td>'; $message .= '<td><strong>Type</strong></td>'; $message .= '<td><strong>Date</strong></td>'; $message .= '</tr>'; while($row4 = mysql_fetch_array($LogData)){ $Reference = $row4[0]; $Location = $row4[2]; $Company = $row4[1]; $Type = $row4[3]; $Date = $row4[4]; $CompanyID = $row4[5]; $LocationID= $row4[6]; $message .= '<tr>'; $message .= '<td>'.$Reference.'</td>'; $message .= '<td>'.$Type.'</td>'; $message .= '<td>'.$Date.'</td>'; $message .= '</tr>'; } $message .= '</table>'; } } } ?> </code></pre> |
33,102,488 | 0 | Installation's object default ACL and security issue <p>I see on Data Browser that every new Installation's object has default ACL 'Public read and write' permissions. What is a security risk? And, if it is a security risk, how is possible solve it?</p> |
18,278,498 | 0 | <p>As it's already mentioned by taocp, the line refers to member initialization list.</p> <p>There are couple of ways to initialize members 1. member initialization list (efficient approach) 2. using assignment e.g. players = 10</p> <p>It might not make any difference for built-in types e.g. int, char but if you are assigning big objects then use member initialization list. Constructor/ Destructor gets called in assignment which is definitely not warranted</p> |
26,531,665 | 0 | <p>Aside from <code>@see</code>, a more general way of refering to another class and possibly method of that class is <code>{@link somepackage.SomeClass#someMethod(paramTypes)}</code>. This has the benefit of being usable in the middle of a javadoc description.</p> <p>From the <a href="http://docs.oracle.com/javase/7/docs/technotes/tools/windows/javadoc.html#link">javadoc documentation (description of the @link tag)</a>:</p> <blockquote> <p>This tag is very simliar to @see – both require the same references and accept exactly the same syntax for package.class#member and label. The main difference is that {@link} generates an in-line link rather than placing the link in the "See Also" section. Also, the {@link} tag begins and ends with curly braces to separate it from the rest of the in-line text.</p> </blockquote> |
28,858,159 | 0 | <p>Could be this bug...</p> <p><a href="http://bugs.python.org/issue11587" rel="nofollow">http://bugs.python.org/issue11587</a></p> <p>Which means it's a python version issue. One fix seems to be to use <code>METH_KEYWORDS | METH_VARARGS</code>.</p> |
20,870,518 | 0 | Switch between a headed and headless server when integration testing with capybara <p>Let's say I have web-rat and selenium installed. How do I test my rails app quickly with web-rat (using capybara) , and then, do one final integration test with selenium?</p> |
10,831,319 | 0 | <p>The <a href="http://msdn.microsoft.com/en-us/library/wxh6fsc7%28v=vs.100%29.aspx" rel="nofollow">access modifier</a> needs to be at least <a href="http://msdn.microsoft.com/en-us/library/bcd5672a%28v=vs.80%29.aspx" rel="nofollow"><code>protected</code></a>.</p> <pre><code>protected String myString = "Hi SO!"; </code></pre> <p>The reason behind is that each <code>.aspx</code> page inherits from the code-behind class.</p> |
34,274,232 | 0 | <p>This is a bug in Spring XD. See <a href="https://jira.spring.io/browse/INT-3908" rel="nofollow">INT-3908</a> for details.</p> <hr> <p>Following the <a href="http://stackoverflow.com/a/34216534/953327">suggestion</a> by Marius, the following is a suitable workaround:</p> <p>Edit <code>$XD_HOME/modules/processor/aggregator/config/aggregator.xml</code> to include:</p> <pre><code><channel id="aggregatorInput"/> <header-enricher input-channel="input" output-channel="aggregatorInput" default-overwrite="true"> <header name="kafka_messageKey" value="."/> </header-enricher> <aggregator input-channel="aggregatorInput" output-channel="output" correlation-strategy-expression="${correlation}" release-strategy-expression="${release}" expression="${aggregation}" send-partial-result-on-expiry="true" expire-groups-upon-completion="true" message-store="messageStore"> </aggregator> </code></pre> <p><strong>Note</strong>: using a <code>header-filter</code> will not work as the mechanism SI uses for <a href="https://github.com/spring-projects/spring-framework/blob/master/spring-messaging/src/main/java/org/springframework/messaging/support/MessageHeaderAccessor.java#L347" rel="nofollow">removing a header</a> will only <a href="https://github.com/spring-projects/spring-framework/blob/master/spring-messaging/src/main/java/org/springframework/messaging/support/MessageHeaderAccessor.java#L309" rel="nofollow">remove the header if it is not already null</a>.</p> <hr> <p>Alternatively, if you don't want to edit the module XML directly, you could use <a href="http://docs.spring.io/spring-xd/docs/current/reference/html/#composing-modules" rel="nofollow">Module Composition</a> to include a Header Enricher before the standard aggregator module.</p> <pre><code>module compose --name kafa-aggregator --definition "header-enricher --headers={\"kafka_messageKey\":\"'.'\"} --overwrite=true | aggregator --count=3 --aggregation=T(org.springframework.util.StringUtils).collectionToDelimitedString(#this.![payload],' ')" stream create --name aggregates --definition "http | kafa-aggregator | log" --deploy </code></pre> |
9,105,042 | 0 | SQL-Server - Stop success message when saving results to file <p>When running a query on <code>SQL Server</code> and using <code>Results to file</code> function, <code>SQL Server</code> automatically adds a success message at the end of the file that looks like this:</p> <pre><code>(2620182 row(s) affected) </code></pre> <p>With a small file, you could pop it open a text editor and remove it manually, but when your file is millions of records, it takes a bit more work. I could use <code>grep</code> or <code>sed</code> to remove it, but that's a manual process. </p> <p>Is there a way I can surpress that message from showing up in my saved result set?</p> |
3,008,175 | 0 | <p><strike>Check out this tut on <a href="http://wpmututorials.com/how-to/a-reusable-widget/" rel="nofollow noreferrer">reusable WordPress widgets</a> :)</strike></p> <p>Using the <a href="http://codex.wordpress.org/Version_2.8#New_Widgets_API" rel="nofollow noreferrer">2.8 widget API</a>, widgets are natively re-usable.</p> |
12,057,266 | 0 | <p>If K << N, min heap is good enough because creation of heap is O(n), and if K << N selecting first K items is at most O(N), otherwise you could use <a href="http://en.wikipedia.org/wiki/Selection_algorithm">selection algorithm</a> to find Kth smallest element in <code>O(n)</code> then select numbers which are smaller than found item. (Sure if some numbers are equal to Kth element select till fill <code>K</code> items).</p> |
29,900,158 | 0 | <p>You can get min and max per user , then the rest you need to do from the client side - </p> <pre><code>{ "aggs": { "users": { "terms": { "field": "Name" }, "aggs": { "maxAge": { "max": { "field": "age" } }, "minAge": { "min": { "field": "age" } } } } } } </code></pre> <p>Here , you need to make a bucket per name using <a href="http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-aggregations-bucket-terms-aggregation.html" rel="nofollow">terms aggregation</a>. Per bucket , you need to get max and min value using max and min aggregation.</p> <p>Rest you need to take care on the client side.</p> |
24,945,371 | 0 | <p>The MSDN says in the docs about <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridviewcell.rowindex(v=vs.110).aspx" rel="nofollow">RowIndex property</a></p> <blockquote> <p>When the RowIndex property returns -1, the cell is either a column header, or the cell's row is shared.</p> </blockquote> <p>So you need to handle the e.RowIndex == -1 when you receive the event<br> (...The index must not be negative....)</p> <pre><code>private void firearmView_CellClick(object sender, DataGridViewCellEventArgs e) { if(e.RowIndex == -1) return; if (!firearmView.Rows[e.RowIndex].IsNewRow) { selectedFirearmPictureBox.Image = Image.FromFile(firearmView.Rows[e.RowIndex].Cells[12].Value.ToString(), true); } } </code></pre> |
16,448,827 | 0 | <p>The easiest way to get a complete working setup on Windows, including ming compiler, is to install a distribution such as <a href="https://code.google.com/p/pythonxy/" rel="nofollow">pythonxy</a> (my favorite) or <a href="https://www.enthought.com/" rel="nofollow">EDP</a>. </p> |
16,665,676 | 0 | <p>As far as I know the COL_NAME can't be replaced with "?". Android only takes "?" as "arguments", not as "selection"</p> <pre><code>final String query = "SELECT * FROM " + TBL_NAME + " WHERE COL_NAME=?"; final String[] args = new String[] {Long.toString(id)}; final Cursor c = db.rawQuery(query, args); </code></pre> <p>Or better use this method</p> <pre><code>query(String table, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy) </code></pre> <p>In your case it would be like this:</p> <pre><code>final String[] args = new String[] {Long.toString(id)}; final Cursor c = db.query(TBL_NAME, null, COL_NAME + "=?", args, null, null, null); </code></pre> |
13,366,086 | 0 | <p>I would like to bring some more precision. At least, for the most recent version of Symfony (2.1), the correct symtax (documented on the API) is:</p> <pre><code><?php public FormBuilderInterface createNamedBuilder(string $name, string|FormTypeInterface $type = 'form', mixed $data = null, array $options = array(), FormBuilderInterface $parent = null) </code></pre> <p>It is important because you can still pass options to the FormBuilder. For a more concrete example:</p> <pre><code><?php $form = $this->get('form.factory')->createNamedBuilder('user', 'form', null, array( 'constraints' => $collectionConstraint, )) ->add('name', 'text') ->add('email', 'email') ->getForm(); </code></pre> |
12,084,622 | 0 | <p>"Really only useful" is a little subjective, don't you think? If you're asking about whether it's more important to pre-compile templates used server-side as opposed to client-side, it usually is, simply because a server is going to have to render them potentially several thousand times a second so it's wasteful to have to compile them each time they're rendered.</p> <p>In a client-side app, the main concern is whether there's any user-noticeable slowdown associated with rendering templates. There usually isn't, and if there is, generally only a few (maybe partial templates used to build large list views) are responsible. So in most client-side apps, pre-compiling templates is a form of premature optimization.</p> |
25,815,403 | 0 | <p>Once you have the duration,</p> <p>call this routine (but I am sure there are more elegant ways).</p> <pre><code>public String convertDuration(long duration) { String out = null; long hours=0; try { hours = (duration / 3600000); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); return out; } long remaining_minutes = (duration - (hours * 3600000)) / 60000; String minutes = String.valueOf(remaining_minutes); if (minutes.equals(0)) { minutes = "00"; } long remaining_seconds = (duration - (hours * 3600000) - (remaining_minutes * 60000)); String seconds = String.valueOf(remaining_seconds); if (seconds.length() < 2) { seconds = "00"; } else { seconds = seconds.substring(0, 2); } if (hours > 0) { out = hours + ":" + minutes + ":" + seconds; } else { out = minutes + ":" + seconds; } return out; } </code></pre> |
23,825,728 | 0 | How do I implement timer with activiti bpmn <p>I have a requirement where the a task should wait for a asynchronous request to finish. The process should be verified at regular interval.The activiti workflow should send a request at every 10 min to check if the previous request is being approved. </p> <p>How do I configure this in activiti BPMN.</p> |
11,979,266 | 0 | <p>A common approach that works well is to use a work queue like <a href="https://github.com/defunkt/resque/" rel="nofollow">Resque</a>.</p> <p><strong>Managing the code</strong><br/> For ease of management, keep the processing code and the app "in the app". Deploy two app-servers but run resque workers on the processing server.</p> <p><strong>State changes</strong><br/> If the processing jobs relate to ActiveRecord persisted objects you can poll state from the front-end and periodically update it from the backend during the encoding process.</p> <p>You might find it useful to use <a href="https://github.com/pluginaweek/state_machine" rel="nofollow">state machine</a>.</p> <p><strong>Your problems have moved</strong><br/> Now you're cloud-scale™ :D More processing hosts running workers can be added if your queue gets too long. If your front-end is the only web-accessible host you can set up a rack middleware or run rainbows to proxy the processed results through the frontend to the client.</p> <p>Sounds like an interesting project. Good luck!</p> |
13,233,222 | 0 | <p>In the wording in which you've posed the problem, the only correct solution is a double iteration over A and B and filter, as you've suggested. That's because you've stated the problem as to "construct the set C", which lacking other information, generally means to <em>enumerate</em> the set C. The only way to do that and get the exact enumeration of C, at least with the information provided, is to evaluate F on each element in A × B.</p> <p>In another way of interpreting the problem, you can say you have a definition of C if you have a characteristic function, but that's just F. So I'll assume that's not what you mean.</p> <p>The key seems to be that you need to elucidate the relevant properties of F, since that's the algorithmic hook for an enumeration of C. What I mean by this is that you should propose an axiom about F that allows you some shortcut over direct filtration. That could mean, for example, the existence of some auxiliary function G that allows a shorter algorithm. Assuming such a G, an enumeration algorithm would evaluate both F and G, rather than F alone.</p> |
32,133,158 | 0 | how to add text in svg object inside javascript <p>How can I add a text node inside javascript svg object . I am using this object , but I don't know how to add text into svg . </p> <pre><code> var circlemarker = { path: 'M-5,0a5,5 0 1,0 10,0a5,5 0 1,0 -10,0 z', fillColor:'yellow', //'#f39c13', fillOpacity: 0.8, scale: 3, strokeColor: '#f7692c', strokeWeight: 2, data: 'My text' // this is not working }; </code></pre> |
23,668,315 | 0 | <p>Not sure how to do this in WP. However, you could use a little jQuery to figure out how many top-level nav items there are, round that number up (to support odd numbers of nav items) and then add a class to the last element that you want to appear on the left of the logo. Then style on that class to add space between it and the next nav item. </p> <pre><code>$(function(){ var navElements = $('.nav > li'), navElementsLength = $(navElements).length, middle = navElementsLength / 2, middle = Math.round(middle); $(navElements).eq(middle-1).addClass('left'); }); </code></pre> <p><a href="http://www.bootply.com/ZKxhal2RgD#" rel="nofollow">http://www.bootply.com/ZKxhal2RgD#</a></p> |
29,545,552 | 0 | <blockquote> <p>How can Interface be implemented, by which it can be accessible from all the activities, and called from any of the activity to call SDK API...</p> </blockquote> <p>The interface instance can be made a context singleton (lazily instantiated). So you may have a <code>static getInstance(Context)</code> to get an implementation of the interface. </p> <p>OR you can be using a Dependency injection framework (Roboguice, Dagger etc) and just annotate the class with <code>@Singleton</code>etc. This is useful if you would like to switch implementations of same interface dynamically.</p> <p>OR you can extend <code>Application</code> class with your own <code>App</code> class, mention the same in manifest's <code><application></code> tag. Now <code>App</code> class will become app wide singleton and can one-time initialize and expose global objects from its <code>onCreate()</code> method.</p> <blockquote> <p>.., and also it provides response to calling activity only (Synchronous or Asynchronous).</p> </blockquote> <p>I'd advise to stick with single a pattern. Also UI components like Activities, Fragments and View are exposed to a risk of being frequently destroyed and re-created. So, It is a great responsibility of notifying the SDK to not to call back for a UI that is going away.</p> <pre><code>RequestHandle handle = mySDK.doSomeAsyncReqyest(myInputParameters, new Callback<Data>(){ @Override public void onResult(Data d, Exception e){ // handle results } }); </code></pre> <p>And always track the requests and remember to :</p> <pre><code>handle.cancel(); </code></pre> <blockquote> <p>How can Interface be kept alive and on going when application is not active or in background (Service not proffered), so that it can get notification from SDK.</p> </blockquote> <p>As of now, a "sticky" Service equipped with a boot receiver is the only way you can let android not permanently destroy a background process of an app. Even then, the process will still be stopped if resources are low, and re-started when resources are free.</p> <p>This service can post notifications in status bar (by becoming a foreground service), from where, user can again be re-directed to a specific part of your app.</p> <blockquote> <p>How can Interface broadcast notifications received from SDK to all the available activities (is Broadcast Receiver mechanism ok for this?)?</p> </blockquote> <p>Android offers <code>LocalBroadcastManager</code> to broadcast events local to the app. Also there are "bus" implementations such as <code>EventBus</code> and <code>Otto</code> that can help send events from one object to another without them having direct references of each other.</p> <p>If you are looking for overall async architecture hints, you can explore how the framework called <code>RoboSpice</code> is implemented.</p> |
23,685,058 | 0 | <p>It turns out there is H_SAVE_FP which saves files to an opened file pointer.</p> <p>The code then looks like:</p> <pre><code>FILE* fp = fopen("historyfile", "w"); ... cap_enter(); ... history(inhistory, &ev, H_SAVE_FP, fp); </code></pre> |
8,374,923 | 0 | <p>They doesn't really reset the <code>wait_timeout</code> value but they do reset the "time since last command" so doing <code>SHOW SESSION VARIABLES</code> often enough would prevent the server to close the connection. So would <code>SELECT 1</code>.</p> |
32,674,578 | 0 | Binary operator '!=' cannot be applied to operands of type 'NSError' and 'NilLiteralConvertible' <p>I have the following code :</p> <pre><code>if ((error) != nil) { print(error, terminator: "") } </code></pre> <p>in my Swift program (converted to Swift 2 from Swift 1) </p> <p>But Xcode is complaining</p> <blockquote> <p>Binary operator '!=' cannot be applied to operands of type 'NSError' and 'NilLiteralConvertible'</p> </blockquote> <p>What is the issue with the above line?</p> |
4,582,829 | 0 | <p>I did it like this - it works in IE8, Fx3.6, Safari4, Chrome as opposed to the un-edited string which works in Fx but not in several other browsers:</p> <pre><code>new Date('2001-01-01T12:00:00Z'.replace(/\-/g,'\/').replace(/[T|Z]/g,' ')) </code></pre> <p>but I am sure someone will post a REGEX with backreferencing :)</p> |
9,112,438 | 0 | <p>In asp.net version 4 this 'hack' action of postback does not work because of the extra security checks that version 4 includes. The best way to do this using asp.net controls is to do a dynamic load of the controls. Here is some code that I have just checked and working.</p> <pre><code>protected void Page_Load(object sender, EventArgs e) { // create the control dynamically LinkButton lbOneMore = new LinkButton(); // the text and the commands lbOneMore.Text = "One more click"; lbOneMore.CommandArgument = "cArg"; lbOneMore.CommandName = "CName"; // the click handler lbOneMore.Click += new EventHandler(lbOneMore_Click); // and now add this button link to your div DivControl.Controls.Add(lbOneMore); } // here you come with the click, and the sender contains the commands void lbOneMore_Click(object sender, EventArgs e) { txtDebug.Text += "<br> Command: " + ((LinkButton)sender).CommandArgument; } </code></pre> <p>On asp.net page :</p> <pre><code><div runat="server" id="DivControl"></div> <asp:Literal runat="server" ID="txtDebug" /> </code></pre> |
13,031,158 | 0 | Unwanted left margin when using -webkit-transform: scale(...) <p>I am using wkhtmltopdf (which uses the Webkit rendering engine) to convert HTML files to PDF documents. The generated PDFs are A4. In other words, they have fixed dimensions, and thus a limited width.</p> <p>One of the tables in my PDF contains images, which are intricately pieced together in a puzzle-like fashion, and which sometimes take up a lot of room.</p> <p>To fit the resulting puzzle in the constraints of an A4 PDF, I am applying the CSS property -webkit-transform: scale(...);</p> <p>This scales the puzzle beautifully, and it is still clearly legible, but for some reason it also pushes the table containing the puzzle to the right. It seems to be adding a significant margin to the left of the puzzle table, despite my explicitly setting its left margin to 0.</p> <p>Interestingly enough, the smaller the scale in my webkit transformation, the bigger the margin on the left. So for example, if I use scale(0.75) the resulting left margin is around 200 pixels. If I use scale(0.5) the resulting left margin is around 400 pixels.</p> <p>I've tried aligning the puzzle table to the left using absolute, fixed and relative positioning with left: 0. I've also tried floating it to the left, as well as sticking it in a container with text-align set to left. None of these techniques work.</p> <p>Any ideas where this left margin is coming from and how I can remove it / work around it?</p> |
3,377,461 | 0 | <p>Firstly, using Task Manager to determine memory usage is fraught with peril. Have a read of <a href="http://www.itwriting.com/dotnetmem.php" rel="nofollow noreferrer">this article</a> to gain a clearer understanding of it.</p> <ul> <li>What other libraries are you referencing?</li> <li>What files are you loading, into streams or any other way?</li> <li>What resources do you request from the Operating System via P/Invoke</li> <li>How many instances of each form do you load?</li> <li>How many variables do you create, and of what size?</li> </ul> <p>For example:</p> <pre><code>// Will take up a lot of memory! var x = new byte[int.MaxValue]; </code></pre> <p>All that said, 9.1Mb isn't really a lot (less than 0.5% of memory on a machine spec'd with 2Gb of RAM) and more importantly, <strong>does it actually matter that your application's using 9.1Mb of RAM, or are you wasting your time investigating?</strong> Remember, your time's valuable. Would your end users rather the time was spent on something else? =)</p> |
26,493,168 | 0 | <p>You want to call <code>$user->username</code> not <code>$user->$username</code>.</p> <pre><code><?php require_once 'core/init.php'; $user = DB::getInstance()->get('users', array('username', '=', 'alex')); if(!$user->count()) { echo 'No User'; } else { foreach($user->results() as $user) { echo $user->username, '<br>'; } } </code></pre> |
25,258,630 | 0 | Mapping a DFS using NET Use remotely throwing Error 1312.A specified logon session does not exist. It may already have been terminated <p>I am trying to map a distributed file system (DFS) from a remote machine using net use $drive_letter $target $password /user:domain\username</p> <p>If I do this by logging to the machine there is no error, however if I try this remotely I get </p> <p>System error 1312 has occurred. A specified logon session doesnt exist. It may already have been terminated.</p> <p>Has anyone faced this issue before?</p> <p>Or is there any alternate way to map the network drive remotely without encountering these issues?</p> |
40,826,413 | 0 | Issue about the return value of sengmsg for udp <p>is there a partially-sent data when calling sendmsg for udp non block socket? when i want to data with a length of 5000, is there any possibility the sendmsg api just sent out 3000 or just return -1 with a errno EMSGSIZE? thanks</p> |
815,253 | 0 | How to clone StackOverFlow JQuery Interface? <p>Is there any opensource samples of JQuery usages of StackOverFlow-like sites...... </p> <p>Any help in this direction??</p> |
12,927,795 | 0 | <p>You cannot auto-start application on TV launch.</p> <p>The only way is to use custom firmware like SamyGo (http://www.samygo.tv/)</p> <p>About the "background process"... as far as we assume that JavaScript's <code>setTimeout</code> or <code>setInterval</code> can be used to execute application's "internal" background process, there is no problem - Just DO it! :)</p> <p>But if you were thinking about system's background process - for ex. crontab of device - it's impossible.</p> |
18,698,621 | 0 | <p>I ended up creating this little baby:</p> <p><a href="https://gist.github.com/carstengehling/6495127" rel="nofollow">https://gist.github.com/carstengehling/6495127</a></p> <p>Works quite nice for the purpose. A bit like rollout, though not user-specific and using AR instead of Redis.</p> <p>Anyone else who finds this approach interesting, please let me know - I could do a gem.</p> |
38,672,248 | 0 | <p>Ok, so i found the answer my self. before Triggering the animation event Rebind the Animator.</p> <pre><code> Animator anim = player.GetComponent<Animator>(); anim.Rebind(); </code></pre> |
18,089,916 | 0 | <p>As J L said, the easiest way by far is to use jQuery .click() with an appropriate locator. Check out: <a href="http://api.jquery.com/class-selector/" rel="nofollow">http://api.jquery.com/class-selector/</a></p> <p>You might also want to use <a href="http://api.jquery.com/jQuery.contains/" rel="nofollow">contains</a> or <a href="http://api.jquery.com/contents/" rel="nofollow">contents</a> features</p> |
5,859,273 | 0 | Domain name registered for client and they want to transfer it to another domain host. OK to charge them for the domain name? <p>I am a freelance programmer and often I will register a domain name for a client under a domain name reseller (and of course under my account). </p> <p>I wanted to know if there is any standard procedure for selling the domain name to the client or just let them transfer it.</p> <p>Does anyone know a normal procedure for this type of scenario?</p> |
3,156,892 | 0 | peer to multi-peer interprocess communication <p>What is the best method for peer to multi-peer interprocess communication in windows. ( One application will send interrupts to many listeners ) One method comes to my mind is to use SendMessage with the HWND_BROADCAST parameter. What else I can do?</p> |
1,924,360 | 0 | <p>You might set <code>DoubleBuffered</code> to true on your control / form. Or you could try using your own Image to create a double buffered effect.</p> <p>My <code>DoubleBufferedGraphics</code> class:</p> <pre><code>public class DoubleBufferedGraphics : IDisposable { #region Constructor public DoubleBufferedGraphics() : this(0, 0) { } public DoubleBufferedGraphics(int width, int height) { Height = height; Width = width; } #endregion #region Private Fields private Image _MemoryBitmap; #endregion #region Public Properties public Graphics Graphics { get; private set; } public int Height { get; private set; } public bool Initialized { get { return (_MemoryBitmap != null); } } public int Width { get; private set; } #endregion #region Public Methods public void Dispose() { if (_MemoryBitmap != null) { _MemoryBitmap.Dispose(); _MemoryBitmap = null; } if (Graphics != null) { Graphics.Dispose(); Graphics = null; } } public void Initialize(int width, int height) { if (height > 0 && width > 0) { if ((height != Height) || (width != Width)) { Height = height; Width = width; Reset(); } } } public void Render(Graphics graphics) { if (_MemoryBitmap != null) { graphics.DrawImage(_MemoryBitmap, _MemoryBitmap.GetRectangle(), 0, 0, Width, Height, GraphicsUnit.Pixel); } } public void Reset() { if (_MemoryBitmap != null) { _MemoryBitmap.Dispose(); _MemoryBitmap = null; } if (Graphics != null) { Graphics.Dispose(); Graphics = null; } _MemoryBitmap = new Bitmap(Width, Height); Graphics = Graphics.FromImage(_MemoryBitmap); } /// <summary> /// This method is the preferred method of drawing a background image. /// It is *MUCH* faster than any of the Graphics.DrawImage() methods. /// Warning: The memory image and the <see cref="Graphics"/> object /// will be reset after calling this method. This should be your first /// drawing operation. /// </summary> /// <param name="image">The image to draw.</param> public void SetBackgroundImage(Image image) { if (_MemoryBitmap != null) { _MemoryBitmap.Dispose(); _MemoryBitmap = null; } if (Graphics != null) { Graphics.Dispose(); Graphics = null; } _MemoryBitmap = image.Clone() as Image; if (_MemoryBitmap != null) { Graphics = Graphics.FromImage(_MemoryBitmap); } } #endregion } </code></pre> <p>Using it in an <code>OnPaint</code>:</p> <pre><code>protected override void OnPaint(PaintEventArgs e) { if (!_DoubleBufferedGraphics.Initialized) { _DoubleBufferedGraphics.Initialize(Width, Height); } _DoubleBufferedGraphics.Graphics.DrawLine(...); _DoubleBufferedGraphics.Render(e.Graphics); } </code></pre> <p>ControlStyles I generally set if I'm using it (you may have different needs):</p> <pre><code>SetStyle(ControlStyles.UserPaint, true); SetStyle(ControlStyles.AllPaintingInWmPaint, true); SetStyle(ControlStyles.DoubleBuffer, true); </code></pre> <p><strong>Edit:</strong></p> <p>Ok since the data is static you should paint to an Image (before your OnPaint) and then in the OnPaint use the <code>Graphics.DrawImage()</code> overload to draw the correct region of your source image to the screen. No reason to redraw the lines if the data isn't changing.</p> |
36,685,976 | 0 | How to retrieve function name from function address using link register (like backtrace_symbol) in linux <p>I want to write c program (like backtrace) I am getting the address of functions but I don't know how to convert those address to symbols (function name ). Please help me </p> |
8,716,961 | 0 | <p>Have you verified that <code>tableViewController</code> is not nil? </p> <p>your <code>@property</code> should definitely be strong as the view controller is taking ownership of the entity. A <code>weak</code> reference will definitely nil out.</p> <p>Likewise I would also put a breakpoint in the debugger and <strong>confirm</strong> that <code>[self booking]</code> does indeed point to a valid object <em>at that point in the code</em>.</p> |
16,800,534 | 0 | Purposefully exiting process for a dyno restart on heroku <p>I've got a phantomjs app (<a href="http://css.benjaminbenben.com" rel="nofollow">http://css.benjaminbenben.com</a>) running on heroku - it works well for some time but then I have to run <code>heroku restart</code> because it requests start timing out.</p> <p>I'm looking for a stop-gap solution (I've gone from around 6 to 4500 daily visitors over the last week), and I was considering exiting the process after it had served a set number of requests to fire a restart.</p> <p>Will this work? And would this be considered bad practice?</p> <p>(in case you're interested, the app source is here - <a href="https://github.com/benfoxall/wtcss" rel="nofollow">https://github.com/benfoxall/wtcss</a>)</p> |
17,185,050 | 0 | <p>This sounds like a homework question.... from networking 101.</p> <p>In any case, TCP connections are uniquely identified by the following properties: source IP address, source port, destination address, and destination port.</p> <p>Do an internet search for "TCP 4-tuple" or "TCP 5-tuple" for more details.</p> |
28,746,323 | 0 | I have to click twice to activate function using jQuery <p>I am having a lot of trouble with jQuery. I have to click twice on a button to make the page disappear. I have tried importing both versions of jQuery and I tried to use the fadeOut() function on different elements, but nothing has prevailed. It works the second time I click, but never the first. This is a recurring problem, and I need to know how it can be fixed. Here is my code:</p> <p>HTML:</p> <pre><code><body> <h1>CSS3 Buttons Showcase</h1> <a href="#" id="btn-1" onclick="fadeBg()">Click Me!</a> </body> </code></pre> <p>JavaScript:</p> <pre><code>function fadeBg(){ $("#btn-1").click(function(){ $("body").fadeOut(1000); }) } </code></pre> |
25,809,108 | 0 | <p>This uses the codename as a <em>String</em></p> <pre><code>Sub CodeIt() Dim CodeName As String CodeName = "Sheet1" Dim WS As Worksheet, GetWorksheetFromCodeName As Worksheet For Each WS In ThisWorkbook.Worksheets If StrComp(WS.CodeName, CodeName, vbTextCompare) = 0 Then Set GetWorksheetFromCodeName = WS Exit For End If Next WS MsgBox GetWorksheetFromCodeName.Name End Sub </code></pre> |
27,489,169 | 0 | Dynamic StringGrid C++ Builder <p>I created a program in C++Builder 6 and I have a problem now.</p> <p>I have 6 files: <code>Unit1.cpp</code>, <code>Unit1.h</code>, <code>Unit2.cpp</code>, <code>Unit2.h</code>, <code>Unit3.cpp</code>, <code>Unit3.h</code>.</p> <p><code>Unit1.cpp</code> is file for main form.</p> <p>Problem : I want to create in Function <code>void __fastcall TForm3::Button1Click(TObject *Sender)</code> a <code>TStringGrid</code> which will be visible in <code>Unit1.cpp</code> and <code>Unit2.cpp</code>. Next click should create new <code>TStringGrid</code> with new name(previous exist)</p> <p>I tried to fix my problem, I wrote some code, but it is not enough for me.<br> In <code>Unit1.h</code> I added: </p> <pre><code>void __fastcall MyFunction(TStringGrid *Grid1); </code></pre> <p>In <code>Unit1.cpp</code> I added: </p> <pre><code>void __fastcall TForm1::MyFunction(TStringGrid *Grid1) { Grid1 = new TStringGrid(Form2); Grid1->Parent = Form2; } </code></pre> <p>In <code>Unit3.cpp</code> I added:</p> <pre><code>#include "Unit1.h" </code></pre> <p>and the Button click function is: </p> <pre><code> void __fastcall TForm3::Button1Click(TObject *Sender) { Form1->MyFunction(Form1->Grid); //Grid was declarated previous in Unit1.h } </code></pre> <p>Now when I used this method I dynamically create a <code>TStringGrid</code>, but only one. How do I create as many <code>TStringGrid</code>s (with unique names) as the number of times the button is pressed? (Now i must declarate <code>TStringGrid</code> in <code>Unit1.h</code>).</p> |
36,030,762 | 0 | <p>Are you looking for mere joins? Put your two queries in your <code>FROM</code> clause and join them on <code>customer_id</code>, then join with the <code>customers</code> table and show the results.</p> <pre><code>select c.id as customer_id, c.first_name, c.last_name, c.preferred, period1.label_cost as period1_label_cost, period2.label_cost as period2_label_cost from ( select customer_id, sum(total_cost) as label_cost from orders where date(created_at) between <start_date1> and <end_date1> group by customer_id having sum(total_cost) > <sales_exceeded> ) period1 join ( select customer_id, sum(total_cost) as label_cost from orders where date(created_at) between <start_date2> and <end_date2> group by customer_id having sum(total_cost) < <sales_below> ) period2 on period2.customer_id = period1.customer_id join customers c on c.id = period1.customer_id; </code></pre> |
7,093,870 | 0 | GooglePlaces api to get information about stores iphone application <p>In my iPhone application, i want to show nearest stores to given latitude and longitude. </p> <p>I have used googlePlaces api to get nearby stores to given location coordinates. </p> <p>But i want to get other information about stores as well like opening and closing time of each store etc. </p> <p>How can i get that. </p> <p>Thanks</p> |
19,681,566 | 0 | PostgreSQL timestamp select <p>I'm using Posture and I got error message "invalid input syntax for type timestamp with time zone" when using the following select code:</p> <pre><code>SELECT * FROM public."table1" WHERE 'registrationTimestamp' BETWEEN to_timestamp('22-10-2013 00:00', 'DD-MM-YYYY HH24:MI') AND to_timestamp('22-10-2013 23:59', 'DD-MM-YYYY HH24:MI')** </code></pre> <p>While <code>registrationTimestamp</code> timestamp format is like following:</p> <pre><code>6/26/2012 6:43:10 PM </code></pre> |
36,440,387 | 0 | <p>Get rid of your loop. <code>std::find()</code> (and <code>std::find_if()</code>) does the necessary looping for you.</p> <p><code>std::find()</code> (and <code>std::find_if()</code>) returns an iterator to the element if found, or the specified <code>last</code> iterator if not found. If the element is found, pass the returned iterator to the vector's <code>erase()</code> method to remove the element.</p> <p>Since you are storing pointers in your vector, you cannot use <code>std::find()</code> to search by a <code>std::string</code> value. You need to use <code>std::find_if()</code> instead.</p> <p>Try this:</p> <pre><code>struct isID { const std::string &m_id; isID(const std::string &id) : m_id(id) {} bool operator()(const member *m) const { return (m->id == m_id); } }; </code></pre> <p></p> <pre><code>std::string id = ...; std::vector<member*>::iterator iter = std::find_if(memb.begin(), memb.end(), isID(id)); if (iter != memb.end()) { // since you are storing pointers in the vector, you // need to free the object being pointed at, if noone // else owns it... //delete *iter; memb.erase(iter); } </code></pre> <p>Or, if you are using C++11 or later:</p> <pre><code>std::string id = ...; auto iter = std::find_if(memb.begin(), memb.end(), [id](const member* m) { return (m->id == id); } ); if (iter != memb.end()) { // since you are storing pointers in the vector, you // need to free the object being pointed at, if noone // else owns it... //delete *iter; memb.erase(iter); } </code></pre> <p>In the latter case, if the vector is intended to own the objects, you can store <code>std::unique_ptr</code> objects in the vector to automatically free the <code>member</code> objects for you:</p> <pre><code>std::vector<std::unique_ptr<member>> memb; ... std::unique_ptr<member> m(new member); // or: std::unique_ptr<member> m = std::make_unique_ptr<member>(); memb.push_back(std::move(m)); // or: memb.push_back(std::unique_ptr<member>(new member)); // or: memb.push_back(std::make_unique<member>()); // or: memb.emplace_back(new member); ... if (iter != memb.end()) { // std::unique_ptr will free the object automatically // when the std::unique_ptr itself is destroyed... memb.erase(iter); } </code></pre> |
24,208,746 | 0 | <p>That's a warning your browser gives. When you take the solution live, buy a certificate and associate with your domain(be exact - wildcard or root certificate) and the warning will go away, and a beatiful lock will come to show the world how safe your site is. :-)</p> |
30,186,283 | 0 | WebRTC: One to one Audio call not working in different machine <p>I am trying to implement a one to one audio call using webRTC (signalling using websockets) . But it works when i try it in one system using multiple tabs of chrome (localhost). When I try to hit my server from another machine it does initial handshakes , but call doesn't happen.</p> <p>But when i try to change the tag to and changed the constraints to video constraints . it works even if the we try to access from other machine (i.e video call works ).</p> <p>I initially thought it was because if firewall but when video call worked I was puzzled . </p> <p>Here is my code:</p> <pre><code>// Constraints to get audio stream only $scope.constraints = { audio: { mandatory: { googEchoCancellation: true }, optional: [] }, video:false }; navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia; // success Callback of getUserMedia(), stream variable is the audio stream. $scope.successCallback = function (stream) { if (window.URL) { myVideo.src = window.URL.createObjectURL(stream); // converting media stream to Blob URL. } else { myVideo.src = stream; } //attachMediaStream(audioTag, stream); localStream = stream; if (initiator) maybeStart(); else doAnswer(); }; // failure Callback of getUserMedia() $scope.failureCallback = function (error) { console.log('navigator.getUserMedia Failed: ', error); }; var initiator, started = false; $("#call").click(function () { socket.emit("message", undefined); initiator = true; navigator.getUserMedia($scope.constraints, $scope.successCallback, $scope.failureCallback); }); var channelReady = false; socket.on('message', function (data) { channelReady = true; if (data) { if (data.type === 'offer') { if (!initiator) { $("#acceptCall").show(); $("#acceptCall").click(function(){ if (!initiator && !started) { var pc_config = { iceServers: [ { url: "stun:stun.l.google.com:19302" }, { url: "turn:numb.viagenie.ca", credential: "drfunk", username: "[email protected]"} ] }; pc = new webkitRTCPeerConnection(pc_config); pc.onicecandidate = onIceCandidate; pc.onaddstream = onRemoteStreamAdded; } pc.setRemoteDescription(new RTCSessionDescription(data)); $scope.acceptCall(); }); } } else if (data.type === 'answer' && started) { pc.onaddstream = onRemoteStreamAdded; pc.setRemoteDescription(new RTCSessionDescription(data)); } else if (data.type === 'candidate' && started) { var candidate = new RTCIceCandidate({ sdpMLineIndex: data.label, candidate: data.candidate }); pc.addIceCandidate(candidate); } else if (data.type === 'bye' && started) { console.log("Bye"); } } }); function onRemoteStreamAdded(event) { othersVideo.src = URL.createObjectURL(event.stream); }; var sdpConstraints = { 'mandatory': { 'OfferToReceiveAudio': true, 'OfferToReceiveVideo': false } }; function doAnswer() { pc.addStream(localStream); pc.createAnswer(gotDescription,null,sdpConstraints); } function gotDescription(desc) { pc.setLocalDescription(desc); socket.send(desc); } function maybeStart() { if (!started && localStream && channelReady) createPeerConnection(); pc.addStream(localStream); started = true; if (initiator) doCall(); } $scope.acceptCall = function () { navigator.getUserMedia($scope.constraints, $scope.successCallback, $scope.failureCallback); } function createPeerConnection() { var pc_config = { iceServers: [ { url: "stun:stun.l.google.com:19302" }, { url: "turn:numb.viagenie.ca", credential: "drfunk", username: "[email protected]"} ] }; pc = new webkitRTCPeerConnection(pc_config); pc.onicecandidate = onIceCandidate; console.log("Created RTCPeerConnnection with config:\n" + " \"" + JSON.stringify(pc_config) + "\"."); }; function doCall() { $scope.caller = true; pc.createOffer(setLocalAndSendMessage,null,sdpConstraints); }; function setLocalAndSendMessage(sessionDescription) { pc.setLocalDescription(sessionDescription); socket.send(sessionDescription); } function onIceCandidate(event) { if (event.candidate) { socket.emit('message', { type: 'candidate', label: event.candidate.sdpMLineIndex, id: event.candidate.sdpMid, candidate: event.candidate.candidate }); } else { console.log("End of candidates."); } } </code></pre> |
25,438,633 | 0 | <p>This happens because you are running in 'this' context. As a result what ever you changing in $(this) will get hoisted to top of the function. A simple example:</p> <pre><code>$('#txt').click(function () { console.log(this); var a = 10; var b = 20; var c = a+b; console.log(c); $(this).text('changed!'); $(this).attr('test','test'); }); </code></pre> <p>will hoist at the top</p> <pre><code>$(this).text('changed!'); $(this).attr('test','test'); </code></pre> <p>and the result will be</p> <pre><code><div id="txt" test="test">changed!</div> 30 </code></pre> <p><a href="http://jsfiddle.net/oeaw9mLy/" rel="nofollow">JSFiddle</a></p> |
12,179,319 | 0 | blending colors ios <p>I want to rectangular crop the eye from one face and paste it on another face, so that in the resulting image skin color of portion of eye blend nicely with the face color of the persons on which we are pasting eyes. I am able to crop and paste, but having problem with blending. Currently, the boundaries of the rectangular cropped eye after pasting are very much visible. I want to reduce this effect, so that the eyes nicely blend with face and resulting image won't look fake.</p> |
6,703,693 | 0 | <p>In the loop, you are going from <code>0</code> to the length of <code>alarmDetailsSeparated</code>. This is fine, but you are then indexing <code>alarmDetailsSeparated</code> using <code>i+1</code> and <code>i+2</code>.</p> <p>This means that when the loop is at <code>alarmDetailsSeparated.Length-2</code> the program will index <code>alarmDetailsSeparated.Length-2+2 = alarmDetailsSeparated.Length</code> and throw an out of bounds error.</p> |
14,745,605 | 0 | <p>I tried reproducing this in a simple <a href="http://jsbin.com/abaveh/1/edit" rel="nofollow">jsbin demo</a> to no avail. Drag and drop seems to work without losing the content. The code I've used was this:</p> <pre><code> <textarea class="editor" style="width: 400px">Editable Content</textarea> <textarea class="editor" style="width: 400px">Editable Content</textarea> <textarea class="editor" style="width: 400px">Editable Content</textarea> <textarea class="editor" style="width: 400px">Editable Content</textarea> <script> $(".editor").kendoEditor().closest(".k-widget").draggable(); </script> </code></pre> |
19,169,086 | 0 | fprintf is not declared in this scope <p>I'm trying to run this code in code blocks 12.11 and keep getting this error:fprintf is not declared in this scope</p> <pre><code># include <GL/glew.h> # include <GL/freeglut.h> using namespace std; //any time the window is resized, this function is called. It set up to the // "glutReshapeFunc" in Maine. void changeViewport(int w, int h) { glViewport(0, 0, w, h); } //Here is the function that gets called each time the window needs to be redrawn. //It is the "paint" method for our program, and it is set up from the glutDisplayFunc in main. void render() { glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glutSwapBuffers(); } int main (int argc, char** argv) { //Initialize GLUT glutInit(&argc, argv); //Set up some memory buffers for our display glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGBA | GLUT_DEPTH); //set the window size glutInitWindowSize(900, 600); //Create the window with the title "Hello, GL" glutCreateWindow("Hello, GL"); //Bind the two functions (above) to respond when necessary glutReshapeFunc(changeViewport); glutDisplayFunc(render); //Very important! This initializes the entry points in the OpenGL driver so we can //call functions in the API. GLenum err = glewInit(); if (GLEW_OK != err) { fprintf(stderr, "GLEW error"); return 1; } //Start up a loop that runs in the background (you never see it). glutMainLoop(); return 0; } </code></pre> <p>I am unsure as to what to do. If anybody has any ideas please let me know.</p> |
315,300 | 0 | <p><strong>TFOOT Customisation:</strong></p> <p>The footer will always default to creating the same number of cells as the rest of the gridview. You can override this in code by adding:</p> <pre><code>protected void OurGrid_RowCreated(object sender, GridViewRowEventArgs e) { if(e.Row.RowType == DataControlRowType.Footer) { int colSpan = e.Row.Cells.Count; for(int i = (e.Row.Cells.Count - 1); i >= 1; i -= 1) { e.Row.Cells.RemoveAt(i); e.Row.Cells[0].ColumnSpan = colSpan; } HtmlAnchor link1 = new HtmlAnchor(); link1.HRef = "#"; link1.InnerText = "Newest Members"; HtmlAnchor link2 = new HtmlAnchor(); link2.HRef = "#"; link2.InnerText = "Top Posters"; // Add a non-breaking space...remove the space between & and nbsp; // I just can't seem to get it to render in LiteralControl space = new LiteralControl("& nbsp;"); Panel p = new Panel(); p.Controls.Add(link1); p.Controls.Add(space); p.Controls.Add(link2); e.Row.Cells[0].Controls.Add(p); } } </code></pre> <p>...and add the onrowcreated attribute to the server control:</p> <pre><code><asp:GridView ID="ourGrid" onrowcreated="OurGrid_RowCreated" ... </code></pre> <p><strong>THEAD styles:</strong></p> <p>You can specify the header css class for each column in the 'headerstyle-cssclass' for each bound field. For example:</p> <pre><code><asp:BoundField headerstyle-cssclass="col1_style1" DataField="Name" HeaderText="Full Name" /> <asp:BoundField headerstyle-cssclass="col1_style2" DataField="Gender" HeaderText="Gender" /> </code></pre> <p><strong>Table Summary:</strong></p> <p>Just add the summary attribute to the griview:</p> <pre><code><asp:GridView ID="ourGrid" summary="blah" ... </code></pre> <p>Putting it all together:</p> <pre><code><%@ Page Language="C#" %> <%@ Import Namespace="System.Data"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> protected void Page_Load(object sender, EventArgs e) { DataSet ds = CreateDataSet(); this.gv.DataSource = ds.Tables[0]; this.gv.DataBind(); this.gv.HeaderRow.TableSection = TableRowSection.TableHeader; this.gv.FooterRow.TableSection = TableRowSection.TableFooter; } protected void OurGrid_RowCreated(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.Footer) { int colSpan = e.Row.Cells.Count; for (int i = (e.Row.Cells.Count - 1); i >= 1; i -= 1) { e.Row.Cells.RemoveAt(i); e.Row.Cells[0].ColumnSpan = colSpan; } HtmlAnchor link1 = new HtmlAnchor(); link1.HRef = "#"; link1.InnerText = "Newest Members"; HtmlAnchor link2 = new HtmlAnchor(); link2.HRef = "#"; link2.InnerText = "Top Posters"; LiteralControl l = new LiteralControl("&nbsp;"); Panel p = new Panel(); p.Controls.Add(link1); p.Controls.Add(l); p.Controls.Add(link2); e.Row.Cells[0].Controls.Add(p); } } private DataSet CreateDataSet() { DataTable table = new DataTable("tblLinks"); DataColumn col; DataRow row; col = new DataColumn(); col.DataType = Type.GetType("System.Int32"); col.ColumnName = "ID"; col.ReadOnly = true; col.Unique = true; table.Columns.Add(col); col = new DataColumn(); col.DataType = Type.GetType("System.DateTime"); col.ColumnName = "Date"; col.ReadOnly = true; col.Unique = false; table.Columns.Add(col); col = new DataColumn(); col.DataType = Type.GetType("System.String"); col.ColumnName = "Url"; col.ReadOnly = true; col.Unique = false; table.Columns.Add(col); DataColumn[] primaryKeysColumns = new DataColumn[1]; primaryKeysColumns[0] = table.Columns["ID"]; table.PrimaryKey = primaryKeysColumns; DataSet ds = new DataSet(); ds.Tables.Add(table); row = table.NewRow(); row["ID"] = 1; row["Date"] = new DateTime(2008, 11, 1); row["Url"] = "www.bbc.co.uk/newsitem1.html"; table.Rows.Add(row); row = table.NewRow(); row["ID"] = 2; row["Date"] = new DateTime(2008, 11, 1); row["Url"] = "www.bbc.co.uk/newsitem2.html"; table.Rows.Add(row); return ds; } </script> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <style type="text/css"> .red { color: red; } .olive { color:Olive; } .teal { color:Teal; } </style> </head> <body> <form id="form1" runat="server"> <div> <asp:gridview id="gv" autogeneratecolumns="false" showheader="true" showfooter="true" summary="Here is the news!" caption="The Caption" captionalign="Top" alternatingrowstyle-cssclass="alt_row" useaccessibleheader="true" onrowcreated="OurGrid_RowCreated" runat="server"> <columns> <asp:boundfield headertext="ID" headerstyle-cssclass="olive" datafield="id" /> <asp:hyperlinkfield headertext="Link" headerstyle-cssclass="red" datanavigateurlfields="Url" datanavigateurlformatstring="http://{0}" datatextfield="Url" datatextformatstring="http://{0}" /> <asp:boundfield headertext="Date" headerstyle-cssclass="teal" datafield="Date"/> </columns> </asp:gridview> </div> </form> </body> </html> </code></pre> <p>The above produces the following HTML:</p> <pre><code><table cellspacing="0" rules="all" summary="Here is the news!" border="1" id="gv" style="border-collapse:collapse;"> <caption align="Top"> The Caption </caption> <thead> <tr> <th class="olive" scope="col">ID</th> <th class="red" scope="col">Link</th> <th class="teal" scope="col">Date</th> </tr> </thead> <tbody> <tr> <td>1</td> <td> <a href="http://www.bbc.co.uk/newsitem1.html"> http://www.bbc.co.uk/newsitem1.html </a> </td> <td>01/11/2008 00:00:00</td> </tr> <tr class="alt_row"> <td>2</td> <td> <a href="http://www.bbc.co.uk/newsitem2.html"> http://www.bbc.co.uk/newsitem2.html </a> </td> <td>01/11/2008 00:00:00</td> </tr> </tbody> <tfoot> <tr> <td colspan="3"> <div> <a href="#">Newest Members</a>&nbsp;<a href="#">Top Posters</a> </div> </td> </tr> </tfoot> </table> </code></pre> |
32,514,840 | 0 | <p>The actual problem was I was not binding them both with another object. (REPL) Additional Info: Because the companion object and the class must be defined in the same source file you cannot create them in the interpreter. source: daily-scala work around: bind both with some object in REPL or as user #shadowlands said You can create them in the REPL, but you need to do so as part of a single :paste command (type :help for a list of REPL commands)</p> |
32,237,671 | 0 | <p>I thought so (the <strong>32 bit</strong> part). You're running into a problem generated by <a href="https://msdn.microsoft.com/en-us/library/windows/desktop/aa384253(v=vs.85).aspx" rel="nofollow">Registry redirection</a>.</p> <p>In other words (on 64bit <em>Windows</em>), for some registry keys (this one included) there are 2 separate locations: one for 64bit(default and old one) and other for 32bit(a new location). By default a 64bit app automatically uses the 64bit registry location; same thing for 32 bit (of course that can be programmatically modified - at least for 64bit apps). </p> <p>So, in order for 32bit apps that have some registry keys hardcoded to still work on 64bit <em>Windows</em> (remember the key hardcoded in the 32bit app is now 64 bit, and it's <em>invisible</em> to the app, while the <em>real</em> 32bit is someplace else), <em>Microsoft</em> came up with this approach. Same approach applies to paths on the filesystem (<em><strong>System32</strong></em> vs <em><strong>SysWOW64</strong></em> under <em>C:\Windows</em>).</p> <p>Now why does it work from cmdline? Being a 64bit OS, the default <em>cmd</em> is 64 bit (which launches the 64bit <em>reg.exe</em>), so it finds the key. Yes you have 2 <em>cmd</em>s (one under each of the above folders), actually (almost) all the <em>Windows</em> executables and dlls are <em>duplicated</em>.</p> <p>To test, start <em>cmd.exe</em> from <em>C:\Windows\SysWOW64</em>, and run the <em>reg</em> command and it will fail.</p> <p>Finally, to get past this, associate <em>.py</em> files (I noticed that you ran it directly) with a 64bit <em>Python</em> version (you might have to download and install it).</p> |
40,506,235 | 0 | <p>You can do it like : </p> <pre><code>ResultSet rs = stmt.executeQuery(sql); String result = null; if (rs.next()) { // replace 'if' with 'while' to iterate if multiple records result = rs.getString("result"); } </code></pre> <p>if you have more records, you can replace <code>if</code> with <code>while</code> and can iterate over <code>ResultSet</code>.</p> <p>For the complete working example you can go through the <a href="http://www.mkyong.com/jdbc/jdbc-preparestatement-example-select-list-of-the-records/" rel="nofollow noreferrer">example here.</a></p> |
12,446,859 | 0 | <p>Since you also have the <code>sql-server</code> tag on your question, unfortunately sql-server doesn't have <code>GROUP_CONCAT</code>, an alternative like <a href="http://stackoverflow.com/questions/451415/simulating-group-concat-mysql-function-in-ms-sql-server-2005">FOR XML / STUFF</a> is needed:</p> <pre><code>SELECT f.id, f.movie_name, STUFF((SELECT ',' + p.person_name FROM persons p INNER JOIN films_cast fc on fc.person_id = p.id WHERE fc.film_id = f.id AND fc.type = 'director' FOR XML PATH ('')) , 1, 1, '') AS director, STUFF((SELECT ',' + p.person_name FROM persons p INNER JOIN films_cast fc on fc.person_id = p.id WHERE fc.film_id = f.id AND fc.type = 'writer' FOR XML PATH ('')) , 1, 1, '') AS writer, STUFF((SELECT ',' + p.person_name FROM persons p INNER JOIN films_cast fc on fc.person_id = p.id WHERE fc.film_id = f.id AND fc.type = 'actor' FOR XML PATH ('')) , 1, 1, '') AS cast FROM films f; </code></pre> <p><a href="http://sqlfiddle.com/#!3/e1cd1/1" rel="nofollow">SQLFiddle here</a></p> |
20,729,835 | 0 | <p>You can use the knockout.js context debugger chrome extension to help you debug your issue</p> <p><a href="https://chrome.google.com/webstore/detail/knockoutjs-context-debugg/oddcpmchholgcjgjdnfjmildmlielhof" rel="nofollow">https://chrome.google.com/webstore/detail/knockoutjs-context-debugg/oddcpmchholgcjgjdnfjmildmlielhof</a></p> |
4,788,126 | 0 | <pre><code>function handle_form($fields, $POST) { $data = array(); foreach ($fields as $field) { if ($field->type == "file") do_upload($field->post); $data[$field->name] = $POST[$field->post]; } $this->db->insert('table', $data); } </code></pre> |
14,553,627 | 0 | <p><strong>edit</strong>: even GCC doesn't let you do this! Corrected.</p> <p>In general, no. You could hack together a macro using <code>__FILE__</code>, <code>__LINE__</code>, and/or <code>__COUNTER__</code> (the latter being another compiler extension, but supported on GCC and MSVC among others) to name the fields for you, if you <em>really</em> wanted to.</p> |
4,829,249 | 0 | <p>i think i read somewhere that it is more difficult to add table rows to an existing table. it had something to do with some browsers adding a tbody tag for you and other browsers not liking a tr tag that doesn't have a table tag wrapped around it (ie).</p> <p>if possible, you could convert your table to divs (or possibly lis) then i think you could get around this issue. i think jQueryUI's draggable has this limitation, not sure.</p> <p>if moving away from tables is not possible, you can probably hide the row, then instantaneously move the row to position, and create a div that looks just like it and move that around, then after the animation you kill the animation div and show the new row.</p> <p>hth</p> |
19,119,752 | 0 | <p>So after a long profiling session, with XDEBUG, phpmyadmin and friends, I finally narrowed down what the bottleneck was: the mysql queries</p> <p>I enabled </p> <p><code>define('SAVEQUERIES', true);</code></p> <p>to examine the queries in more detail and I output the queries array to my debug.log file</p> <pre><code>global $wpdb; error_log( print_r( $wpdb->queries, true ) ); </code></pre> <p>upon examining each INSERT call to the database</p> <ol> <li><p>wp_insert_post()</p> <p>[0] => INSERT INTO <code>wp_posts</code> (<code>post_author</code>,<code>post_date</code>,<code>post_date_gmt</code>,<code>post_content</code>,<code>post_content_filtered</code>,<code>post_title</code>,<code>post_excerpt</code>,<code>post_status</code>,<code>post_type</code>,<code>comment_status</code>,<code>ping_status</code>,<code>post_password</code>,<code>post_name</code>,<code>to_ping</code>,<code>pinged</code>,<code>post_modified</code>,<code>post_modified_gmt</code>,<code>post_parent</code>,<code>menu_order</code>,<code>guid</code>) VALUES (...)</p> <p>[1] => 0.10682702064514</p></li> <li><p>update_post_meta()</p> <p>[0] => INSERT INTO <code>wp_postmeta</code> (<code>post_id</code>,<code>meta_key</code>,<code>meta_value</code>) VALUES (...)</p> <p>[1] => 0.10227680206299</p></li> </ol> <p>I found that each one of those calls to the database costs, on average, ~0.1 s on my localhost server</p> <p>But, since I am updating 6 custom fields per entry, it works out to </p> <p>6 cf insert calls/entry * ~0.1s/cf insert call *20 000 total entries * 1 min/60s = 200 min </p> <p>~2.5 hrs to process the custom fields alone for 20k posts</p> <p>Now, since all the custom fields are inserted into the same table, wp_post_meta, I looked to combine all the update_post_meta calls into one call, and hence, drastically improve the performance in terms of the execution time of this import script.</p> <p>I looked through the update_post_meta function in the wp core and saw there was no native option to pass an array instead of a single cf key and value, so I went through the relevant code to pinpoint the SQL INSERT line and looked how to do something along the lines of:</p> <pre><code>`INSERT INTO `wp_postmeta` (`post_id`,`meta_key`,`meta_value`) VALUES ( $post_id, 'artist_name' , $artist) ( $post_id, 'song_length' , $length ) ( $post_id, 'song_genre' , $genre ) ...` </code></pre> <p>and so forth for all the 6 custom fields in my case, all rolled in inside a single <code>$wpdb->query();</code> .</p> <p>Tweaking my process_custom_post() function to reflect this, I ended up with:</p> <pre><code>function process_custom_post($song) { global $wpdb; // Prepare and insert the custom post $track = (array_key_exists(0, $song) && $song[0] != "" ? $song[0] : 'N/A'); $custom_post = array(); $custom_post['post_type'] = 'songs'; $custom_post['post_status'] = 'publish'; $custom_post['post_title'] = $track; $post_id = wp_insert_post( $custom_post ); // Prepare and insert the custom post meta $meta_keys = array(); $meta_keys['artist_name'] = (array_key_exists(1, $song) && $song[1] != "" ? $song[1] : 'N/A'); $meta_keys['song_length'] = (array_key_exists(2, $song) && $song[2] != "" ? $song[2] : 'N/A'); $meta_keys['song_genre'] = (array_key_exists(3, $song) && $song[3] != "" ? $song[3] : 'N/A'); $meta_keys['song_year'] = (array_key_exists(4, $song) && $song[4] != "" ? $song[4] : 'N/A'); $meta_keys['song_month'] = (array_key_exists(5, $song) && $song[5] != "" ? $song[5] : 'N/A'); $meta_keys['sample_playlist'] = (array_key_exists(6, $song) && $song[6] != "" ? $song[6] : ''); $custom_fields = array(); $place_holders = array(); $query_string = "INSERT INTO $wpdb->postmeta ( post_id, meta_key, meta_value) VALUES "; foreach($meta_keys as $key => $value) { array_push($custom_fields, $post_id, $key, $value); $place_holders[] = "('%d', '%s', '%s')"; } $query_string .= implode(', ', $place_holders); $wpdb->query( $wpdb->prepare("$query_string ", $custom_fields)); return true; } </code></pre> <p>and viola! Instead of 7 INSERT calls to the database per custom post, I end up with 2 making a gynormous difference when attempting to process multiple custom fields while iterating over a large number of posts - in my case now, 20k entries are processed to completion within 15-20min (vs a situation where I would experience a dropout after ~17k posts and a few hrs of processing time)...</p> <p>So the key thing I learned from this whole experience, </p> <p>mind your database calls - they can quickly add up!</p> |
8,253,649 | 0 | tt_news - where is the register "newsMoreLink" be defined? <p>The extension tt_news is very useful for me but there is this little thingy called "register:newsMoreLink". This register does contain the singlePid of the contentelement (defined a single view page) and the uid of the newsarticle from the news extension. </p> <p>This is the typoscript section of the "new ts" of the extension tt_news As you can see there is "append.data = register:newsMoreLink"...</p> <pre><code>plugin.tt_news { displayLatest { subheader_stdWrap { # the "more" link is directly appended to the subheader append = TEXT append.data = register:newsMoreLink append.wrap = <span class="news-list-morelink">|</span> # display the "more" link only if the field bodytext contains something append.if.isTrue.field = bodytext outerWrap = <p>|</p> } } } </code></pre> <p>What is "register:newsMoreLink"? Is this like a function or something? I do not know. But "register:newsMoreLink" produces a strange link if I use this on "append.data". It produces are "More >" link. The "More >" <em>link</em> after a news article teaser looks like this: </p> <blockquote> <p><a href="http://192.168.1.29/website/index.php?id=" rel="nofollow">http://192.168.1.29/website/index.php?id=</a><strong>474</strong>&tx_ttnews%5Btt_news%5D=<strong>24</strong>&cHash=95d80a09fb9cbade7e934cda5e14e00a</p> </blockquote> <p>474 is the "singlePid" (this is what it calls in the database 24 is the "uid" of the news article (the ones you create with the tt_news plugin in the backend)</p> <p>My question is: Where is the "register:newsMoreLink" defined? Is it defined generally or do I miss a fact of Typo3..? How can I add an anchor link at the end of this "More >" href? Like: </p> <blockquote> <p><a href="http://192.168.1.29/website/index.php?id=474&tx_ttnews%5Btt_news%5D=24&cHash=95d80a09fb9cbade7e934cda5e14e00a" rel="nofollow">http://192.168.1.29/website/index.php?id=474&tx_ttnews%5Btt_news%5D=24&cHash=95d80a09fb9cbade7e934cda5e14e00a</a><strong>#myAnchor1</strong></p> </blockquote> |
20,279,340 | 0 | <p>Let's start from the beginning. Since <code>fs</code> is a <code>List[Future[T]]</code>, you know <code>x</code> is a <code>Future[T]</code>.</p> <p>You need to register a callback that will fire when the result of <code>x</code> becomes available. The easy way to do this is with <code>onComplete</code>, which takes a function of type <code>Try[T] => U</code>. </p> <p>So the underscore is a <code>Try[T]</code>, which holds the result of <code>x</code>, the <code>Future[T]</code>. There are two possible results for a <code>Future</code>: <code>Success[T]</code>, when the <code>Future[T]</code> worked and holds a result, and <code>Failure[T]</code>, which holds an exception because the <code>Future[T]</code> didn't work. </p> <p>So <code>Try</code> is similar to <code>Option</code>, a way to safely represent an outcome.</p> <p>Hope that helps.</p> |
36,287,102 | 0 | <p>For Junk values, Try to change the baud rate!<br/><br/> I think you are sending a data from BT device to android device only one time. try running the code continuously in arduino device. </p> <p><code>while(1){ loop(); }</code></p> |
7,732,831 | 0 | <p>Assuming you want to use <code>Ada.Text_IO</code> and not just <code>Put_Line</code> specifically, and assuming that <code>Number_Of_Rows</code> is meant to be an integer range like <code>Num_Char</code>, that would be</p> <pre><code>for R in The_Chars'Range (1) loop for C in The_Chars'Range (2) loop Ada.Text_IO.Put (The_Chars (R, C)); end loop; Ada.Text_IO.New_Line; end loop; </code></pre> |
6,306,529 | 0 | <p>You can limit your search results, from the <a href="http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.jdt.doc.user/reference/ref-dialog-java-search.htm" rel="nofollow">Java Search</a> tab, if you are employing Java Search in the first place.</p> <p>Searches can be limited to References, Declarations, Implementors and selected other areas of the source code, instead of All ocurrences (which might be the default in your case).</p> <p>If you are referring to plain text searches (the File Search tab), then you are out of luck.</p> |
10,704,232 | 0 | <p>Another option is to just use Resharper's To-do Explorer window, which you probably already have and if not, should have. You can dock it right with the other windows. It parses all the files (cs, js, css, etc.).</p> |
22,969,828 | 0 | <p>I recommend you use jQuery, this works:</p> <pre><code>$("#city").change(function (e) { e.preventDefault; var city = $("#city option:selected").text(); if ( city == "Berlin" ) { alert("You are in Berlin"); } }); </code></pre> |
40,855,257 | 0 | <p>Another nice workaround is to declare a static instance of your view model in App.xaml: <code><ViewModelTypeName x:Key="ViewModelName" d:IsDataSource="True" /></code>and bind like this <code>Command="{Binding Source={StaticResource ViewModelName}, Path=MyCommand}"</code> I had the same issue when i needed to bind from Window and menuitem's native DataContext simultaneously. Also this solution looks not that complicated.</p> |
5,767,250 | 0 | <p>Upgrade to Xcode 4.0.2. </p> <p>It fixed this issue (crash on launch for ARMv6 but not ARMv7 with optimization turned on) for us.</p> |
11,899,486 | 0 | <p>The most efficient seems to be setting the opacity in my tests. Another simple approach is to redraw the visuals that are affected.</p> <pre><code>using (DrawingContext dc = RenderOpen()) {} //Hide this visual </code></pre> <p>And then redraw when they become visible again.</p> <p>Rendering a blank drawingcontext seems to be very quick. But if you have complicated visuals it could take time to rerender them when they become visible.</p> |
36,824,566 | 0 | Calling a method individually by class selector <p>In my blog I'm using Pico CMS, in the index.twig page I wrote this code that generates HTML with page title, description, and URL:</p> <pre><code>{% for page in pages|sort_by("time") %} {% if page.id starts with "blog/" %} <div class="post"> <h3> <a class="page-title" href="{{ page.url }}">{{ page.title }}</a> <small class="date">{{ page.date }}</small> </h3> <p class="excerpt">{{ page.description }}</p> {% endif %} {% endfor %} </code></pre> <p>My idea was to make each title in a different color, I used <a href="https://github.com/davidmerfield/randomColor" rel="nofollow">randomColor</a>, and wrote this JavaScript:</p> <pre><code>$('.page-title').css('color', randomColor() ); </code></pre> <p>But this makes all the page-titles in the page to be of same color, I would like each of them in a different color. This is the website: <a href="http://blog.lfoscari.com" rel="nofollow">blog.lfoscari.com</a></p> |
39,537,192 | 0 | R plot.xts error bars <p>Trying to put error bars on a time series plot using <code>plot.xts</code></p> <pre><code>> myTS[1:20] [,1] 2013-07-01 29 2013-07-03 24 2013-07-03 16 2013-07-03 16 2013-07-03 12 2013-07-03 12 2013-07-03 16 2013-07-03 21 2013-07-03 21 2013-07-03 16 2013-07-05 12 2013-07-05 12 2013-07-05 12 2013-07-05 12 2013-07-08 16 2013-07-08 23 2013-07-08 16 2013-07-08 12 2013-07-09 16 2013-07-09 12 </code></pre> <p>I've aggregated this using <code>myTSquarterly = apply.quarterly(myTS,mean)</code></p> <pre><code>> myTSquarterly [,1] 2013-09-30 24.50829 2013-12-31 23.79624 2014-03-31 24.15170 2014-06-30 24.57641 2014-09-30 23.71467 2014-12-31 22.99500 2015-03-31 24.50423 2015-06-30 25.19950 2015-09-30 24.76330 2015-12-31 24.65810 2016-03-31 25.35616 2016-06-30 22.71066 2016-07-27 20.63636 </code></pre> <p>I can plot easily using <code>plot.xts(myTSquarterly)</code>:</p> <p><a href="https://i.stack.imgur.com/fOXD8.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/fOXD8.png" alt="enter image description here"></a></p> <p>I can calculate standard deviation easily as well with <code>apply.quarterly(myTS,sd)</code></p> <p>I would like to add these standard deviation info as error bars to the plot, but I cannot find a method for this?</p> |
12,763,310 | 0 | <p>It seems, that your problem has indeed to do with UTF-8. I analyzed your example pages with firebug, and it revealed, that the html pages contain the <strong>UTF-8 BOM-header</strong>, but the untranslated page contains it twice!</p> <p>These 3 characters ( ) at the begin of the file are written by your editor, but they won't be displayed. With a HEX-editor you can see the difference, you can also go to the file properties and look at the file size, you will notice that they differ slightly.</p> <p>My recommendation would be, to save the files as UTF-8 <strong>without</strong> BOM-header. Especially the double header makes the IE to switch to the quirks-mode (you can press <code>F12</code> to get the developer tools in IE to see it), and that causes the different rendering. A double BOM-header is wrong in any case.</p> <p>EDIT:</p> <p>Just found a wonderful tool for <a href="http://validator.w3.org/i18n-checker/" rel="nofollow">checking utf-8 BOM and header</a> problems.</p> |
26,094,832 | 0 | Load https site in iframe on http site <p>We want to load a page of our platform into an iframe on a client site. Our platform contains a SSL certificate and runs always on HTTPS. The client's site runs on HTTP. </p> <p>The URL that get's loaded into the iframe contains URL params for the name of the user. Are these url parameters send encrypted because the site in the iframe is HTTPS or are they accessible because the the parameters are created on the client HTTP site?</p> <p>Short example: Client site (HTTP) loads iframe with url "<a href="https://oursite.com/?firstname=Bob&lastname=Forrest" rel="nofollow">https://oursite.com/?firstname=Bob&lastname=Forrest</a>". Are the URL parameters encrypted when they are transferred to the iframe site?</p> <p>Thanks in advance.</p> |
16,197,555 | 0 | Keeping std::map balanced when using an object as key <p>I am writing some code where I am storing lots of objects that I want to get back based on set criteria. So to me it made sense to use a map with an object as a key. Where the object would contain the "set criteria".</p> <p>Here is a simplified example of the kind of objects i am dealing with:</p> <pre><code> class key { int x,y,w,h; } class object { ... } std::map<key, object, KeyCompare> m_mapOfObjects; </code></pre> <p>Quite simple, the first thought was to create a compare functions like this:</p> <pre><code> struct KeyCompare { bool operator()(const key &a, const key &b) { return a.x < b.x || a.y < b.y || a.w < b.w || a.h < b.h; } } </code></pre> <p>but then i thought the chances of this returning true are quite high. So I figured this would lead to a very unbalanced tree and therefore slow searching. </p> <p>My main worry is that as I understand it, std::map uses that one function in this way: if( keyCompare(a,b) ) { //left side } else if (keyCompare(b,a)) { //right side } else { //equal } So i can't just use a.x < b.x, because then anything with the same x would be considered equal, which is not what i want. I would not mind it ordering it in this way but its the "equal" bit i just can't seem to solve without making it unbalanced. </p> <p>I figure multiplying them all together is a no no for obvious reasons.</p> <p>So the only solution i could come up with was to create a "UID" base on the info:</p> <pre><code> typedef long unsigned int UIDType; class key { private: UIDType combine(const UIDType a, const UIDType b) { UIDType times = 1; while (times <= b) times *= 10; return (a*times) + b; } void AddToUID(UIDType number) { if(number < m_UID) { m_UID = combine(number, m_UID); } else { m_UID = combine(m_UID, number); } } UIDType UID; public: int x,y,w,h; key() { AddToUID(x); AddToUID(y); AddToUID(w); AddToUID(h); } } struct KeyCompare { bool operator()(const key &a, const key &b) { return a.UID < b.UID; } } </code></pre> <p>But not only does that feel a little hacky, "long unsigned int" isn't big enough to hold the potential numbers. I <em>could</em> put it in a string, but speed is an issue here and I assumed an std::string < is expensive. Overall though the smaller i can make this object the better. </p> <p>I was wondering if anyone has any suggestions for how to do this better. Perhaps i need to use something other then a std::map or perhaps there is another overload. Or perhaps there is something glaringly obvious that i'm missing here. I really feel like i'm over-complicating this, perhaps im really barking up the wrong tree with a map. </p> <p>As i was writing this it occurs to me that divide is another way to get a "unique" number but that could also equal very large numbers</p> |
8,327,569 | 0 | <p>Here:</p> <pre><code>public static bool TryConvertToInt32(decimal val, out int intval) { if (val > int.MaxValue || val < int.MinValue) { intval = 0; // assignment required for out parameter return false; } intval = Decimal.ToInt32(val); return true; } </code></pre> |
11,192,505 | 0 | Update MySQL field; condition = string field between two numbers <p>I am trying to update a field's value if a string column is between two numbers.</p> <pre><code>UPDATE SAMPLE.EXAMPLE SET modNum = CONCAT(modNum,"26") WHERE modNum NOT LIKE '%26%' AND (procKey BETWEEN 90000 AND 99123 OR procKey = 77444); </code></pre> <p>Unfortunately I get an error: </p> <blockquote> <p>Error Code: 1292. Truncated incorrect DOUBLE value: '4123F '</p> </blockquote> <p>I am surprised because when I do a select I get the expected results.</p> <pre><code>SELECT * FROM SAMPLE.EXAMPLE WHERE modNum NOT LIKE '%26%' AND (procKey BETWEEN 90000 AND 99123 OR procKey = 77444); </code></pre> <p>Create table statement:</p> <pre><code>'CREATE TABLE `example` ( `id` int(11) NOT NULL AUTO_INCREMENT, `modNum` char(4) DEFAULT NULL, `procKey` char(8) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1' </code></pre> <p>Sample Data:</p> <pre><code>INSERT INTO `SAMPLE`.`EXAMPLE` (`modNum`, `procKey`) VALUES ('42', '99001'); INSERT INTO `SAMPLE`.`EXAMPLE` (`modNum`, `procKey`) VALUES ('42', '9900f'); </code></pre> <p>What can I do to update the columns given my conditions?</p> <hr> <hr> <p>To me it looks like a bug. The best I can come up with is to check if the value of procKey is an integer by using regular expressions. I changed my UPDATE statement to be:</p> <pre><code>UPDATE SAMPLE.EXAMPLE SET modNum = CONCAT(modNum,"26") WHERE modNum NOT LIKE '%26%' AND procKey REGEXP '^[0-9]+$' AND (procKey BETWEEN 90000 AND 99123 OR procKey = 77444); </code></pre> <p>Please, let me know if there is a better way.</p> |
5,709,094 | 0 | Raise an event from inside native c function? <p>I am developing an application that does a callback to a native c function after playing a system sound. I would like to raise an event when this happens, so a subscriber on my view may handle it.</p> <pre><code>-(void) completionCallback(SystemSoundID mySSID, void* myself) { [[NSNotificationCenter defaultCenter] postNotificationName:@"SoundFinished" object: myself]; } </code></pre> <p>I recieve <code>unrecognized selector sent to instance ...</code></p> <p>On the view, I have the following code:</p> <pre><code>[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(soundStopped) name:@"SoundFinished" object:nil]; </code></pre> <p>...</p> <pre><code>-(void) soundStopped: (NSNotification*) notification { NSLog(@"Sound Stopped"); } </code></pre> <p>I am extremely new to objective-c, where am I going wrong?</p> <p>Update The exact error is:</p> <pre><code> 2011-04-18 19:27:37.922 AppName[5646:307] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[BackgroundTestViewController soundStopped]: unrecognized selector sent to instance 0x13b4b0' </code></pre> |
36,267,484 | 0 | <p>My guess is that you're experiencing a compiler bug. The <code>format</code> keyword, as any other keyword declared with <code>BOOST_PARAMETER_KEYWORD</code> from <a href="http://www.boost.org/doc/libs/1_60_0/libs/parameter/doc/html/index.html" rel="nofollow">Boost.Parameter</a>, is indeed a constant reference. However, there is a const-qualified assignment operator in <code>boost::parameter::keyword</code>, which should be picked by the compiler.</p> <p>As a workaround, you can try replacing the keyword with a call to <code>get</code> static function like this:</p> <pre><code>// Replace this: keywords::format = "%Timestamp% %Message%" // with this: boost::parameter::keyword<keywords::tag::format>::get() = "%Timestamp% %Message%" </code></pre> <p>Also, please note that the attribute names are case sensitive, and the <code>add_common_attributes</code> function adds a "TimeStamp" attribute, not "Timestamp" (note the upper-case S).</p> |
2,817,383 | 0 | Basic PHP logic problem <pre><code>$this->totplpremium is 2400 $this->minpremiumq is 800 </code></pre> <p>So why would this ever return true?!</p> <pre><code>if ($this->totplpremium < $this->minpremiumq){ </code></pre> <p>The figures are definitely correct and I am definitely using the 'less than' symbol. I can't work it out.</p> |
10,217,013 | 0 | <p>You are probably talking of a borderless <code>NSWindow</code> (<code>NSBorderlessWindowMask</code>), with an opaque background view whose alpha is set to zero and an <code>NSProgressIndicator</code> subview to show the progress. You also probably want to use the <code>-[NSWindow center]</code> method to nicely center your window.</p> <p>However, I doubt that you want that kind of UI. A progress bar is probably not visible on top of all desktops, and thus aesthetically worthless.</p> <p>I think a rounded, half-transparant black window will be more suited in your case. Take a look at <a href="http://mattgemmell.com/source/#roundedfloatingpanel" rel="nofollow">Matt Gemmell's source code</a>.</p> |
25,719,276 | 0 | <p>The first useful clue is the result of running both commands in the REPL:</p> <pre><code>>>> f = open("asdf.txt","r") >>> f.close <built-in method close of file object at 0x7f38a1da84b0> >>> f.close() >>> </code></pre> <p>So <code>f.close</code> itself returns a method, that you can then call. For example, you could write:</p> <pre><code>>>> x = f.close >>> x() </code></pre> <p>To close the file.</p> <p>So just typing <code>f.close</code> isn't actually enough, as it only returns a method that <em>allows you</em> to close the file. I can even prove this: go make a file and call it <code>example.txt</code>.</p> <p>Then try out the following code:</p> <pre><code>Type "help", "copyright", "credits" or "license" for more information. >>> f = open("example.txt","r") >>> f.close <built-in method close of file object at 0x7f3d411154b0> >>> f.readlines() ['this is an example\n', 'file\n'] </code></pre> <p>So if we just write <code>f.close</code>, we can still use <code>f.readlines()</code>: this is proof that the file isn't actually "closed" to access yet!</p> <p>On the other hand, if we use <code>f.close()</code>:</p> <pre><code>Type "help", "copyright", "credits" or "license" for more information. >>> f = open("example.txt","r") >>> f.close() >>> f.readlines() Traceback (most recent call last): File "<stdin>", line 1, in <module> ValueError: I/O operation on closed file >>> </code></pre> <p>So that's proof of the previous assertions: <code>f.close()</code> and <code>f.close</code> do in fact <strong>not</strong> do the same things. <code>f.close()</code> actually closes the file, whereas <code>f.close</code> just returns a method to close the file.</p> <hr> <p>In this answer, I used Python 2.7.4. I don't know if the behavior of <code>f.close()</code> and <code>f.close</code> is any different in Python 3+. </p> |
6,761,085 | 0 | <p>Your regex works. There are no spaces left at the end of the line after you run it. </p> <p>What you probably see is the "residual" incremental highlighting that would go away if you used<br> <code>:%s/[ ]\+$//g</code>. — Note the <code>\+</code> instead of the <code>*</code>. the incremental highlighting remains because <code>*</code> <em>always</em> matches, even with zero spaces.</p> <p>To remove the highlighting, type <code>:noh</code> (short for <code>:nohlsearch</code>).</p> <p>FYI: <code>:%s/[ ]*$//g</code> is equivalent to <code>:%s/ *$//g</code>.</p> |
30,311,092 | 0 | <p>Put the DNX version inside the global.json file which lives on the root directory of your solution (like <a href="https://github.com/aspnet/Home/blob/239906e943b576d4ffd80bdaf855376aef737c63/samples/1.0.0-beta4/global.json" rel="nofollow noreferrer">here</a>). </p> <pre><code>{ "sdk": { "version": "1.0.0-beta4" } } </code></pre> <p>You may need to restart the Visual Studio.</p> <p>The other way is to configure this through project properties dialog inside Visual Studio:</p> <p><img src="https://i.imgur.com/N4SvwCe.png" alt=""></p> |
24,656,965 | 0 | Slow query using < in a table with 4.000.000 rows <p>My purchasedItems table with approx. 4 million rows:</p> <pre><code>itemId | orderQuantity | inStockQuantity | backorderQuantity | backorderOrderedQuantity </code></pre> <p>My query:</p> <pre><code>SELECT * FROM purchasedItems WHERE backorderOrderedQuantity < backorderQuantity </code></pre> <p>I have indexes on backorderQuantity and backorderOrderedQuantity - and both of them combined. But my query still takes approx. 2-3 seconds.</p> <p>What can I do to improve the speed?</p> <p><strong>Update from comments</strong></p> <p>My quantity columns are smallint(3).</p> <p>The result is very few rows. 20 max.</p> <p><code>EXPLAIN</code>:</p> <pre><code>Select type: SIMPLE type: ALL possible_keys: NULL key: NULL key_len: NULL ref: NULL rows: all of them extra: Using where </code></pre> |
27,813,520 | 0 | <p>Probably a bit late but I had the same problem and found that this can be avoided if you use a different Connection Mode when connecting to a remote Queue. By default the <code>MQConnectionFactory</code> uses <code>WMQ_CM_BINDINGS</code> as it's connection mode. If you change it to <code>WMQ_CM_CLIENT</code> (or whichever connection mode you like that doesn't require native libraries) you should be fine. </p> <pre><code>@Test public void testMQConnectionMode() throws JMSException { MQConnectionFactory cf = new MQConnectionFactory(); assertThat(cf.getIntProperty(CommonConstants.WMQ_CONNECTION_MODE), is(equalTo(CommonConstants.WMQ_CM_BINDINGS))); cf.setIntProperty(CommonConstants.WMQ_CONNECTION_MODE, CommonConstants.WMQ_CM_CLIENT); assertThat(cf.getIntProperty(CommonConstants.WMQ_CONNECTION_MODE), is(equalTo(CommonConstants.WMQ_CM_CLIENT))); } </code></pre> |
19,618,222 | 0 | <p>I think you have to put all your functions inside your class file</p> <pre><code> Class resize { private $image; private $width; private $height; private $imageResized; function __construct($fileName) { // *** Open up the file $this->image = $this->openImage($fileName); // *** Get width and height $this->width = imagesx($this->image); $this->height = imagesy($this->image); } // All other functions here ... } </code></pre> |
33,090,032 | 0 | How can I transform an image for Apple Watch? <p>This question is mentioned in explaining <a href="http://stackoverflow.com/questions/33089008/how-can-i-get-a-glance-interface-controller-blank-slate-for-apple-watch">How can I get a [Glance] Interface Controller / blank slate for Apple Watch?</a> , but is a separate basic question.</p> <p>In iOS, if you have a <code>UIImage</code>, you can create a <code>UIImageView</code> which supports, among other things, rotation, translation, and other transforms. In the Swift that I've seen, you can create a <code>WKInterfaceImage</code>, for instance:</p> <pre><code>@IBOutlet var foo: WKInterfaceImage! </code></pre> <p>However, there were no search results matching, for example <code>WKInterfaceImageView</code>.</p> <p>How can I accomplish the work on an Apple Watch that might be done on an iPhone by getting a <code>UIImageView</code> from an <code>Image</code>? Are old-fashioned <code>UIImageView</code>/<code>UIImage</code>s still available? Or is the best available method something like computing an image on the iPhone and dynamically offering it to the watch?</p> <p>Thanks,</p> |
32,404,176 | 0 | <p>would something like this work? <a href="http://jsfiddle.net/swm53ran/312/" rel="nofollow">http://jsfiddle.net/swm53ran/312/</a></p> <p>if you want to see how the structure could happen over and over again, you could just add the sectioned off divs like in this fiddle: <a href="http://jsfiddle.net/swm53ran/313/" rel="nofollow">http://jsfiddle.net/swm53ran/313/</a></p> <pre><code><div class="body"> <div class="header col-xs-12"> <div class="row"> <div class="title col-xs-offset-1 col-xs-5"> This is the title </div> <div class="nav col-xs-5"> This is your nav </div> </div> </div> <div class="container col-xs-10 col-xs-offset-1"> This is where your content goes. </div> </div> </code></pre> |
5,838,508 | 0 | <p>The problem is likely to be at the 2nd <code>cur = cur->next;</code>, which follows the <code>while</code> loop - at that point the loop has guaranteed that <code>cur == NULL</code>.</p> <p>I'm not sure what you're trying to do in that function (has some code been elided for the example?), so don't really have a suggesting at the moment.</p> <p>Also, as your compiler warnings indicate, nothing is being returned by the function even though it's declared to do so. I would have assumed again that this is because something is removed for the purposes of the example in the question, but then again your compiler is complaining as well. Any caller that uses whatever the function is supposed to return is in for a surprise. That surprise may also be a segfault.</p> |
Subsets and Splits