_id
stringlengths
2
6
text
stringlengths
4
46k
title
stringclasses
1 value
d1001
You have missed one of the conditions. You also want whenever PARENT is NULL the Value of PRIMARY_PARENT be equal to the value of PARENT in the next row. You can take care of it this way: SELECT * FROM (SELECT *, LEAD(PARENT) OVER(Order BY (SELECT NULL)) as LeadParent FROM COMPANY_TABLE) T WHERE PARENT IS NOT NULL...
d1002
seems that your are passing List<String> to fragment. You should use Bundle to hold your data and then pass to fragment use Fragment.setArguments. here is a example: Bundle data = new Bundle(); data.putStringArrayList("your_argument_name", dataList); Fragment f = ...; f.setArguments(data); here is how ...
d1003
Short answer. Currently (in 2.4.1) it contains only one field, IPROTO_ERROR_STACK (0). But in future more fields may be added to this map. The format of MP_MAP with a single key is chosen for better extendibility. All connectors should be able to parse IPROTO_ERROR_STACK key, and skip any other key. So even if in futur...
d1004
First of all, interfaces only exist at compile time, so it is not possible to have conditions on them in the code. Conditional return types do exist, but only seem to be partially supported: enum ResultType { INT = 'int', BOOL = 'bool', STRING = 'string', } interface TypeMap { int: number; bool: b...
d1005
From help on the Doctrine IRC channel you need to create a custom DQL function. Example: https://github.com/beberlei/DoctrineExtensions/blob/master/lib/DoctrineExtensions/Query/Mysql/Day.php Docs: http://www.doctrine-project.org/blog/doctrine2-custom-dql-udfs.html A: A bit late for OP, but maybe someone will find it h...
d1006
There is another repo which is officially maintained by the Froala team and would be better to use that one: https://github.com/froala/react-froala-wysiwyg. It also supports two way bindings.
d1007
the logic of your formula may be correct, but more factors must be considered when playing with the calendar as humanity likes to adjust even the rules of adjustment. here are a few examples: * *the longest year in history: 46 BCE (708 AUC) lasting 445 days known as "the last year of confusion" as Ceasar added 3 more...
d1008
change cordova plugin add cordova-plugin-firebase with cordova plugin add cordova-plugin-firebasex another option is after adding cordova-plugin-firebase add 2 another plugin cordova-android-play-services-gradle-release cordova-android-firebase-gradle-release A: Here are the steps to make it work: * *cordova pla...
d1009
You could look at the table.assign(<new column> = <formula>) function to build out your dataframe.
d1010
You can use the ClientResponse type in Jackson. For example, using a GET operation: ClientResponse response = Client.create() .resource(url) .get(ClientResponse.class); String contentType = response.getHeaders() .getFirst("Cont...
d1011
When I changed the arguments to gevetn patch all: ... elif async_mode == 'gevent': from gevent import monkey monkey.patch_all(ssl=False) ... It seems to work.
d1012
You need to set the timestamp on the AVPacket before you call av_write_frame() or av_interleaved_write_frame()
d1013
Timsort is stable, which means that you can get what you want with something like >>> assert not message.islower() >>> ''.join(sorted(message, key=lambda c: not c.isupper())).upper() 'HAPPY NEW MONTH' The trick is that booleans are a subclass of integers in python. The key returns False == 0 for elements you want to m...
d1014
There is a bug in angular-cli when the swagger-codegen package is either linked using npm link or installed directly using: npm install PATH_TO_GENERATED_PACKAGE/dist --save (see: https://github.com/angular/angular-cli/issues/8284). The issue seems to be with ng serve only, not with ng build --prod --base-href=..., bu...
d1015
It is possible, but you'll need to do some work to get them calling properly. I've never done it myself, but until someone better equipped to answer the question comes along here's a few places to start. Take a look at the JNI (Java Native Interface, google or wikipedia can tell you more), which lets you call out from ...
d1016
here is a list of Websocket errors codes that you might receive. websocket-close-codes Most likely you'll receive 1006 in case of an exception A: Browser-side error events are actually related to "close codes" used by the WebSocket protocol, as detailed in section 11.7 to the RFC. You can find the registered WebSocket...
d1017
Please look up https://gojs.net/latest/samples/index.html - these are javascript based - Individual classes are also available (which you can customize for a new visualization) - It can be installed via npm, and, if you don't like it, can be easily removed from the system. I hope this helps. regards SS
d1018
Try the following : JSON.stringify(updates.map(({point,value})=>({point,value}))); let updates = [{id : 1, point : 1, value: 2},{id : 1, point : 1, value: 2}]; console.log(JSON.stringify(updates.map(({point,value})=>({point,value})))); A: If updates is an array. Then you might want something like this: const new...
d1019
If your barcode scanner is a keyboard wedge, you should be able to configure the trailing character to a TAB. It seems like, by default, your scanner is trailing with an ENTER (carriage return). Another option would be to also check for a LF (decimal 10) in your javascript code. A: You need to return false in order to...
d1020
You haven't defined query if q isn't in POST or GET. Since that's the only place where this error would appear, you must not be passing in q. An empty QuerySet wouldn't cause this error. To be sure, it would help to have the line that triggered the error (the traceback - please). def search(request): show_results =...
d1021
I guess you meant: __shared__ int snums[512]; Will there be any bank conflict and performance penalty? Assuming at some point your code does something like: int a = snums[2*threadIdx.x]; // this would access every even location the above line of code would generate an access pattern with 2-way bank conflicts. 2-w...
d1022
I think dataframe.rolling is operating on the original dataframe only, it actually provides a rolling transformation. If any data is modified in a rolling window of the dataframe, it will NOT be updated in the consequential rolling windows. Actually I am facing the same issue here. So far the alternative I am using is ...
d1023
You must run this program as administrator in order for it to work correctly. I just tested it working and GetLastError() = 0 after each line, which means there were no problems.
d1024
The easiest approach is to use %in%: germany_yields[germany_yields$Date %in% italy_yields$Date, ] A: We can also use dplyr library(dplyr) germany_yields %>% filter(Date %in% italy_yields$Date)
d1025
Try out/target/product/XXXXX from your build directory where XXXXX if your build target, maguro for the Galaxy Nexus for instance or generic for the emulator.
d1026
Here's a function I wrote for that a while back. I've been using it. #Christopher Barry, 28/01/2015 insertRows <- function(DF, mtx, row){ if(is.vector(mtx)){ mtx <- matrix(mtx, 1, length(mtx), byrow=T) } nrow0 <- nrow(DF) nrows <- nrow(mtx) ncols <- ncol(DF) #should be same as for mtx if(is.matrix(DF)...
d1027
Something like this ought to work import tensorflow as tf import numpy as np def y_pred(x, w): return [x[0]*w[0]+x[1]*w[0], x[2]*w[1]+x[3]*w[1]] def loss_fun(y_true, y_pred): return tf.reduce_sum(tf.pow(y_pred - y_true, 2)) x = np.array([1, 2, 3, 4], dtype="float32") y_true = np.array([10, 11], dtype...
d1028
In the $config array passed into the pagination initialize() method, you can set the number of links to display on either side of the current page with num_links: $config['num_links'] = 2; From the CI user guide: The number of "digit" links you would like before and after the selected page number. For example, the nu...
d1029
In general, this used to be not allowed by design. It's a violation of the sandbox. From Wikipedia -> Javascript -> Security: JavaScript and the DOM provide the potential for malicious authors to deliver scripts to run on a client computer via the web. Browser authors contain this risk using two restrictions. First, sc...
d1030
Take a look here. This tutorial was really helpful for me when I was a beginner. Hope that it will helps you too! Good luck.
d1031
bit shift operator A: From documentation If first operand is an int or uint (32-bit quantity), the shift count is given by the low-order five bits of second operand. If first operand is a long or ulong (64-bit quantity), the shift count is given by the low-order six bits of second operand. Note that i<<1 ...
d1032
Solved it! ExecStart='/etc/alternatives/python3' ./manage.py myCronJob --settings=server.settings.production WorkingDirectory=/opt/myWebapp User=myUser The user ('myUser' in the above code) has access to Django.
d1033
I think I see what he's getting at. Say like this: Web client ---> Presentation web server ---> web service call to database In this case you're depending on the middle server encrypting the data again before it gets to the database. If the message was encrypted instead, only the back end would know how to read it, s...
d1034
Because you're using var, i is hoisted: to the interpreter, your code actually looks something like this: var i; for (i=0; i<500; i++) { var compare = cryptoSName[i].innerHTML // ... So at the end of your loop, i has a value of 500, and you don't have an element with an ID of ...500. Use let instead, since let has...
d1035
Of course you should only return the properties required. If you wind up with several objects which only differ in a few properties, then that's ok. But don't include properties in the DTO that are not used in a particular situation.
d1036
Try this rbl.SelectedValue = "1";
d1037
To validate html forms , the simplest way is to combine two open source powerful frameworks twitter bootstrap ( to get nice form ) and jquery.validate.js plugin ( for validation ). Bootstrap framework : http://getbootstrap.com/getting-started/ . Jquery validation plugin : http://jqueryvalidation.org/ So your html code ...
d1038
I downloaded you Plnkr and tried it in browser. Here is error from Chrome console: ReferenceError: $compile is not defined This means that AngularJS can't use $compile, because it is not injected into your controller. This should be done in controllers.js like this: // I have added $compile controller('DemoCtrl', ['$s...
d1039
Use the jQuery outerWidth function to retrieve the width inclusive of padding, borders and optionally margin as well (if you send true as the only argument to the outerWidth method). A: Tested Solution: Find height of a div and use it as margin top of another div. $('.topmargindiv').css('margin-top', function() { ...
d1040
Boost.GIL is not dead. There is a few maintainers interested in keeping the project up to date, fixing bugs, helping contributors to bring new features, etc. Boost.GIL is preparing for refreshing release as part of the upcoming Boost 1.68, including new I/O implementation accepted to Boost.GIL during the official Boost...
d1041
See this SO answer: In the simplest terms, the tilde matches the most recent minor version (the middle number). ~1.2.3 will match all 1.2.x versions but will miss 1.3.0. The caret, on the other hand, is more relaxed. It will update you to the most recent major version (the first number). ^1.2.3 will match any 1.x.x re...
d1042
For a column having several rows mode(x) can be an array as there can be multiple values with high frequency. We will take the first one by default always using: mode[0] at the end.
d1043
Classic confusion caused by extending JPanel and using another JPanel. Replace frame.getContentPane().add(secPanel) with frame.add(this , BORDERLAYOUT.CENTER) and everything should work fine. A: You are calling super.paintComponents(g); in paintComponent, not the s at the end, this is going to cause a StackOverflowExc...
d1044
I think dynamic rewrite based on the data in Redis is possible using embedded Lua. Check these two links: Lua module, Lua Redis driver Another solution is to write the redirect logic using the language of your choice with some web-server for that language and then use proxy_pass nginx directive to proxy your requests t...
d1045
One approach is to collect the "failed" paths for each sender, and return the path collections that have more than 10 items: MATCH path = (a:Sender)-[:FAILED_TO]->(r:Recipient) WITH a, COLLECT(path) AS paths WHERE SIZE(paths) > 10 RETURN paths
d1046
You can just replace $_GET['c.id'] with $_GET['id'].
d1047
Since it's a table, I'd suggest structured references like: =COUNTIF(Table1[[#Headers],[Product]]:[@Product],[@Product]) A: I don't get the same results as you do -- when I insert a row, the criteria cell changes. In any event, since this is a Table, you can use structured references: B2: =COUNTIF(INDEX([Product],1):...
d1048
I don't know exactly why it doesn't work on processing.js. However, you are doing the image processing (drawing the black stripes) each time the draw() function is called, this seems unnecessary and might be too intensive for the browser. Remember that the setup() function gets called once when the sketch starts wherea...
d1049
The second image are default references. If you set them they are automatically applied after adding this script to an object. They are not required. And only apply to a script added via the Editor (not by script!). What matters later on runtime are only the values on the GameObject. Further you can only reference ass...
d1050
From the machine running the server, search what is my ip on google (http://google.com/search?q=what+is+my+ip). It will show your public IP address, use that to access your web server from your mobile phone. 192.168.. are private IP addresses. They can only be accessed from devices on same local network.
d1051
This is a sandbox problem. The browser does not allow loading local resources for security reasons. If you need it still, use a local webserver on your machine. A: Most major browsers don't allow you to load in local files, since that poses a security error, e.g. people stealing secure files. You need to test this on ...
d1052
You could use an argument to pull the xml file and then build it into the image. FROM alpine ARG SERVER_CONF RUN curl ${SERVER_CONF} EXEC server.sh Then you can run build and pass in the location of the xml file docker build --build-arg SERVER_CONF=http://localhost/server.xml Alternatively you could set this as an en...
d1053
$('article *',document.body).click( function(e){ e.stopPropagation(); var selectedElement = this.tagName; $(selectedElement).css('border','1px dotted #333'); } ); Demo at JS Bin, albeit I've used the universal selector (since I only posted a couple of lists (one an ol the other a ul). Above code edited in ...
d1054
You are just missing the declaration of result in the code blocks.. personally I would suggest the second code block anyway (when corrected) but here... public string test(){ bool a = true; string result = string.Empty; if(a){ result = "A is true"; }else{ result = "A is not true"; } return result; } And ...
d1055
Are you querying the data in from info path or using visual studio, if you are querying in info path check the condition as Display name matches the username() and the query the data
d1056
This should basically do what you want, using a simple open struct to create a message class which has accessors for each of the keys in your message hash require 'ostruct' class MessageParser Message = Struct.new(:type, :id, :number, :message, :log_no, :log_msg_no, :message_v1, :message_v2, :message_v3, :message_v4...
d1057
Modify your cell class as class BaseFormCollectionViewCell: UICollectionViewCell { var formComponent: FormComponent!{ didSet { //this is unnecessary. You can achieve what u want with a bit more cleaner way using configure function as shown below //data can be print out here print("Passed v...
d1058
Here's a suggestion. There's a neat module in the standard library called fileinput that allows you to easily read several files in a row and also gives you access to the filenames, line numbers, etc. Try something like the following and see if it fits your needs: import glob import fileinput file_list = glob.glob(......
d1059
The following snippet hides the navigation bar and status bar: window.decorView.apply { // Hide both the navigation bar and the status bar. // SYSTEM_UI_FLAG_FULLSCREEN is only available on Android 4.1 and higher, but as // a general rule, you should design your app to hide the status bar whenever you /...
d1060
Your example data makes the question clearer. You could collect the manager levels as you descend: ; with Tree as ( SELECT empid , mgrid , 1 as lv , 1 as level1 , null as level2 , null as level3 , null as level4 ...
d1061
I found an answer. Rather than using the vague blockquote conversion method, I instead used PHP to print a JS script for each container with a unique twitter ID. 100% success rate: <?php /* OUTPUT */ // Count tweets for debug $number_tweets = count($tweet_array['statuses']); echo "<div class='cols'>"; // Lo...
d1062
You can also use the dict initializator that takes an iterable of key-value tuples. So this would be perfect for your function that already returns a tuple: >>> dict(map(foo, list_of_vals)) {2: 200, 4: 400, 6: 600} In general though, having a function that returns a key-value tuple with the identical key seems somewha...
d1063
Native C++ "kernels" are essentially just functions that you want to execute within command queue to preserve order of commands. AFAIK they are not supported on GPU. If you want to execute C++ functions across all devices, you should consider to use cl_event callbacks (when status == CL_COMPLETE). Assume you have a bu...
d1064
All you need is define custom bearerTokenResolver method in SecurityConfig and put access token into cookies or parameter. @Configuration public class SecurityConfig extends WebSecurityConfigurerAdapter { @Override protected void configure(HttpSecurity http) throws Exception { http....
d1065
ROWID is a unique identifier of each row in the database. ROWNUM is a unique identifier for each row in a result set. You should be using the ROWNUM version, but you will need an ORDER BY to enforce a sorting order, otherwise you won't have any guarantees what is the "first" row returned by your query and you might be ...
d1066
why dont u clean out whatever is being put into the _GET value? (using php) at the top of the php file put something like: if(isset($_GET['q'])){ header('Location: homepage.php'); } A: If someone is spamming you hard enough to overload your server you should look at blocking their IP address/addresses or somethi...
d1067
You missed each: And match each response.errors[*].reason contains "this is reason" Refer: https://github.com/karatelabs/karate#match-each
d1068
I suggest an answer to this thread because it isn't marked as resolved and despite the answer given it didn't allow me to resolve the issue as of the time of reading this. Resources * *select2.org *npm I have since found a functional solution of which here are the details in relation to the question of the OP. Ver...
d1069
What you're describing is a state machine. Older SO question discussing the various gems and plugins of the time, plus some basics. Newer blog post discussing the hows and whys.
d1070
But problem is when am upload multiple images with 2mb size... It's likely your running into the default maximum upload size that's set for ASP.NET (4MB). you can add this to your web.config to increase from the default: <system.web> <httpRuntime executionTimeout="240" maxRequestLength="20480" /> </system.web> Thi...
d1071
DISTINCT LOCATION_ID, CONTINENT, COUNTRY, PLANT, BUSINESS_UNIT, PRODUCT, --Measures (KPI's): --Count: CASE WHEN <Parameters.BU> = '%' AND <Parameters.Plant> = '%' THEN SUM(COUNT_IO) OVER (PARTITION BY BUSINESS_UNIT) WHEN <Parameters.BU> != '%' AND <Parameters.Plant> = '%' T...
d1072
use .hidden_item{ display:none; }
d1073
* *Every endorsing peer is also a committing peer. *An orderer and a peer are totally different binaries, and have completely different APIs, so - you can't have one fill the role of the other.
d1074
It seems like the answer to this question depends on how you're doing the zooming of the graph itself. You'll basically want to scale the majorIntervalLength in the same way you're scaling the ranges for your plot space. That is, if you expand the range by a factor of 2 then you want to also change the value of majorIn...
d1075
If you are asking how could I render navbar and sidebar to all components except login, then you can check the browser url. There are many ways of doing this, but one of which is like following: <Route path="*" render={props => <Layout {...props} />} /> This will appear for all your routes now. Then inside Layout, you...
d1076
You can send message from one window to another with postMessage, and access it via addEventListener and remember that the iframe is the child of your flutter page (and flutter is the parent), so: To send data from flutter to the iframe, you can use _iFrameElement.contentWindow?.postMessage (after the iframe loaded), a...
d1077
I don't know how your tasks are coded, but it seems that they could be encapsulated in commands, which would then be put in a queue, or some other data structure. Once they are dequeued, their logic is checked. If they need to run, they are executed, and they're not put back in the queue. If their logic says that they ...
d1078
Which Qt version are you using? 4.7 has QByteArray(const char*, size) which should work and QByteArray::fromRawData(const char*, int size) which also should work. A: QByteArray test("\xa4\x00\x00", 3);
d1079
You need to be able to iterate over the list of directories and over the list of files in each directories. This can be done using a FOR loop. See FOR /? for more details. @ECHO OFF SETLOCAL ENABLEDELAYEDEXPANSION PUSHD "C:\the directory\of interest" FOR /F "usebackq tokens=*" %%d IN (`DIR /B /A:D .`) DO ( DIR /B...
d1080
I have written one-liner in a Python(280 characters of code) for this. python -c"import re,sys;o=lambda f,m:open(f,m);x=lambda h:[i for i in o(h,'r').readlines()];y=lambda s:len(re.findall(r'(\w+)',s)[2].split('A'))>2;z=lambda f,s:o(f,'a'if len(s)else'w').write(s);a,b=sys.argv[1:3];w=zip(x(a),x(b));z(a,'');z(b,'');[(z(...
d1081
My default assumption would be that there is a typo in the real code and the constructor is assigning a value from a field to itself. However, frankly: since you have a public Batch() {} constructor, I'm not sure what the benefit of the second one is - it just adds risk of errors. Likewise with the fields and manual pr...
d1082
You can do it without bootstrap col-*-* and by giving the explicit width to both divs, plus little extra style to your icon bar. Updated Code <div class="activity-panel-item--header"> <div class="pull-left" style="width: 75%;"> <p>02 Development, LLC v. 607 South Park, LLC </p> </div> <div class="pull-right" ...
d1083
You have to improve your code with a couple of changes First Your form is not pointing to any action (Maybe you are using Js for activating the view that generates the PDF) and the easiest way to delivering the form data to the view is making the form action attribute points to the target view. Let's say your view has ...
d1084
There is already a concat function. myString.concat(parameter); You can use it as that. Reference: Arduino Official Link
d1085
C++ streams are not compatible with C stdio streams. In other words, you can't use C++ iterators with FILE* or fread. However, if you use the C++ std::fstream facilities along with istream_iterator, you can use an insertion iterator to insert into a C++ container. Assuming you have an input file "input.txt" which con...
d1086
I can't figure out what the problem is.. The css is really messy, there is a lot of useless or overwritten properties.. You have to optimize it.. But somehow I found a workaround : set the width of the #css-slider to 864px.. It's not really a proper solution but it works anyway.. A: As you can see you have some margi...
d1087
Try looping through all ChartObjects in your worksheet, and delete each one of them (if exists). Code: Option Explicit Sub CheckCharts() Dim ChtObj As ChartObject For Each ChtObj In Worksheets("Sheet1").ChartObjects '<-- modify "Sheet1" with your sheet's name ChtObj.Delete Next ChtObj End Sub
d1088
That is the old version. Change the line in your web.config to use the 3.5 version: <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> (Yes, this is a common conversion error.) A: I have this issue a lot from web.config inheritance. You can also add binding re-...
d1089
Make sure you include jQuery: <script src="http://code.jquery.com/jquery-latest.js"></script> IMPORTANT: Also put your code inside a document-ready function and I would suggest you to use jQuery click() function instead of the way you have done, but that's okay: $(document).ready(function () { $('div.holder_notify_dr...
d1090
In case anyone has sizing/layout issues with Android apps for different screen sizes/display dpis - I highly recommend this sdk https://github.com/intuit/sdp/commits?author=elhanan-mishraky which solved my problem above!
d1091
Yes you need to add an .CreateAleas .CreateAlias("Product", "product", JoinType.InnerJoin) please change JoinType to your need, and use "product" alias instead of property name "Product" so final should be something like: .CreateCriteria(typeof(ProductCategory)) .CreateAlias("Product", "product", JoinType.Inn...
d1092
Atlast, this is what I had to do to connect an external service from VM to connect to the PCF managed Config Server. When the profile property was not set to 'dev' in the bootstrap.yml, the profile was set to 'default' which triggered a login prompt even though I had a relaxed security config in place. I still don'...
d1093
To start, you might want to know this: the first code you get to run after the application has finished launching, is the one you put in the Application Delegate in the method application:didFinishLaunchingWithOptions. The app delegate is the class that is set to receive general notifications about what's going on with...
d1094
If you have a number as a string and it is an integer with no leading 0s, you can compare it by comparing the length first and then the value. For instance, the following will order by col1 correctly (assuming the above): select t.* from t order by char_length(col1), col1; So, one way to get the minimum is: select co...
d1095
It sounds like you need something similar to an answer I have provided before to perform simple client certificate authentication. Here is the code for convenience modified slightly for your question: import httplib import urllib2 PEM_FILE = '/path/certif.pem' # Renamed from PEM_FILE to avoid confusion CLIENT_CERT_FIL...
d1096
The best way to handle this case is to create a sparse matrix using scipy.sparse.diags as follows: a = numpy.float32(numpy.random.rand(10)) a = sparse.diags(a) If the shape of your diagonal numpy array is n*n, utilizing sparse.diags would result in a matrix n times smaller. Almost all matrix operations are supported f...
d1097
Although it seems not to be mentioned in the documentation, I also experienced that classes annotated with @Test must have a void return type. If you need data provided by some other method, you could try the Data Provider mechanism of TestNG.
d1098
You have to escape the |, as that has a special meaning in Windows: echo user Servername^|domain/username> ftp.txt The above will get you user Servername|domain/username in the ftp.exe.
d1099
It appears you are looking in the wrong place for the resource. You are looking in the XAML of the metro window however you should be looking in the main window XAML specify to the program where to look using something like this: (I am not currently on visual studio) private void MetroWindow_StateChanged(object sender...
d1100
To answer my own question: for some strange reason webhook calls from remote API have 13 digits long timestamps and that's why my dates were so wrong.