pid
int64
2.28k
41.1M
label
int64
0
1
text
stringlengths
1
28.3k
12,240,084
0
<p>AFAIK, there is no direct answer because multiple wavelengths can combine to give the same color right? So you have the wavelengths that map to pure colors and then their combinations can give many other and the same colors. And there are several combinations that can give the same color. This is because of inteference. So you essentially are asking for a one to many mapping. </p> <p>To answer your question: There is no fixed formula. The reverse formulas will give you a range. That is the best it can get. </p>
28,355,924
0
<p>Add $GOPATH/bin to your PATH variable in your shell, </p> <p>for bash:</p> <pre><code>export PATH=$GOPATH/bin:$PATH </code></pre>
315,940
0
<p>Documentation is a tricky term since it involves different artifacts and different tasks, what do you mean by documentation?</p> <p>User manuals? Screensteps can be used for that. Most companies hire special technical writers to do user-friendly documentation.</p> <p>Function headers and API documentation? That's a different story. The "official" guideline (at least for Java) is to capture everything - complete specifications. The agile approach is to document only what's important. I published a study that shows that detailed header documentations tend to actually distract users. There is a relatively small list of important "directives" and "caveats" that need to be conveyed. PM me or send me a comment if you want more details on that and I'll detail more. I'm avoiding it now since I'm not sure what you meant. </p> <p>I also had a tool that lets you record a narrative of what you do as you work, and it ties it to a log of your edits and actions, that establishes some traceability though it's of course not documentation.</p>
36,795,853
0
Equivalent R script for repeated measures SAS script, nested design <p>I'm having trouble converting an SAS script to the corresponding R script.</p> <p>The model is a repeated measures analysis of the response (<code>resp</code>) based on treatment (<code>trt</code>) with plot (<code>plot</code>) nested in the treatment.</p> <p>SAS code:</p> <pre><code>data data_set; input trt $ plot time resp; datalines; Burn 1 1 27 Burn 1 9 25 Burn 1 12 18 Burn 1 15 21 Burn 2 1 5 Burn 2 9 15 Burn 2 12 10 Burn 2 15 12 ... Unburn 1 1 57 Unburn 1 9 46 Unburn 1 12 49 Unburn 1 15 51 Unburn 2 1 43 Unburn 2 9 59 Unburn 2 12 59 Unburn 2 15 60 proc mixed data = data_set; class trt plot time; model resp = trt time trt*time / ddfm = kr; repeated time / subject = trt(plot) type = vc rcorr; run; </code></pre> <p>R code attempted (loading the data set from a CSV file):</p> <pre><code>library(nlme) data.set &lt;- read.csv( "data_set.csv" ) data.set$plot &lt;- factor( data.set$plot ) data.set$time &lt;- factor( data.set$time ) model1 &lt;- lme( resp ~ trt + time + trt:time, data = data.set, random = ~1 | plot ) </code></pre> <p>This works, but isn't the desired model. Other attempts I've tried have generally resulted in the error:</p> <pre><code>Error in getGroups.data.frame(dataMix, groups) : invalid formula for groups </code></pre> <p>Basically I'm off in the weeds here...</p> <p>Question 1: how to specify the same model in R as what is already specified in SAS?</p> <p>Question 2: I want to be able to change the covariance matrix to replicate other work done in SAS. I believe I know how to do this with the correlation parameter for the lme function. But please correct me if I'm wrong.</p> <p>Thanks in advance.</p>
20,106,290
0
How i can pass value from Controller to View in a Checkbox in MVC <p>Good afternoon I have the following problem, I need to pass the values ​​that brings a CONTROLLER ViewBag a Checkbox in a view.</p> <pre><code>&lt;table&gt; &lt;tr&gt; &lt;td&gt; &lt;label&gt;Select:&lt;/label&gt; &lt;/td&gt; &lt;td&gt; &lt;select id="type" name="type" multiple="multiple"&gt; &lt;option id="Custom1" value="Custom1"&gt;Custom1&lt;/option&gt; &lt;option id="Custom2" value="Custom2"&gt;Custom2&lt;/option&gt; &lt;/select&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> <p>Normally in a (Input type="text") i put: </p> <pre><code>&lt;input type="text" name="email" id="email" value="@(ViewBag.Example.EMail)" /&gt; </code></pre> <p>but in this case i dont know where put the value, could you help me please? Thanks</p>
37,264,603
0
<p>First, you'll need a query that is supplying the values for your parameter. The query might look something like this:</p> <pre><code>select 'a' as ParamValue union all select 'b' as ParamValue union all select 'c' as ParamValue union all select 'd' as ParamValue </code></pre> <p>Set you parameter values to be populated by this query: <a href="https://i.stack.imgur.com/dlRJy.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/dlRJy.png" alt="enter image description here"></a></p> <p>Now Add a table that can list your parameter values.</p> <p><a href="https://i.stack.imgur.com/CjPdU.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/CjPdU.png" alt="enter image description here"></a></p> <p>Next, you can check if each value exists in your main dataset using a <a href="https://msdn.microsoft.com/en-us/library/ee210531.aspx" rel="nofollow noreferrer">Lookup</a> function like this:</p> <pre><code>=IIf(IsNothing(Lookup(Fields!PARAMVALUE.Value,Fields!COLVALUE.Value,Fields!COLVALUE.Value, "MainDataSet")), True, False) </code></pre> <p>You can use this as a filter to just show the parameter values where this function doesn't return a value:</p> <p><a href="https://i.stack.imgur.com/Mtbuq.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/Mtbuq.png" alt="enter image description here"></a></p>
35,375,466
0
Binding data to ListView to display distance to nearby place using Google Places API with UWP <p>Currently, I have a project to display nearby places with UWP using Google Places API. I'm using ListView to display the numbers of nearby places and did successfully to display some basic information provided by API into my ListView. I have DataTemplate like this</p> <pre><code>&lt;DataTemplate x:Key="ResultPlaces"&gt; &lt;StackPanel Orientation="Vertical"&gt; ... &lt;Grid Grid.Column="2"&gt; &lt;TextBlock Text="{Binding placeDistance}" Foreground="#42424c" TextWrapping="Wrap" FontSize="12" Margin="10,0,0,0"/&gt; &lt;/Grid&gt; &lt;/Grid&gt; &lt;/StackPanel&gt; </code></pre> <p>And i also have the ListView like this</p> <pre><code>&lt;ListView Name="listPlace" ItemTemplate="{StaticResource ResultPlaces}"&gt; &lt;/ListView&gt; </code></pre> <p>I've parsing the JSON in result of API in code behind and make it to be my ListView.ItemsSource. The problem is the API don't provide distance object. So, I created a method to calculte distance between 2 places and use it to calculate every single result in API results. I'm also created get set property called placeDistance in class Result that provided API items result.</p> <p>This my get set property </p> <pre><code> public class Result { .... public Review[] reviews { get; set; } public int user_ratings_total { get; set; } public string placeDistance { get; set; } } </code></pre> <p>And this my code to calculate every single distance on Result</p> <pre><code>int lengthResult = placesList.results.Count(); for (int i = 0; i &lt; lengthResult; i++) { double myLat = placesList.results[i].geometry.location.lat; double myLong = placesList.results[i].geometry.location.lng; double myCurrentLat = Convert.ToDouble(parameters.lat); double myCurrentLong = Convert.ToDouble(parameters.longit); var newDistance = new Result(); newDistance.placeDistance = DistanceBetweenPlaces(myCurrentLong, myCurrentLat, myLong, myLat); } </code></pre> <p>When I deployed it into my phone, the other items in DataTemplate display correctly. But I couldn't get any distance text. Did I do something wrong ?</p>
19,341,542
0
<p>I've been struggling with this as well. The work-around I've found is to just add an extra space between the command and first argument! So where I was trying to do:</p> <pre><code>FORFILES /s /m *.dll /c "python \"c:\path\to\script.py\" -t arg1 etc" </code></pre> <p>python was trying to find file "arg1" to execute, but if I just change it to:</p> <pre><code>FORFILES /s /m *.dll /c "python \"c:\path\to\script.py\" -t arg1 etc" </code></pre> <p>this actually works!</p>
31,047,397
0
after adding uitableview to uiview didselectrowatindexpath not called ios <p>I have created a custom tableview <strong>displayCustomUnitTableView</strong> and a custom UIView <strong>displayView</strong> and adding <strong>displayCustomUnitTableView</strong> to <strong>displayView</strong>. But i am not able to select any row in the tableView i.e., <strong>didSelectRowAtIndexPath</strong> is not called.</p> <p>I am using the following code:</p> <pre><code>displayCustomUnitTableView = [[UITableView alloc]initWithFrame:CGRectMake(52.0, 110.0, 180.0, 110.0) style:UITableViewStylePlain]; displayCustomUnitTableView.delegate = self; displayCustomUnitTableView.dataSource = self; displayCustomUnitTableView.tag = 2; displayCustomUnitTableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine; displayCustomUnitTableView.separatorColor = [UIColor blackColor]; displayCustomUnitTableView.rowHeight = 30.f; [displayCustomUnitTableView setBackgroundColor:[ContentViewController colorFromHexString:@"#BCC9D1"]]; [displayCustomUnitTableView setBackgroundColor:[UIColor groupTableViewBackgroundColor]]; [displayCustomUnitTableView setAllowsSelection:YES]; [displayView addSubview:displayCustomUnitTableView]; </code></pre> <p>cellForRowAtIndexPath:</p> <pre><code>-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"MyCell"; UITableViewCell *cell= [tableView cellForRowAtIndexPath:indexPath]; if (cell == nil) { cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]; } if(tableView.tag == 1) { cell.textLabel.text = [storeUnitList objectAtIndex:indexPath.row]; } else if(tableView.tag == 2) { cell.textLabel.text = [storeCustomUnitList objectAtIndex:indexPath.row]; } return cell; } </code></pre> <p>didSelectRowAtIndexPath:</p> <pre><code>- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { if(tableView.tag == 1) { unitString = [storeUnitList objectAtIndex:indexPath.row]; } else if(tableView.tag == 2) { unitString = [storeCustomUnitList objectAtIndex:indexPath.row]; } } </code></pre> <p>Thanks in advance.</p>
9,865,547
0
Random crashes occur in my iphone project, see two call stacks, all in web core, all crash after UIWebView deallocate <p>Random crashes occur in my iphone project, see two call stacks, all in web core, all crash after UIWebView deallocate. </p> <p>See crash 1, seems web core can't close it completely, is it blocked by other running threads? </p> <p>See crash 2, why it is still dealing with some issues even if UIWebView has been released? </p> <p>Any idea or discussion will be appreciated, thanks in advance. </p> <p>Crash 2 has higher reproducible rate than crash 1, scan WebCore source code, it seems be manifest cache has been deleted (who did it?) when try to access it. </p> <p><img src="https://i.stack.imgur.com/iyHo9.png" alt="web core crash 1"></p> <p><img src="https://i.stack.imgur.com/SYicM.png" alt="web core crash 2"></p>
4,483,295
0
CSS: how come html, body height: 100% is more then 100%? <p>hey, i was trying to do a bottom sticky footer <a href="http://www.lwis.net/journal/2008/02/08/pure-css-sticky-footer/" rel="nofollow" title="using this">link test</a> and but it kept being more then 100% meaning it scrolled a litle bit..</p> <p>so i made a simple HTML code, without any additions but its still more than 100%, see here:</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="he" lang="he" dir="rtl" id="bangler"&gt; &lt;head&gt; &lt;title&gt;my title&lt;/title&gt; &lt;style type="text/css"&gt; html, body, #wrapper { height: 100%; } body &gt; #wrapper { height: auto; min-height: 100%; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="wrapper"&gt;aa&lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>the thing is, it scrolls just a little bit more then 100% meaning about 5-10px more.. this is really strange, on both IE and Firefox !!</p> <p>Thanks in advance !</p>
20,857,311
0
<p>In your code import.</p> <p><code>Import android.support.v4.app.Fragment</code></p> <p>Maybe your code work fine.</p>
22,082,095
0
Rails 3: how to code a route path <p>I'm creating a rails app and I can't figure out or find answer for this problem.</p> <p>What is the route for:</p> <p><code>@example = Example.find_by_notId(params[:notId])</code></p> <p>I want my route to look better then /example/1 and would rather have it read /notId (where notId would be title or some other non-ID int). Normally I would use show_path but in my html <code>&lt;%= link_to image_tag(pic), show_path(example) %&gt;</code> doesn't work. Here is my code and it works when I hard code it into the URL (localhost:3000/notId) but I need a way to route it through a link. Any ideas?</p> <p>Show </p> <pre><code>def show @example = Example.find_by_title(params[:title]) end </code></pre> <p>Routes</p> <pre><code>match '/:notId', to: 'example#show', via: 'get' </code></pre> <p>_example.html.erb</p> <pre><code>&lt;div class="example"&gt; &lt;% Movie.all.each do |example| %&gt; &lt;%pic = example.title + ".jpg"%&gt; &lt;%= link_to image_tag(pic), show_path(example) %&gt; &lt;% end %&gt; e&lt;/div&gt; </code></pre>
35,475,198
0
how to interchage image banners randomly when page refresh? <p>here are my banners:</p> <p><a href="https://i.stack.imgur.com/Eb1SI.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/Eb1SI.png" alt="enter image description here"></a></p> <p>pls help me with this. i want that when the page loads, every banners exchange places in any order. </p> <p>i am using apache velocity for this but i just want to know the logic on how to code it. thanks</p>
6,303,906
0
<p>The answer is 1/4. Here is the explanation.</p> <p>Let x is the length of the leftmost stick and y is the length of the rightmost stick. Then the middle stick has length n-x-y, if the original stick's length was n.</p> <p>The possible values for x,y are those for which:</p> <ol> <li>x > 0</li> <li>y > 0</li> <li>x + y &lt; n</li> </ol> <p>In the plane Oxy this is equivalent to say that the point (x,y) lies within the triangle with vertices (0, 0), (n, 0), (0, n).</p> <p>Now these three numbers (x, y, n-x-y) form a triangle if all of the three are satisfied:</p> <ol> <li>x + y > n - x - y &lt;=> x + y &lt; n/2</li> <li>x + (n - x - y) > y &lt;=> y &lt; n/2</li> <li>y + (n - x - y) > x &lt;=> x &lt; n/2</li> </ol> <p>Again in the Oxy plane these are satisfied when the point (x,y) lies within the triangle with vertices (0, n/2), (n/2, n/2), (n/2, 0).</p> <p>The area of this triangle is a quarter of the area of the (0, 0), (n, 0), (0, n) triangle, since it's the 'middle' triangle (whose vertices are the midpoints) of the bigger one.</p> <p>Here is a simple C# program to verify the answer:</p> <pre><code>Random r = new Random(); int count = 0, total = 0, tries = 1000000; double x, y; for (int i = 0; i &lt; tries; i++) { x = r.NextDouble(); y = r.NextDouble(); if (x + y &gt; 0.5 &amp;&amp; x &lt; 0.5 &amp;&amp; y &lt; 0.5) ++count; if (x + y &lt; 1.0) ++total; } Console.WriteLine((double)count / total); </code></pre>
19,437,307
0
<p>Well, I fix the problem in this way...</p> <p>instep of using </p> <pre><code>?&gt;&lt;body style="background-color:#0000CC;color:white;"&gt;&lt;?php </code></pre> <p>I changed to...</p> <pre><code>?&gt;&lt;body style="background:#0000CC;color:white;"&gt;&lt;?php </code></pre> <p>and it made it happen.. overrides the css stylesheet... Thanks guys..</p>
13,151,175
0
Passing an SDL surface to a function <p>I'm a bit confused how i pass my SDL_Surface to my function so that i can setup my screen in SDL.</p> <p>This is my error:</p> <pre><code> No operator "=" matches these operands </code></pre> <p>My function is this:</p> <pre><code>void SDL_Start(SDL_Surface screen){ Uint32 videoflags = SDL_SWSURFACE | SDL_DOUBLEBUF | SDL_ANYFORMAT;// | SDL_FULLSCREEN; // Initialize the SDL library if ( SDL_Init(SDL_INIT_VIDEO) &lt; 0 ) { fprintf(stderr, "Couldn't initialize SDL: %s\n", SDL_GetError()); exit(500); } //get player's screen info const SDL_VideoInfo* myScreen = SDL_GetVideoInfo(); //SDL screen int reso_x = myScreen-&gt;current_w; int reso_y = myScreen-&gt;current_h; Uint8 video_bpp = 32; //setup Screen [Error on the line below] screen = SDL_SetVideoMode(reso_x, reso_y, video_bpp, videoflags|SDL_FULLSCREEN); } </code></pre> <p>This function is called in my main function like so :</p> <pre><code>SDL_Surface *screen; SDL_Start(*screen); </code></pre> <p>Any ideas what the mistake is ?</p>
12,213,317
0
<p>Some code would be useful. In the absence of that here's a best guess generic answer: In general terms you will need to work out how to map (convert) each format to the other. Then you can convert to the format suitable for the database before you save and convert from database format to google maps format when you retrieve. I imagine each polygon is a set of latitude/longitude pairs in both formats so it shouldn't be too difficult.</p> <p>Alternatively, since you're using JSON, you could just save the JSON to a text field in the database (or to a JSON field in the upcoming 9.2 release of PostgreSQL): </p> <p><a href="http://www.postgresql.org/docs/9.2/static/datatype-json.html" rel="nofollow">http://www.postgresql.org/docs/9.2/static/datatype-json.html</a></p> <p>However if you would like to perform geographical queries in the database that would obviously limit your options.</p>
13,117,989
0
how to show selected item(s) details (Title & Cost) into another activity , like:- Shopping Cart Functinality (Add to Cart & View Cart) <p>i am making an app, in which i am fetching data into listview using json parser, then showing selected listview item row into another activity with item details (Note:- Details i am fetching from ListView Activity to singleItem Activity) now i need to show Item Title and Cost for all the selected items into another activity i.e.- ViewCart (from singleItem Activity to ViewCart Activity)by using Add to Cart button on singleItem activity to send all selected records into ViewCart activity like:- Shopping Cart functionality Add to Cart then view selected records in a whole into another activity ViewCart, and i just want to show selected item's Title and Cost to another activity, still i am showing only the one selected item not all the selected item(s) by user in a session, and i am also not saving that record for complete session, but now i want to show all selected items by user into viewcart activity based on complete session. below i am placing singleItem and ViewCart Code:-</p> <p>SingleItem Code:-</p> <pre><code> public class SingleMenuItem extends Activity{ static final String KEY_TITLE = "title"; static final String KEY_COST = "cost"; static final String KEY_THUMB_URL = "imageUri"; private EditText edit_qty_code; private TextView txt_total; private TextView text_cost_code; private double itemamount = 0; private double itemquantity = 0; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.single); Intent in = getIntent(); String title = in.getStringExtra(KEY_TITLE); String thumb_url = in.getStringExtra(KEY_THUMB_URL); String cost = in.getStringExtra(KEY_COST); ImageLoader imageLoader = new ImageLoader(getApplicationContext()); ImageView imgv = (ImageView) findViewById(R.id.single_thumb); TextView txttitle = (TextView) findViewById(R.id.single_title); TextView txtcost = (TextView) findViewById(R.id.single_cost); TextView txtheader = (TextView) findViewById(R.id.actionbar); txttitle.setText(title); txtheader.setText(title); txtcost.setText(cost); imageLoader.DisplayImage(thumb_url, imgv); text_cost_code = (TextView)findViewById(R.id.single_cost); edit_qty_code = (EditText)findViewById(R.id.single_qty); txt_total=(TextView)findViewById(R.id.single_total); itemamount=Double.parseDouble(text_cost_code.getText().toString()); txt_total.setText(Double.toString(itemamount)); edit_qty_code.addTextChangedListener(new TextWatcher() { public void onTextChanged(CharSequence s, int start, int before, int count) { // TODO Auto-generated method stub } public void beforeTextChanged(CharSequence s, int start, int count, int after) { // TODO Auto-generated method stub } public void afterTextChanged(Editable s) { itemquantity=Double.parseDouble(edit_qty_code.getText().toString()); itemamount=Double.parseDouble(text_cost_code.getText().toString()); txt_total.setText(Double.toString(itemquantity*itemamount)); } }); ImageButton addToCartButton = (ImageButton) findViewById(R.id.img_add); addToCartButton.setOnClickListener(new OnClickListener() { public void onClick(View v) { Intent in = new Intent (SingleMenuItem.this, com.erachnida.restaurant.versionoct.FinalOrder.class); in.putExtra(KEY_TITLE, getIntent().getStringExtra(KEY_TITLE)); in.putExtra(KEY_COST, getIntent().getStringExtra(KEY_COST)); startActivity(in); // Close the activity // finish(); } }); }} </code></pre> <p>ViewCart Code:-</p> <pre><code>public class FinalOrder extends Activity { static final String KEY_TITLE = "title"; static final String KEY_COST = "cost"; public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.view); Intent in = getIntent(); String title1 = in.getStringExtra(KEY_TITLE); String cost1 = in.getStringExtra(KEY_COST); TextView txttitle1 = (TextView) findViewById(R.id.item_name); TextView txtcost1 = (TextView) findViewById(R.id.item_cost); txttitle1.setText(title1); txtcost1.setText(cost1); } } </code></pre>
5,231,656
0
<p>if your using cocos2d-iphone-0.99.5 </p> <p>you have to import "CCParticleSystemPoint.h"</p> <p>and check below linezs also.</p> <p>refer this word"ARCH_OPTIMAL_PARTICLE_SYSTEM " in your cocos2d libraries "ccparticleexamples.h"</p> <p>hope this helps you.</p>
14,819,935
0
<p>Unless you only need the line items on very rare occasions, store them together as per this post from Ayende <a href="http://ayende.com/blog/4546/modeling-hierarchical-structures-in-ravendb" rel="nofollow">http://ayende.com/blog/4546/modeling-hierarchical-structures-in-ravendb</a></p>
7,511,670
0
<p>I had the same feature in Aix and Linux implementations. In Aix, internal bitset storage is char based:</p> <pre><code>typedef unsigned char _Ty; .... _Ty _A[_Nw + 1]; </code></pre> <p>In Linux, internal storage is long based:</p> <pre><code>typedef unsigned long _WordT; .... _WordT _M_w[_Nw]; </code></pre> <p>For compatibility reasons, we modified Linux version with char based storage</p> <p>Check which implementation are you using inside bitset.h</p>
34,221,215
0
<p>Acknowledging that I say this from a position of ignorance; would it not be easier to have the service maintain the list of articles and let the controller observe that? It would avoid the need to send messages back and forth through the scopes and have a single source of truth.</p>
26,864,680
0
<p>You need to convert the .NET ticks to UNIX Epoch and then to a postgreSQL timestamp.</p> <pre><code>to_timestamp((("date" - 621355968000000000) / 10000000)) </code></pre> <p>This code with work with version 9 and above</p>
18,306,774
0
Continues Video Recording using OpenCv with Multiple Web cams. and streaming Video to Website <p>I'm a BSc student and im working on my final year project i have planned to create a security system using OpenCV with C++ using OOP using Ms visual Studio 2012, so far i have managed to capture video from multiple webcams and even record the video separately</p> <p>However I realize that video only gets saved ones the application is closed. which leads me to another problem, because i would like to stream the recorded video live to a website.</p> <p>Questions so far 1. Need to continuously record video and save to file 1. Need to Add time and date info (Time Stamp each frame)</p> <p>Any form of help is much appreciated (code , links, or advice ) thanks in advance </p>
12,847,059
0
AS3 - hitTestObject with dynamic MovieClips added through For Loops <p>I've been attempting to set up a hitTestObject function in a project I've been working on recently and have encountered some difficulty.</p> <p>This is because I'm trying to do it with MovieClip instances dynamically added through a For Loop. The MovieClips being added are called 'square' and when I left Mouse Click I add a series of these MovieClips to the stage. My problem is that I want to listen out for a hitTestObject of 'square' intercepting 'square' and subsequent additions of the same MovieClip.</p> <p>I've set up a numerical variable that increments up by 1 each time I add the group of 'square' MovieClips through left click to the stage and I've assigned this number along with a string to combine together to create a square.name instance.</p> <p>In my case the first group of MovieClips added would have a .name instance called 'Square 1' and then 'Square 2' on the second mouse click and so on.</p> <p>I've also added and pushed each name through into a container array for referencing later.</p> <p>So how can I actually reference these dynamic names in a hitTestObject argument using my .name instance and array??</p> <p>I'm sure it is obvious and I've done the groundwork so any help to point this out to me would be greatly appriciated.</p> <p>Many Thanks.</p>
36,891,296
0
<p>I don't think so. But if the goal is to match intents/actions inside your application (with associated topics) you have another solution. Please try LUIS (<a href="http://www.luis.ai" rel="nofollow">Language Understanding Intelligent Service</a>) ; this service is part of Microsoft Cognitive Services.</p> <p>Just perform a free speech and send the text to this service (once you train it). You can check the following video to obtain additional détails <a href="https://www.luis.ai/Help" rel="nofollow">https://www.luis.ai/Help</a>. Note: This is free until 100,000 transactions per month.</p>
39,604,810
0
Xamarin Android.Support.V4 in VS 2013 not recognize in amxl.layout <p>I am working with VS 2013 and I have already installed Components and references.</p> <p><a href="http://i.stack.imgur.com/nyNBS.png" rel="nofollow">The main.axml does not recognize that layout. The warning is: Invalid child element 'Android.Support.V4.View.ViewPager'. List of possible elements expected (all of the VS 2013 Toolbox):</a></p> <p>I already included the 'Xamarin.Android.Support v4' library and a Reference exists to my Project. I tried: 'Manage NuGet Packages' and 'Installed it with Package Manager Console but it still does not work. It only works in my CS.Files. Any ideas ?</p> <p>Thanks</p>
33,453,553
0
Why is this code to find the minimum number in an array assuming the first element is smallest? <pre><code>#include&lt;cs50.h&gt; #include&lt;stdio.h&gt; int main (void) { int a,array[100],min,c,b=0; printf("Enter a number that you wish: \n"); a=GetInt(); printf("Now Enter %i Independently \n",a); for(int b=0; b&lt;a; b++) array[b]=GetInt(); min = array[0]; for ( c = 0 ; c &lt; b ; c++ ) { if ( array[c] &lt; min ) min = array[c]; } printf("Minimum value is %i.\n", min); return 0; } </code></pre> <p>Output</p> <pre><code>Enter a number that you wish: 4 Now Enter 4 Independently 2 3 1 4 Minimum value is 2. </code></pre> <p>But I am sure the minimum number is 1 — what's wrong?</p>
7,840,310
0
Android Maps API Key Issues <p>I am having a weird problem with a simple map application I am trying to write (API 2.2). Yesterday, I started the app and I could see the map displayed and was able to pan around and zoom in and out. It worked perfectly. I also ran the app successfully on a Galaxy tab (I normally run them on an emulator). Today, I started the application, but instead of seeing the map, I see a grid of grey boxes. I thought it might be a problem with the API key, so I created a second one and swapped it with the first, this did not fix the problem.</p> <p>The only difference between the times I tried running the projects was that I did it on two different computers. It worked originally on the computer that I created the project on, but it now will no longer work on any computer that I have attempted to use. I don't know that this is related, but it is the only significant thing that changed between when I ran the project each time.</p> <p>After looking through the LogCat, I have found two errors that might be relevant to my problem they are:</p> <p>Could not open GPS configuration file /etc/gps.conf<br/> Couldn't get connection factory client</p> <p>Does anyone know if these are problems, and if so, how to fix them?</p>
33,265,909
0
<p>The problem is that you're trying to encode the whole URL. The only pieces you want to encode are the querystring <em>values</em>, and you can just use <code>Url.Encode()</code> for this.</p> <p>You don't want to encode the address, the querystring params, or the <code>?</code> and <code>&amp;</code> delimiters, otherwise you'll end up with an address the browser can't parse.</p> <p>Ultimately, it would look something like this:</p> <pre><code>&lt;a href="https://www.notmysite.co.uk/controller/[email protected](Model.bookingNumber)&amp;[email protected](Model.hashCode)"&gt;Click Here to be transferred&lt;/a&gt; </code></pre>
35,310,844
0
View page does not reload when modelstate fails <p>In my MVC application, I am using jquery ajax to post data to action. When model state is valid then jquery ajax shows perfect result. But when model state is not valid, It does not return anything and does not reload my view page in mvc.</p> <p>My Action method code</p> <pre><code> [HttpPost] public ActionResult AllLandLord(User_Master usermaster, CityDate citydate) { List&lt;User_Master&gt; allLandLord = new List&lt;User_Master&gt;(); if (ModelState.IsValid) { allLandLord = agreementnewBAL.AllLandLordUsers(); return PartialView("LoadLandLord", allLandLord); } else { int successid= 1; return Json(new { id = successid}); } } } </code></pre> <p>In my View, Jquery code as follws</p> <pre><code> var usermodel = { US_FirstName:$("#txtFirstName").val(), US_LastName:$("#txtLastName").val(), US_Gender:$(".userGender").filter(':checked').val(), US_Age:$("#txtAge").val(), US_Email:$("#txtEmail").val(), US_MobileNo:$("#txtMobile").val(), US_PAN:$("#txtPan").val(), US_AadharNo:$("#txtAadhar").val(), US_PermanentAddress:$("#txtPermanentAddress").val() }; var citydatemodel = { CM_AgreementSignDate:$("#SignDate").val(), PR_City: $("#selectCity").val() }; $.ajax({ url:'@Url.Action("AllLandLord")', contentType: 'application/json; charset=utf-8', data: JSON.stringify({usermaster: usermodel, citydate: citydatemodel}), type:'POST', UpdateTargetId: "dvLandLord3", success:function(data){ if(data.id== 1) { location.reload(); } else { $("#dvLandLord3").html(data); } }, error:function(){ alert('something went wrong!'); } }); </code></pre> <p>I checked it using debugger, But it doesn't work for me. So, how can I reload my view page when model state valid is false?</p>
28,655,156
0
<p>Thank you, all commentors and visitors, especially @PM 77-1, I solved the problem with your help, </p> <p>generally speaking, I need three things to initialize my JDBC tutorial, 1.MySQL 2.Eclipse and a nice plugin as an option 3.JDBC driver, for me it is mysql driver mysql.com/products/connector</p> <p>use the @PM 77-1 provided tutorial to set up the project to manipulate the database. </p> <p>But if you need a database GUI in Eclipse like me, you will need a plugin like DBview, my initial one database explorer is no longer in Eclipse. And remember to download the JDBC driver with .jar as the end. It can be find at platform independent version. </p> <p>Ok that's all.</p>
22,360,300
0
<p>First, you should use explicit <code>join</code> syntax. Second, it is suspicious whenever you have a <code>top</code> without an <code>order by</code>. So, your query as I see it is:</p> <pre><code>select TOP 1 @TopValue = t2.myDecimal from table1 t1 join table2 t2 on t1.ID = t2.table1ID where CONVERT( VARCHART(8), t1.Created, 112 ) = @stringYYYYMMDD and t1.Term = @Label" </code></pre> <p>You can speed this up with some indexes. But, before doing that, you want to change the date comparison:</p> <pre><code>where t1.Created &gt;= convert(datetime, @stringYYYYMMDD, 112) and t1.Created &lt; convert(datetime, @stringYYYYMMDD, 112) + 1 and t1.Term = @Label </code></pre> <p>Moving the function from the column to the constant makes the comparison "sargable", meaning that indexes can be used for it.</p> <p>Next, create the indexes <code>table1(Term, Created, Id)</code> and <code>table2(table1Id)</code>. These indexes should boost performance.</p>
21,811,027
0
<p>Perhaps it's <code>$n_part = $_COOKIE['crea_camp']['n_part'];</code>.</p> <p>You may use <code>print_r()</code> or <code>var_dump()</code> to see the contents of a variable, for instance <code>print_r($_COOKIE);</code> and check what the key names are.</p> <p>You can as well always check what cookies are set/sent back in/from the browser using the respective developer tools (Firebug, Firefox Dev Tools, Chrome Dev Tools, etc.).</p>
23,210,292
0
<p>This code working fine for me</p> <p><pre><code> import android.app.Activity; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.TextView;</p> <p>public class MainActivity extends Activity {</p> <pre><code>Button btnClick = null; TextView txtView = null; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); btnClick = (Button) findViewById(R.id.btnClick); txtView = (TextView) findViewById(R.id.txtView); btnClick.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { txtView.setText("MP 204"); } }); } } </code></pre> <p></pre></code> the layout file</p> <pre><code>&lt;RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" &gt; &lt;Button android:id="@+id/btnClick" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:text="ClickMe" /&gt; &lt;TextView android:id="@+id/txtView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignLeft="@+id/btnClick" android:layout_alignParentRight="true" android:layout_below="@+id/btnClick" android:text="@string/hello_world" /&gt; &lt;/RelativeLayout&gt; </code></pre>
8,839,644
0
<p>I ended up finding a solution at <a href="http://zetafleet.com/blog/javascript-dateparse-for-iso-8601" rel="nofollow">http://zetafleet.com/blog/javascript-dateparse-for-iso-8601</a>. It looks like the date is in a format called 'ISO 8601.' On earlier browsers (Safari 4, Chrome 4, IE 6-8), ISO 8601 is not supported, so Date.parse doesn't work. The code referenced from the linked blog post extends the current Date class to support ISO 8601.</p>
18,397,349
0
<p>And... well... thanks to @BMH, <strong>this</strong> is what worked :</p> <pre><code>$('[comp-id]:not(.hover)').mousemove(function(e){ $('[comp-id]').removeClass('hover'); e.stopPropagation(); $(this).addClass('hover'); }); </code></pre>
39,187,045
0
<p>How about using [count] to count the occurrences of an item in the list?</p> <pre><code>list == [40, 20, 30, 50, 40, 40, 40, 40, 40, 40, 20] for i in list: if list.count(i) &gt; 10: # Do Stuff </code></pre>
32,652,155
0
How to log an audit response using Camel / Wire Tap? <p>We have a requirement to audit a Servlet route.</p> <p>We have looked at using a Wire Tap which would Post a new HTTP request to a separate audit endpoint.</p> <p>Our reason for using a Wire Tap is so we don't block the Servlet route. </p> <p>Our problem is that we need to log the HTTP response from the audit endpoint. Our understanding is that the Wire Tap component is InOnly and therefore will not capture the response. </p> <p>Our current thought is to push the audit requests to a Queue after the Wiretap. We would then take the requests off the queue and call the auditing endpoint logging the responses. </p> <p>Is this the best approach or is there a better way?</p> <p>Could we use "setExchangePattern" to make the Wire Tap InOut? If so would it block the main route?</p> <p>We have seen there is an OnCompletion handler but are not sure whether that would be of use to us. Again would it block the main route?</p>
25,397,008
0
user-inactivity auto logout <p>I want to implement an auto user logout after an idle time of X mins in my project. So I have googled for relevant examples but they cant seem to debug properly with my existing codes. My intentions are to utilize: </p> <p>-a BackgroundProcessingService extend Service<br> -a CountDownTimer</p> <p>Can anyone help me with a basic auto user logout program?</p>
22,125,795
0
Global variable is not working correctly <p>In my view controller's main file, I created a property for an NSArray object named <code>finalStringsArray</code>: </p> <p><code>@property (strong, nonatomic) NSArray *finalStringsArray;</code></p> <p>Then in viewDidLoad, I make sure to initialize the object:</p> <pre><code>self.finalStringsArray = [[NSArray alloc]init]; </code></pre> <p>Further down the viewDidLoad method implementation, I query my server for data, get rid of some of the extra junk that the server sends me like blank space, and then I place my perfect strings inside of my <code>finalStringsArray</code> array:</p> <pre><code>[query findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) { if (!error) { NSString *parseString = [[NSString alloc]initWithFormat:@"%@", objects]; NSString *cURL=[self stringBetweenString:@"=" andString:@")" withstring:parseString]; NSString *newString = [cURL stringByReplacingOccurrencesOfString:@" " withString:@""]; NSString *newString2 = [newString stringByReplacingOccurrencesOfString:@"(" withString:@""]; NSString *newString3 = [newString2 stringByReplacingOccurrencesOfString:@"\\n" withString:@""]; _finalStringsArray = [newString3 componentsSeparatedByString:@","]; int index; for(index = 0; index &lt; _finalStringsArray.count; index++) { NSString *string = [[NSString alloc]init]; string = _finalStringsArray[index]; NSLog(@"Count: %d", _finalStringsArray.count); } NSLog(@"Count: %d", _finalStringsArray.count); } } ];} </code></pre> <p>All that matters in the above code is this statement: <code>_finalStringsArray = [newString3 componentsSeparatedByString:@","];</code></p> <p>This adds my finalized strings to my <code>_finalStringsArray</code> array object. You will notice that I am NSLogging the count property of my array: <code>NSLog(@"Count: %d", _finalStringsArray.count);</code></p> <p>When I perform these NSLogs, they always NSLog with the correct count of 2.</p> <p>Here's my problem though. Further down, I have a method implementation that needs to use the count property of <code>_finalStringsArray</code> as well. But for some reason, it always NSLogs as "0" and I can't figure out why.</p> <p>Below are the 3 method implementations that are below my viewDidLoad. I need to be able to access the count property of <code>_finalStringsArray</code> in the method implementation for <code>-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section</code>:</p> <pre><code>- (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. NSLog(@"all good string count3: %d", _finalParseStrings.count); } - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { return 1 ; } -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { NSLog(@"all good string count5: %d", [self.finalStringsArray count]); return [self.finalStringsArray count]; } </code></pre>
31,814,343
0
<p>The reason I believe this isn't working is you have no comparison try this. Other wise it will return 0 which is True. </p> <pre><code>KeepActive = "no match" For i = 1 To 500 If InStr(catchAll, Sheet4.Cells(i, 1).Value) &gt; 0 Then KeepActive= "match" exit for End If Next i </code></pre>
27,093,872
0
<p>You can use nlargest from heapq module</p> <pre><code>import heapq heapq.nlargest(1, sentence.split(), key=len) </code></pre>
6,790,917
0
Setting Android TimePicker In XML <p>Is it possible to set TimePicker hours mode to 24-hours-mode in XML file? Or is it posible in Java only? I want to make a layout that has 24-hours picker but I can't find such attribute.</p>
28,605,442
0
<p>Hope this might help you mate.</p> <pre><code>$('.owl-carousel').owlCarousel({ loop: true, items: 1, }); owl = $('.owl-carousel').owlCarousel(); $(".prev").click(function () { owl.trigger('prev.owl.carousel'); }); $(".next").click(function () { owl.trigger('next.owl.carousel'); }); </code></pre> <p>Fiddle <a href="http://jsfiddle.net/w5b38r6v/">here</a></p>
7,346,061
0
<p>please try this:: </p> <pre><code>Display display = getWindowManager().getDefaultDisplay(); int width = display.getWidth(); int height = display.getHeight(); int int_var = (width * 60)/100; </code></pre> <p>and put <code>int_var</code> as width</p>
11,551,555
0
System.Web.Caching with WebSockets <p>Is it possible to use classes from the <code>System.Web.Caching</code> namespace with an ASP.NET application which uses WebSockets?</p>
37,109,265
0
std::lock_guard<pthread_mutex_t> does not compile <pre><code>std::lock_guard&lt;pthread_mutex_t&gt; lock(mExecutionReportsLock); </code></pre> <p>This does not compile because pthread_mutex_t is not valid template argument. What is the best way to achieve this functionality</p>
9,447,184
0
Contactable plugin <p>I'm using this plugin <a href="http://theodin.co.uk/blog/ajax/contactable-jquery-plugin.html" rel="nofollow">link</a><br/> My question is, i want to remove the button (feedback) and instead use a normal link in my html page > &lt; a href="#">Contact&lt; /a> that trigger the plugin <br/> I deleted this tag from .js file: &lt; div id="contactable_inner">&lt; /div> and now i want to attach my &lt; a> link to the plugin <br/>i don't know jQuery, can anyone help me plz?</p>
39,121,982
0
How to insert a value into a BTreeSet in Rust and then get an iterator beginning at its location? <p>Am I missing something, or is there no way to get an iterator beginning at the newly-inserted value in a <code>BTreeSet</code>? </p> <p><a href="https://doc.rust-lang.org/std/collections/struct.BTreeSet.html#method.insert" rel="nofollow"><code>BTreeSet::insert</code></a> just returns a boolean. For comparison, the <code>insert</code> method for <code>std::map</code> in C++ returns a pair of an iterator and a boolean.</p> <p>It is possible to look up the newly-inserted element and get the iterator that way, but that's inefficient.</p> <p>This isn't a duplicate of <a href="http://stackoverflow.com/questions/28512394/how-to-lookup-from-and-insert-into-a-hashmap-efficiently">How to lookup from and insert into a HashMap efficiently?</a> as I need to get an <strong>iterator</strong> pointing to the location of the newly inserted value. I want to obtain the preceding and following values, if these exist.</p>
11,617,444
0
Why doesn’t [NSArray class] return what I expected? <p>I am trying to parse some JSON that I get via a web service. The logic is :</p> <pre><code>id jsonObject = ....; //This can be string or array if([jsonObject class] == [NSString class] || [jsonObject class] == [NSMutableString class]{ // DO some thing } else if([jsonObject class] = [NSArray class] || [jsonObject class] == [NSMutableArray class]{ // Do some thing else } </code></pre> <p>However for one of the elements I ran into a weird problem. The class of this element should be NSArray but when I run the code I see the class as __NSArrayM. This does not match the second if block. </p> <p>Can some one tell me what I am doing wrong</p>
28,646,088
0
<p>For anyone having the same issue with CocosSharp (the Xamarin C# port of Cocos2D):</p> <p>To convert a CCColor3B to a CCColor4F, you can pass in the CCColor3B as a argument to the constructor of CCColor4F. For example:</p> <pre><code>var color = new CCColor4F (CCColor3B.Red); </code></pre> <p>CCColor4B doesn't have a constructor with CCColor3B as an argument, so you have to pass in the individual values for Red, Green, and Blue, as follows:</p> <pre><code>var sourceColor = CCColor3B.Red; var color = new CCColor4B (sourceColor.R. sourceColor.G, sourceColor.B); </code></pre> <p>I like to create extension methods to encapsulate the above, as follows:</p> <pre><code>public static class ColorExtensions { public static CCColor4F ToColor4F(this CCColor3B sourceColor) { return new CCColor4F (sourceColor); } public static CCColor4B ToColor4B(this CCColor3B sourceColor) { return new CCColor4B (sourceColor.R, sourceColor.G, sourceColor.B); } } </code></pre> <p>So you can then perform conversions using the following:</p> <pre><code>var bColor = CCColor3B.ToColor4B(); var fColor = CCColor3B.ToColor4F(); </code></pre>
7,515,576
0
<p>Try this:</p> <pre><code>SELECT SequencedChannelValue.* -- Specify only the columns you need, exclude the SequencedChannelValue FROM ( SELECT ChannelValue.*, -- Specify only the columns you need SeqValue = ROW_NUMBER() OVER(PARTITION BY VehicleID ORDER BY TimeStamp DESC) FROM ChannelValue ) AS SequencedChannelValue WHERE SequencedChannelValue.SeqValue = 1 </code></pre> <p>A table or index scan is expected, because you're not filtering data in any way. You're asking for the latest TimeStamp for all VehicleIDs - the query engine HAS to look at every row to find the latest TimeStamp.</p> <p>You can help it out by narrowing the number of columns being returned (don't use SELECT *), and by providing an index that consists of VehicleID + TimeStamp.</p>
7,418,039
0
<p>Yes. There is no requirement that <code>IDENTITY</code> columns be made a primary key.</p> <pre><code>CREATE TABLE T ( X INT PRIMARY KEY, Y INT IDENTITY(1,1) ) </code></pre> <p>Though I'm not sure when this would be useful. If you have a natural key that you want to use as the PK then you would probably want to put a unique constraint on the surrogate alternate key anyway.</p> <p>For purposes of setting up FK relationships SQL Server doesn't care if the column(s) is the PK or not it just requires a unique index on it/them.</p>
26,597,594
0
FullCalendar, possible to set selectable false but allow select slot <p>I'm making an application with <a href="http://fullcalendar.io/" rel="nofollow">FullCalendar</a>.</p> <p>I noticed that with <code>selectable</code> set to <code>true</code>, the user was able to select multiple weeks or time slots which was not desired. On the other hand when I set <code>selectable</code> to <code>false</code>, then I can no longer use the select action that I want to be triggered when the user selects a time slot. Is there any way that <code>selectable</code> feature will remain to <code>false</code>, but still each time slot to be selectable on its own, not as part of group of time slots.</p> <p>Here is my code, passed as array through PHP:</p> <pre><code>'options'=&gt;array( 'header'=&gt;array( 'left'=&gt;'prev,next,today', 'center'=&gt;'title', 'right'=&gt; 'month,agendaWeek,agendaDay', ), 'minTime' =&gt; '09:00:00', 'maxTime' =&gt; '20:00:00', 'slotDuration' =&gt; '01:00:00', 'slotEventOverlap' =&gt; false, 'defaultTimedEventDuration' =&gt; '01:00:00', 'allDaySlot' =&gt; false, 'allDay' =&gt; false, 'lazyFetching'=&gt;true, 'weekends' =&gt; false, 'selectable' =&gt; true, 'height' =&gt; 'auto', 'contentHeight' =&gt; '150', // 'selectHelper' =&gt; true, // 'events'=&gt;array(), // pass array of events directly 'select' =&gt; new CJavaScriptExpression("function(start, end, jsEvent, view) { var currdisplay = view.name; var check = Date.parse(start) / 1000; var today = Date.parse(new Date()) / 1000; if (currdisplay != 'month' &amp;&amp; check &gt;= today) { var start1 = Date.parse(start) / 1000; var end = Date.parse(start) / 1000 + 3600; window.location.href = \"www.somelink.com/?from=\" + start1 + \"&amp;to=\" + end; }}"), 'dayClick' =&gt; new CJavaScriptExpression("function(date, jsEvent, view) { var currdisplay = view.name; if (currdisplay == 'month') { $('.calendar').fullCalendar('gotoDate', date); $('.calendar').fullCalendar('changeView', 'agendaWeek'); }}"), </code></pre> <p>I have currently a fix, as you probably can see in the code block:</p> <pre><code>var start1 = Date.parse(start) / 1000; var end = Date.parse(start) / 1000 + 3600; </code></pre> <p>These two lines make sure that if user select 5 time slots, to set the end time 1 hour (3600 seconds) after the start time, and not 5 hours later, but I'm not satisfied with this solution since I don't find it clean, and I don't like that <code>selectable</code> feature is still available.</p>
36,785,706
0
MySQL select as variable to be used in a function defined in PHP <p>I think this a pretty classical setting: Suppose I have a <code>table tab1</code>, with <code>columns c1, c2</code>. Then I want to <code>select c1, c2</code> as variable of a function <code>fun(a,b)</code> in another select:</p> <pre><code>SELECT fun(@a,@b) as r FROM (SELECT @a:=c1, @b:=c2 FROM tab1) AS tab ORDER BY r LIMIT 10; </code></pre> <p>The fun is pre-defined in PHP:</p> <pre><code>function fun($d, $t){ $timenow = time(); $perd = 45000; $di = (int)$d; $tf = (float)$t; if ($di === 0) { return 0; }else{ return (Log($di)/Log(10)+($timenow-$tf)/$perd); } } </code></pre> <p>The problem is that the variable is not updated at all. I build a test environment in <a href="http://sqlfiddle.com/#!9/9ffd6" rel="nofollow">http://sqlfiddle.com/#!9/9ffd6</a>, the <code>fun(@a,@b)</code> is replaced by <code>@a</code> for simplicity.</p> <hr> <p>UPDATE</p> <p>It seems that my original question canot properly describe my problem. And I updated it, thanks to @wajeeh, the solution could be:</p> <ol> <li>translate my php function into MYSQL form (it is a litter hard for me)</li> <li>Use php function, but return the mysql results as array. (In that case I need to write the odering function by hand! and then (maybe) need another SELECT of MYSQL?)</li> </ol>
29,625,069
0
<p>Andriod like toast in ios .you can modify it as per requirement </p> <p><a href="https://github.com/ecstasy2/toast-notifications-ios" rel="nofollow">https://github.com/ecstasy2/toast-notifications-ios</a></p>
27,282,602
0
golang: How can I populate a multi-struct map in a loop? <p>I have log files of customer interactions with an API. I want to parse those logs and feed the results into a map of structs so that I can organize the data into helpful information. For example, I would like to respond to the following query: "show me the total number of requests per user per day".</p> <p>I have created what seems like an adequate structure to hold the data. However, when I try to run the program I get the error: <code>invalid operation: dates[fields[1]] (type *Dates does not support indexing) [process exited with non-zero status]</code>.</p> <p><a href="http://play.golang.org/p/8u3jX26ktt" rel="nofollow">http://play.golang.org/p/8u3jX26ktt</a></p> <pre><code>package main import ( "fmt" "strings" ) type Stats struct { totalNumberOfRequests int } type Customer struct { listOfCustomers map[string]Stats // map[customerid]Stats } type Dates struct { listOfDates map[string]Customer // map[date]Customer } var requestLog = []string{ "2011-10-05, 1234, apiquery", "2011-10-06, 1234, apiquery", "2011-10-06, 5678, apiquery", "2011-10-09, 1234, apiquery", "2011-10-12, 1234, apiquery", "2011-10-13, 1234, apiquery", } func main() { dates := new(Dates) for _, entry := range requestLog { fmt.Println("entry:", entry) fields := strings.Split(entry, "'") dates.listOfDates[fields[0]].listOfCustomers[fields[1]].totalNumberOfRequests++ } } </code></pre> <p>Is there a better structure to use? Or is there a way to make this structure work for this particular purpose?</p>
11,456,688
0
Hibernate if @NotFound, Insert into Database <p>My client wrote the back-end for an application i'm building using PHP. However He didn't write the database all too well. For instance there is two tables one 'users' and one 'user_settings'. However his script would only create rows in 'user_settings' once a user decided to modify their settings. Otherwise his entire script used defaults, in his words "as an attempt to save database space".</p> <p>However, in Hibernate i'm having to try and get those 'user_settings' for some users and its causing problems for those that don't have any set. Is there a way in hibernate that I would be able to insert some default settings into the database, after a call to getClientSettings() if nothing exists in the database for that client?</p>
4,589,841
0
<p>If you must have forms always work but tracking can be sacrificed if absolutely necessary, you could just try/catch it.</p> <pre><code>$('form').submit(function(e){ try{ e.preventDefault(); var form = this; _gaq.push('_trackEvent', 'Form', 'Submit', $(this).attr('action')); //...do some other tracking stuff... setTimeout(function(){ form.submit(); }, 400); } catch (e) { form.submit(); } }); </code></pre>
3,258,909
0
Collection of Property=>Value? <p>I would like to create a collection of key, value pairs in C# where the key is a property of an ASP.net control (e.g. ID) and the value is the value of that property. I would like to do this so I may later iterate through the collection and see if a given control has the properties in my collection (and the values of the properties in the control match the values defined in my collection). Any suggestions as to the best way to do this? Thanks for any help.</p> <p>Pseudo-code example:</p> <pre><code>Properties[] = new Properties[] {new Property(){name="ID",value="TestControl1"}, new Property(){name = "Text",value="Type text here"}} private bool controlContainsProperties(Control control){ foreach(Property Property in Properties[]) { if((control does not contain property) || (control property value != Property.Value)) return false; } return true; } </code></pre>
5,362,719
0
<p><strong>new_record?()</strong> public<br> Returns true if this object hasn’t been saved yet — that is, a record for the object doesn’t exist yet; otherwise, returns false.<br> This method is deprecated on the latest stable version of Rails. </p> <p><strong>Edit:</strong><br> Oops, looks like the link was broken. Fixed. <a href="http://apidock.com/rails/ActiveRecord/Base/new_record%3F" rel="nofollow">new_record?</a></p>
5,173,385
0
<p>I've read the docs. They are extensive, free and pretty good. Read those.</p>
19,999,957
0
<p>I hit this "non english" error message problem. I think it was due to the wrong versions of libodbc.so and libodbcinst.so being used. Changing the links in /usr/lib/... to point to the teradata installed versions worked for me. Commands using the default install directories in Ubuntu 12.04, 64bit were:</p> <pre><code>cd /usr/lib/x86_64-linux-gnu ls -lha | grep odbc (To should see the files below which are to be replaced). sudo mv libodbc.so.1.0.0 Xlibodbc.so.1.0.0 sudo ln -s /opt/teradata/client/14.10/odbc_64/lib/libodbc.so libodbc.so.1.0.0 sudo mv libodbcinst.so.1.0.0 Xlibodbcinst.so.1.0.0 sudo ln -s /opt/teradata/client/14.10/odbc_64/lib/libodbcinst.so libodbcinst.so.1.0.0 </code></pre> <p>I had also previously installed (through apt-get) odbcinst, so I redirected both files. But possibly only the first is needed.</p>
27,211,215
0
<p>Make sure you have an event <strong>'richTextBox1_MouseHover'</strong> wired to the hover of your Rich Text Box.</p> <pre><code>private void richTextBox1_MouseHover(object sender, EventArgs e) { MessageBox.Show("Hello"); } </code></pre>
39,483,032
0
<p>One simple mistake in your approach. </p> <p>The values from JSON are read as string and you are passing a string to <code>element()</code> and not a locator(not a <code>by</code> object)</p> <pre><code>var webElement = element(test.yourName); // Incorrect. test.yourName returns string </code></pre> <p>Change it way and voila ! You should be good. Use eval(). Refer <a href="http://www.w3schools.com/jsref/jsref_eval.asp" rel="nofollow">here</a></p> <pre><code> var webElement = element(eval(test.yourName)); </code></pre>
6,800,293
0
<p>I guess the problem is, that you are creating new VM.</p> <pre><code>void toClient_GetVenuesCompleted(object sender, GetVenuesCompletedEventArgs e) { if(e.Error == null) { VenueViewModel vvm = new VenueViewModel(); vvm.Venues = e.Result; MessageBox.Show(vvm.Venues.Count.ToString()); } } </code></pre> <p>I think this code works. You create new VenueViewModel, fill it with data and that is all. This VM is never used again. The same rules for MainPage.xaml sample.<br /> You should create global variable of VenuViewModel in constructor/loaded handler and call its GetAllVenues in Loaded event</p>
27,706,899
0
<p>Essentially what I wasn't doing here was actually telling the array what the variables were. Create the variables by using GET to parse the URL and this works perfectly.</p>
3,152,493
0
<p>You may want to look unto how the <a href="http://en.wikipedia.org/wiki/Rsync" rel="nofollow noreferrer"><code>rsync</code></a> protocol works on Unix. It essentially computes the differences between two files and uses that to create a compressed delta used to compute the changes.</p> <p>You may be able to adapt that to what you're trying to do.</p>
31,526,935
0
<p>I devised a solution that is simple however perhaps not very efficient. For my purposes it works well.</p> <pre><code>SELECT ROUND( ST_Distance_Sphere( ST_Centroid(ST_MinimumBoundingCircle(geom)), ST_PointN(ST_Boundary(ST_MinimumBoundingCircle(geom)), 1) ) / 1000 ) AS radius, ST_AsGeoJSON(ST_Centroid(geom)) AS center FROM "Regions" </code></pre> <p>The result ends up being a radius in km and the centroid.</p>
28,209,381
0
<p>Be familiar with using a debugger, you will be able to find out where the issue is.</p> <p>You are clearing the selection in your loop</p> <pre><code>foreach (DataGridViewRow row in dataGridView1.Rows) { } </code></pre> <p>Rethink the if-else logic in it and you will see why. You are clearing your previous selections when you are not suppose to.</p>
24,316,860
0
<p>The problem actually was with the Modernizr script: apparently sometime between now and when I first started using it, the Modernizr folks made the getusermedia portions of their code non-core, and thus was not included in their standard download. </p> <p>I'm not sure whether this was the original problem, or whether my downloading the newest version of Modernizr created another problem on top of the original, but removing Modernizr from the equation solved the issue. I now have a working webcam stream again - albeit only in Chrome. I'll worry about cross-platform stuff later.</p>
21,368,659
0
<p>There is a <a href="http://backbonejs.org/#Collection-create" rel="nofollow">create</a> method to add the new model within a collection and save it to the server.</p> <pre><code>time.create(model); </code></pre>
27,766,128
0
<p>Just add <code>weight_1</code> and <code>weight_2</code>. igraph does not currently have a way to combine vertex/edge attributes from multiple graphs, except by hand. This is usually not a big issue, because it is just an extra line of code (per attribute). Well, three lines if you want to remove the <code>_1</code>, <code>_2</code> attributes. So all you need to do is:</p> <pre><code>E(g3)$weight &lt;- E(g3)$weight_1 + E(g3)$weight_2 </code></pre> <p>and potentially</p> <pre><code>g3 &lt;- remove.edge.attribute(g3, "weight_1") g3 &lt;- remove.edge.attribute(g3, "weight_2") </code></pre> <p>I created an issue for this in the igraph issue tracker, but don't expect to work on it any time soon: <a href="https://github.com/igraph/igraph/issues/800" rel="nofollow">https://github.com/igraph/igraph/issues/800</a></p>
13,966,226
0
Accept only number formats for a property from JSON <p>I am developing ASP.Net Web API application and we are exposing a REST API for different clients. I have a problem when taking users' JSON files and converting them to Data Model classes. My JSON looks like below.</p> <pre><code>{"engagementid":1,"clientname":"fsdfs","myno":"23,45","address1":"fsd","address2":"fsdfs","city":"fsdfs","zip":"fsdf","info":"fsdfs","country":"fsdfs","currency":"NOK"} </code></pre> <p>You can see that my "myno" is sent as a string. But in my Server Data Model "myno" is a double value. So what happen here is when I send the value for "myno" as "23,45", it gets assigned to MyNo property of my Model as 2345. This is wrong, because you can see that the number has been changed because of this wrong conversion. What I simply need is to restrict this conversion. I mean, I want to send an error to Client if he sends a string for "myno" property. Since it is a double value in my Server Data Model, I want to accept only numbers from the client for this property. Which means, I want it like this.</p> <pre><code>{"myno":2345} //correct {"myno":"2345"} //wrong. I want to send a error to user by saying, "We only accept Numbers for this value" </code></pre> <p>How do I do this?</p> <p>Update: This problem gets solved if I am using int in my server-model. I mean, if a client send a string to a property which is represented as int in my model, then it gives an error to user by saying string to int conversion can not be done.</p>
20,129,332
0
How to remove a directory when the cron job is within the child directory <p>I am new at Linux and I need to setup a script that after the work has been done using a cron job needs to delete the working directory. </p> <p>The directory that I am in straight after the job is :</p> <pre><code>working/dealer/network/db/scripts </code></pre> <p>I am doing this within the job to delete this whole path:</p> <pre><code>cd ~/working cd .. rm -rf working </code></pre> <p>As I am new I am sure there is a better way of deleting the working directory and its subfolders. Please can someone help with this?</p> <p>Thanks</p>
27,791,293
0
<p>I get no problems when I insert ':String?' right after valueString as shown below:</p> <pre><code>extension Dictionary { func someMethod() -&gt; Bool { for (key, value) in self { if let valueString:String? = value as? String { println(" \(key) = \(valueString)") } else { println(" \(key) = \(value) cannot be cast to `String`") return false } } return true } } func doSomething() { let dictionary: [String: AnyObject?] = ["foo": "bar"] if dictionary.someMethod() { println("no problems") } else { println("casting issues") } } </code></pre>
15,081,167
0
relational algebra specific operations <p>I have these tables</p> <pre><code>Employee(ssn, name, sex, address, salary, bdate, dno, superssn) fk:superssn is ssn in Employee fk:dno is dnumber in Department Department(dnumber, dname, mgrssn, mgrstartdate) fk:mgrssn is ssn in Employee Dept_locations(dnumber, dlocation) fk:dnumber is dnumber in Department Project(pnumber, pname, plocation, dnum) fk:dnum is dnumber in Department Dependent(essn, dependent_name, sex, bdate, relationship) fk: essn is ssn in Employee Works_on(essn,pno,hours) fk: essn is ssn in Employee; pno is pnumber in Project </code></pre> <p>I would like to retrieve the list of locations for the finance department using only the following relational algebra operations {σ, π, ∪, ρ, −, ×}.</p> <p>so far i have: π dlocation (σ department (dname = 'research'))</p> <p>i'm really stuck, and confused... i don't know if its possible to do it without an equijoin operation.</p>
31,685,162
0
<p>You seem to be using JQuery correctly. The Javascript to extract the value and the send the GET request should be working.</p> <p>Your misunderstanding lies in how you check if the PHP file has received the request. This redirect</p> <pre><code>location.href = "leaderprofile.php"; </code></pre> <p>Will not provide you any information about the GET request that you just made. Instead you can try:</p> <pre><code>location.href = "leaderprofile.php?lname=" + $("#gopal").val() </code></pre> <p>To verify that your PHP and Javascript is performing as expected. If you see the values that you expect then I believe you have confirmed two things:</p> <ul> <li>successfully extracted the correct value from the textbox</li> <li>GET request is succeeding, and the success callback is being invoked</li> </ul>
13,487,175
0
EJB 3.1 lookup returns null remote object <p>I am using <em>EJB3</em> deployed on <em>WAS 8</em>. I am accessing this EJB from my <em>WEB server</em> using <em>Context.lookup</em>. This look up works fine and the entire application works fine for the first time after <em>WAS</em> is restarted. However when I run the application for the second time, the look up does happen, but a NULL value is returned. I dont get any exception or error or any logs on <em>WAS</em>.</p> <p>Again if I restart the <em>WAS</em>, the application works well.</p> <p>Can anyone please guide what the issue can be?</p>
13,608,586
0
<p>A simple solution should be using the css3 transition. You can do something like this:</p> <p>In Your CSS</p> <pre><code>#facebook_icon li{ -moz-transition: background-position 1s; -webkit-transition: background-position 1s; -o-transition: background-position 1s; transition: background-position 1s; background-position: 0 0; } #facebook_icon li:hover{ background-position: 0 -119px; } </code></pre>
27,438,100
0
<p>Depending on the number of options you have, rather than dynamically modifying the value, you could pre-populate your HTML with all of the possible values, and only show the "current" values.</p> <pre><code>&lt;div class="section"&gt; &lt;select&gt;&lt;/select&gt; &lt;select class="hide"&gt;&lt;/select&gt; &lt;select class="hide"&gt;&lt;/select&gt; &lt;select class="hide"&gt;&lt;/select&gt; &lt;select class="hide"&gt;&lt;/select&gt; &lt;/div&gt; </code></pre> <p>Then you can do something like:</p> <pre><code>index = this.selectedIndex; $('.section').find('&gt; select').addClass('hide').eq(index).removeClass('hide') </code></pre>
13,476,342
0
<p>Try upgrading to the latest version of <a href="https://github.com/fnagel/jquery-ui/wiki/Selectmenu" rel="nofollow">Selectmenu</a>. This resolved the issue for me when I upgraded our site to the latest jQuery release (1.8.3). Seems like some old code in the selectmenu API that just never worked, and when upgrading jQuery, it starts throwing errors.</p>
12,610,734
0
filter "items" with Jquery via a Dropdown <p>I currently have Dropdown at the top of the page and a long list (83 boxes in rows of 4) underneath it.</p> <p>Here is the scenario:</p> <p>I select a state from the list of states in the dropdown, and the item in the list that do not match the state fade out allowing the matching items to "pop up" to the top. Once you go back to the default, all the others fade back in.</p> <p>If there are no matching items to a state, I would display a message "no options found"</p> <p>I am pretty sure I have seen this done on portfolios somewhere, but I really have no clue on how to achieve this. Does anyone have an idea on how to implement this, or can point me in the right direction?</p> <pre><code>&lt;select id="filter" name="filter"&gt; &lt;option value="-1"&gt;Filter items&lt;/option&gt; &lt;option value="sc"&gt;South Carolina&lt;/option&gt; &lt;option value="nc"&gt;North Carolina&lt;/option&gt; &lt;/select&gt; &lt;div id="container"&gt; &lt;div class="box state-nc"&gt;&lt;/div&gt; &lt;div class="box state-sc"&gt;&lt;/div&gt; &lt;div class="box state-nc"&gt;&lt;/div&gt; &lt;div class="box state-sc"&gt;&lt;/div&gt; &lt;div class="box state-nc"&gt;&lt;/div&gt; &lt;div class="box state-sc"&gt;&lt;/div&gt; &lt;div class="box state-nc"&gt;&lt;/div&gt; &lt;div class="box state-sc"&gt;&lt;/div&gt; &lt;/div&gt; </code></pre>
13,444,930
0
Is the u8 string literal necessary in C++11 <p>From <a href="http://en.wikipedia.org/wiki/C++11#New_string_literals">Wikipedia</a>:</p> <blockquote> <p>For the purpose of enhancing support for Unicode in C++ compilers, the definition of the type char has been modified to be at least the size necessary to store an eight-bit coding of UTF-8.</p> </blockquote> <p>I'm wondering what exactly this means for writing portable applications. Is there any difference between writing this</p> <pre><code>const char[] str = "Test String"; </code></pre> <p>or this?</p> <pre><code>const char[] str = u8"Test String"; </code></pre> <p>Is there be any reason not to use the latter for every string literal in your code?</p> <p>What happens when there are non-ASCII-Characters inside the TestString?</p>
15,334,555
0
How to improve this Mathematica 9 code with Dynamic <p>How to improve this Mathematica 9 code with Dynamic to speed up the calculation. On my PC this code working with "n" less then 13 otherwise the result is "$Aborted", but I need n=20. You can use, for example, rho=0.64 and phi=1.107 I want that in opened html file when you type parameters automatically calculates, and even better, that was a button "calculate".</p> <p>view in browser</p> <p><img src="https://i.stack.imgur.com/W8QVx.jpg" alt=""></p> <p>at first I need solve </p> <pre><code>Solve[(xx == Sin[\[Rho]] Cos[\[Phi]]) &amp;&amp; (yy == Sin[\[Rho]] Sin[\[Phi]]) &amp;&amp; (zz == Cos[\[Rho]]), {xx, yy, zz}] </code></pre> <p>then do "Replace" three times fo each variable </p> <p>"1"</p> <pre><code>Replace[xx, First[Solve[(xx == Sin[\[Rho]] Cos[\[Phi]]) &amp;&amp; (yy == Sin[\[Rho]] Sin[\[Phi]]) &amp;&amp; (zz == Cos[\[Rho]]), {xx, yy, zz}]][[1]]] </code></pre> <p>"2"</p> <pre><code>Replace[yy, First[Solve[(xx == Sin[\[Rho]] Cos[\[Phi]]) &amp;&amp; (yy == Sin[\[Rho]] Sin[\[Phi]]) &amp;&amp; (zz == Cos[\[Rho]]), {xx, yy, zz}]][[2]]] </code></pre> <p>"3"</p> <pre><code>Replace[zz, First[Solve[(xx == Sin[\[Rho]] Cos[\[Phi]]) &amp;&amp; (yy == Sin[\[Rho]] Sin[\[Phi]]) &amp;&amp; (zz == Cos[\[Rho]]), {xx, yy, zz}]][[3]]] </code></pre> <p>In fact, I write it all in one "Dynamic" as I do not know how to make it right - so that in the html file automatically calculates all after entering the values ​​of the variables </p> <p>"1","2","3" in code are acronyms for the above</p> <pre><code>Dynamic[ Cases[ Drop[Tuples[Range[-n, n], 3], {( Length[Tuples[Range[-n, n], 3]] + 1)/2}], {h_, k_, l_} /; ("1" -"1"/10) &lt;= h/( GCD[h, k, l] Sqrt[ h^2 + k^2 + l^2]) &lt;= ("1" +"1"/10) \[And] ("2" -"2"/10) &lt;= k/( GCD[h, k, l] Sqrt[ h^2 + k^2 + l^2]) &lt;= ("2" +"2"/10) \[And] ("3" -"3"/10) &lt;= l/( GCD[h, k, l] Sqrt[ h^2 + k^2 + l^2]) &lt;= ("3" +"3"/10)]] </code></pre> <p>if denote</p> <p>"11" - </p> <pre><code>h/(GCD[h, k, l] Sqrt[h^2 + k^2 + l^2]) </code></pre> <p>"22" - </p> <pre><code>k/(GCD[h, k, l] Sqrt[h^2 + k^2 + l^2]) </code></pre> <p>"33" - </p> <pre><code>l/(GCD[h, k, l] Sqrt[h^2 + k^2 +l^2]) </code></pre> <p>then code are:</p> <pre><code> Dynamic[ Cases[ Drop[ Tuples[ Range[-n, n], 3], {(Length[Tuples[Range[-n, n], 3]] + 1)/2}], {h_, k_, l_} /; ("1" -"1"/10) &lt;= "11" &lt;= ("1" +"1"/10) \[And] ("2" -"2"/10) &lt;= "22" &lt;= ("2" +"2"/10) \[And] ("3" -"3"/10) &lt;= "33" &lt;= ("3" +"3"/10)]] </code></pre> <p>This code works, as I need. Thank you for your interest!</p> <pre><code>Column[{Style["Определить hkl", Bold, 16], Labeled[InputField[Dynamic[\[Rho]]], "\[Rho]", Left, LabelStyle -&gt; Directive[Bold, FontSize -&gt; 18]], Labeled[InputField[Dynamic[\[Phi]]], "\[Phi]", Left, LabelStyle -&gt; Directive[Bold, FontSize -&gt; 18]], Labeled[InputField[Dynamic[n]], "n", Left, LabelStyle -&gt; Directive[Bold, FontSize -&gt; 18]]}] SetAttributes[redoButton, HoldRest] redoButton[str_, fun_] := DynamicModule[{result = Null}, Column[{Button[str, result = fun]}]] Column[{redoButton[ "x,y,z", {px = Replace[xx, First[Solve[(xx == Sin[\[Rho]] Cos[\[Phi]]) &amp;&amp; (yy == Sin[\[Rho]] Sin[\[Phi]]) &amp;&amp; (zz == Cos[\[Rho]]), {xx, yy, zz}]][[1]]], py = Replace[yy, First[Solve[(xx == Sin[\[Rho]] Cos[\[Phi]]) &amp;&amp; (yy == Sin[\[Rho]] Sin[\[Phi]]) &amp;&amp; (zz == Cos[\[Rho]]), {xx, yy, zz}]][[2]]], pz = Replace[zz, First[Solve[(xx == Sin[\[Rho]] Cos[\[Phi]]) &amp;&amp; (yy == Sin[\[Rho]] Sin[\[Phi]]) &amp;&amp; (zz == Cos[\[Rho]]), {xx, yy, zz}]][[3]]]}], {Dynamic[px], Dynamic[py], Dynamic[pz]}, redoButton["ppp", ppp = Part[ Nearest[ReplaceAll[ Drop[Tuples[Range[-n, n], 3], {( Length[Tuples[Range[-n, n], 3]] + 1)/2}], {h_, k_, l_} -&gt; {h/ Sqrt[h^2 + k^2 + l^2], k/Sqrt[h^2 + k^2 + l^2], l/Sqrt[ h^2 + k^2 + l^2]}], {px, py, pz}], 1]], Dynamic[ppp], redoButton["hkl", hkl = MatrixForm[ Cases[Drop[ Tuples[Range[-n, n], 3], {( Length[Tuples[Range[-n, n], 3]] + 1)/2}], {h_, k_, l_} /; h/(GCD[h, k, l] Sqrt[h^2 + k^2 + l^2]) == Part[ppp, 1] \[And] k/(GCD[h, k, l] Sqrt[h^2 + k^2 + l^2]) == Part[ppp, 2] \[And] l/(GCD[h, k, l] Sqrt[h^2 + k^2 + l^2]) == Part[ppp, 3]]]], Style[Dynamic[hkl], Bold, 18]}] </code></pre>
5,001,667
0
<p>You can also use tabbar controller's delegate method</p> <p><code>- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController</code></p>
3,046,495
0
<p>Stored procedures are not very good at being super-generic because it prevents SQL Server from always using optimal methods. In a similar situation recently I used (<em>gasp</em>) dynamic SQL. My search stored procedures would build the SQL code to perform the search, using pagination just like you have it (WITH with a ROW_NUMBER(), etc.). The advantage was that if parameters indicated that one piece of information wasn't being used in the search then the generated code would omit it. In the end it allowed for better query plans.</p> <p>Make sure that you use sp_executesql properly to prevent SQL injection attacks.</p>
25,743,133
0
Are stack float array ops faster than heap float ops on modern x86 systems? <p>On C float (or double) arrays small enough to fit in L1 or L2 cache (about 16k), and whos size I know at compile time, is there generally a speed benefit to define them within the function they are used in, so they are stack variables? If so is it a large difference? I know that in the old days heap variables were much slower than stack ones, but nowadays with the far more complicated structure of cpu addressing and cache, I don't know if this is true. </p> <p>I need to do repeated runs of floating point math over these arrays in 'chunks', over and over again over the same arrays (about 1000 times), and I wonder if I should define them locally. I imagine keeping them in the closest / fastest locations will allow me to iterate over them repeatedly much faster but I dont understand the implications of caching in this scenario. Perhaps the compiler or cpu is clever enough to realize what I am doing and make these data arrays highly local on the hardware during the inner processing loops without my intervention, and perhaps it does a better job than I can at this. </p> <p>Maybe I risk running out of stack space if I load large arrays in this way? Or is stack space not hugely limited on modern systems? The array size can be defined at compile time and I only need one array, and one CPU as I need to stick to a single thread for this work.</p>
20,211,261
0
<p>You need to store the locale of the language that was selected on the login form and then make use of it when you generate your UIs after login. So instead of using </p> <pre><code>ResourceBundle.getBundle("basic", new Locale("en", "US")); </code></pre> <p>you then would use </p> <pre><code>ResourceBundle.getBundle("basic", classWhereTheLocaleIsStores.getLocale()); </code></pre>
1,537,279
0
<pre><code>window.location.href = "someurl"; </code></pre>
24,206,195
0
<pre><code>function YourMethod(data) { window.location.href = "@Url.Action("ExportData", "Home")?id=" + data; } </code></pre> <p>You can append any number of params this way. </p>
6,866,477
0
<p>It appears that your onHandleIntent method is not blocking the thread it is executing on, so it will return quickly and allow the second intent to be processed. Not only that, but any callbacks from the LocationManager to that thread are unlikely to be processed as the background thread is likely to be killed when onHandleIntent is finished.</p> <p>If you really want to use IntentService to manage your intent queue then you will need to do your location handling on its own thread, and join the IntentService thread to the location thread whilst it is waiting for the location callback.</p> <p>Heres a bit of code that demonstrates the idea:</p> <pre><code>public class TestService extends IntentService { private static final String TAG = "TestService"; private Location mLocation = null; public TestService() { super(TAG); } @Override public void onHandleIntent(Intent intent) { Log.d(TAG, "onHandleIntent"); if (mLocation == null) { Log.d(TAG, "launching location thread"); LocationManager locationManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE); LocationThread thread = new LocationThread(locationManager); thread.start(); try { thread.join(10000); } catch (InterruptedException e) { Log.d(TAG, "timeout"); return; } Log.d(TAG, "join finished, loc="+mLocation.toString()); } else { Log.d(TAG, "using existing loc="+mLocation.toString()); } } private class LocationThread extends Thread implements LocationListener { private LocationManager locationManager = null; public LocationThread(LocationManager locationManager) { super("UploaderService-Uploader"); this.locationManager = locationManager; } @Override public void run() { Log.d(TAG, "Thread.run"); Looper.prepare(); this.locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, this); this.locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, this); Looper.loop(); } @Override public void onLocationChanged(Location location) { // TODO Auto-generated method stub Log.d(TAG, "onLocationChanged("+location.toString()+")"); mLocation = location; Looper.myLooper().quit(); } @Override public void onProviderDisabled(String arg0) { } @Override public void onProviderEnabled(String arg0) { } @Override public void onStatusChanged(String arg0, int arg1, Bundle arg2) { } } } </code></pre> <p>Of interest in there is the Looper that runs a message loop on the thread (to allow handling of the callbacks).</p> <p>Given the effort required to do this with IntentService it might be worthwhile investigating deriving from Service instead and managing your own intent queue.</p>
11,972,096
1
matplotlib log scales causes missing points <p>I'm having a really strange issue with matplotlib. Plotting some points looks like this:</p> <p><img src="https://i.stack.imgur.com/JZZpM.png" alt="regulargraph"></p> <p>When I switch to a log scale on the y-axis, some of the points are not connected:</p> <p><img src="https://i.stack.imgur.com/qaw9g.png" alt="logscale"></p> <p>Is this a bug? Am I missing something? Code is below. Comment out the log scale line to see the first graph.</p> <pre><code>import matplotlib.pyplot as plt fig = plt.figure() ax1 = fig.add_subplot(111) x = [1.0, 2.0, 3.01, 4.01, 5.01, 6.01, 7.04, 8.04, 9.04, 10.05, 11.05, 12.09, 13.17, 14.18, 15.73, 16.74, 17.74, 18.9, 19.91, 20.94, 22.05, 23.15, 24.33, 25.48, 26.51, 27.58, 28.86, 29.93, 30.93, 32.23, 33.25, 34.26, 35.27, 36.29, 37.33, 38.35, 39.36, 40.37, 41.37] y = [552427, 464338, 446687, 201960, 227238, 265140, 148903, 134851, 172234, 120263, 115385, 100671, 164542, 171176, 28, 356, 0, 0, 195, 313, 9, 0, 132, 0, 249, 242, 81, 217, 159, 140, 203, 215, 171, 141, 154, 114, 99, 97, 97] ax1.plot(x, y, c='b', marker='o') ax1.set_yscale('log') plt.ylim((-50000, 600000)) plt.show() </code></pre>
14,347,013
0
<p>Try <strong>Event Delegation</strong>:</p> <pre><code>$(document).on("change", "#Sites", function(){ var siteId = this.value; GetSectors(siteId); }); </code></pre> <blockquote> <p>The bubbling behavior of events allows us to do "event delegation" — <strong>binding handlers to high-level elements, and then detecting which low-level element initiated the event.</strong></p> <p>Event delegation has two main benefits. <strong>First</strong>, it allows us to <strong>bind fewer event handlers</strong> than we'd have to bind if we were listening to clicks on individual elements, which can be <strong>a big performance gain</strong>. <strong>Second</strong>, it allows us to <strong>bind to parent elements</strong> — such as an unordered list — and know that our event handlers will <strong>fire as expected even if the contents of that parent element change.</strong></p> </blockquote> <p>Taken from: <a href="http://jqfundamentals.com/chapter/events">http://jqfundamentals.com/chapter/events</a></p> <blockquote> <p>Delegated events have the advantage that <strong>they can process events from descendant elements that are added to the document at a later time. By picking an element that is guaranteed to be present at the time the delegated event handler is attached, you can use delegated events to avoid the need to frequently attach and remove event handlers.</strong> This element could be the container element of a view in a Model-View-Controller design, for example, or document if the event handler wants to monitor all bubbling events in the document. The document element is available in the head of the document before loading any other HTML, <strong>so it is safe to attach events there without waiting for the document to be ready.</strong></p> </blockquote> <p>Taken from: <a href="http://api.jquery.com/on/">http://api.jquery.com/on/</a></p>
34,548,611
0
<p>First, here are some resources to set you on the right path: </p> <ul> <li><a href="https://www.meteor.com/tutorials/blaze/creating-an-app" rel="nofollow">https://www.meteor.com/tutorials/blaze/creating-an-app</a></li> <li><a href="http://docs.meteor.com/#/full/" rel="nofollow">http://docs.meteor.com/#/full/</a></li> </ul> <p>Make it easy on yourself by reading the docs and using the conventions of meteor. Add an event to the body template to handle the <code>#addNewTask</code> click event. Below is how to get this working in meteor.</p> <p>In your javascript: </p> <pre><code>Template.body.events({ "click #addNewTask": function(event, template) { $(".new-task").toggle(); } }); </code></pre> <p>In your html: </p> <pre><code>&lt;nav&gt; &lt;div&gt; &lt;logo&gt;Logo&lt;/logo&gt; &lt;button id="addNewTask"&gt;add newTask&lt;/button&gt; &lt;/div&gt; &lt;/nav&gt; {{&gt;submitTask}} &lt;template name="submitTask"&gt; &lt;div&gt; &lt;form class="new-task" style="display:none;"&gt; &lt;textarea name="title" placeholder="Enter Task" rows="10"&gt;&lt;/textarea&gt; &lt;input type="submit" value="Submit" class="button right"&gt; &lt;/form&gt; &lt;/div&gt; &lt;/template&gt; </code></pre>
319,459
0
<p>open a TCP socket to the LPR port on the target printer.</p> <p>send your data; as long as the printer comprehends it, you're cool.</p> <p>don't forget a Line feed when you're done.</p> <p>(then close the port.)</p>
5,805,847
0
Checking if an Object is null at the same time as a value of one of it's fields <p>Which of these would be correct?</p> <pre><code>if(dialog != null &amp;&amp; dialog.isShowing){} if(dialog.isShowing &amp;&amp; dialog != null){} if(dialog != null){ if(dialog.isShowing){} } </code></pre>
20,598,049
0
How to sort elements in an ArrayList of Strings? <pre><code> PhoneBookCollection phoneBook = new PhoneBookCollection(); </code></pre> <p>I have an <code>ArrayList</code> of <code>PhoneBook</code> objects. (The getCollection method returns the list)</p> <pre><code>ArrayList&lt;PhoneBook&gt; list = phoneBook.getCollection(); </code></pre> <p><br> I then iterate through my ArrayList and get the <code>PhoneBook</code> at the i'th index and get its corresponding <code>Telephone</code>.</p> <pre><code>for(int i = 0; i &lt; list.size(); i++ ){ String phone = phoneBook.getPhoneBook(i).getTelephone(); } </code></pre> <p>What I want to be able to do now is sort the <code>getTelephone</code> objects in ascending order. I know that ArrayLists don't have a sort method so i'm having a bit of trouble doing this.</p>