date stringlengths 10 10 | nb_tokens int64 60 629k | text_size int64 234 1.02M | content stringlengths 234 1.02M |
|---|---|---|---|
2018/03/08 | 2,022 | 7,771 | <issue_start>username_0: I have spent some time trying to figure out how to add header/footer to my recyclerview but it is not working. the footer shows the but header and list item does not show on the emulator.
My adapter
```
package com.example.system2.tranxav.adapters;
import android.content.Context;
import androi... |
2018/03/08 | 230 | 970 | <issue_start>username_0: I'm working on an android app with in-app purchases, which when bought are immediately consumed.
**Is there a way to get the list of all purchased items from the Google Play Service**, which have already been consumed by the user? For example to avoid problems when a user might uninstall and r... |
2018/03/08 | 561 | 1,526 | <issue_start>username_0: I got this error while installing mpc-1.0.2 under ubuntu 16.04
First, I ran the following command():
```
sudo ./configure --prefix=/usr --docdir=/usr/share/doc/mpc-1.0.2
```
It didn't give any error.
Then, I ran the `make` command, which gave the following error:
>
> make all-recursive ... |
2018/03/08 | 909 | 2,742 | <issue_start>username_0: I am using Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production and starting from 2 select statements:
```
select to_char('29.01.2018 00:00:00', 'DD.MM.YYYY HH24:MI:SS') from dual;
```
vs.
```
select to_char(sysdate, 'DD.MM.YYYY HH24:MI:SS') from dual;
```
I am ask... |
2018/03/08 | 1,496 | 5,551 | <issue_start>username_0: I am working with an existing C library (that I can't modify) where some structures have opaque fields that must be accessed through specific setters and getters, like in the following crude example (imagining `x` is private, even though it's written in C).
```
struct CObject {
int x;
};
... |
2018/03/08 | 699 | 1,909 | <issue_start>username_0: I have a dataframe which contains nan values at few places. I am trying to perform data cleaning in which I fill the nan values with mean of it's previous five instances. To do so, I have come up with the following.
```
input_data_frame[var_list].fillna(input_data_frame[var_list].rolling(5).me... |
2018/03/08 | 813 | 3,359 | <issue_start>username_0: I have trouble setting the height of a `Window` in a WPF application, from the XAML side (it works if I do it in the code behind, but I want to do everything in the XAML).
It's a pretty basic application: you click a button, the button gets disabled and a progress bar displays for 5 s (the p... |
2018/03/08 | 470 | 1,663 | <issue_start>username_0: I am working with longitudinal data and assess the utilization of a policy over 13 months. In oder to get some barplots with the different months on my x-axis, I converted my data from wide Format to Long Format.
So now, my dataset looks like this
```
id month hours
1 1 13
1 2 16... |
2018/03/08 | 489 | 2,002 | <issue_start>username_0: I'm interested in the following question: how best to store relatively static data - in the database or in the code, or combine?
For example, we have a list of countries, they do not change every day and on the one hand they can not be saved into the database and stored as an array, numbered m... |
2018/03/08 | 833 | 2,617 | <issue_start>username_0: I am having a django app in which I am storing the json variable.I have stored the json variable through admin and I am trying to print it in shell.My main aim is to pass this variable to a webpage with ajax method.But first when I was trying to print it in shell I get this error
```
__str__ r... |
2018/03/08 | 852 | 2,296 | <issue_start>username_0: I'm learning python, I want to check if the second largest number is duplicated in a list. I've tried several ways, but I couldn't. Also, I have searched on google for this issue, I have got several answers to get/print 2nd largest number from a list but I couldn't find any answer to check if t... |
2018/03/08 | 1,140 | 4,130 | <issue_start>username_0: I am using [Angular Material Table](https://material.angular.io/components/table/overview) that is backed by a plain array as the data source.
```
this.employees = this.route.snapshot.data.employes; // of type Employee[] resolved using a Resolve guard
this.dataSource = new MatTableDataSource(t... |
2018/03/08 | 1,010 | 2,602 | <issue_start>username_0: I would like to extract what I call the "correlation score" used to fill the Color Key legend in CIM plots (mixOmics package in R) to put it in a vector. I mean by correlation score the corresponding number of the different colors used in the "Color key" legend, that is to say for example "-7" ... |
2018/03/08 | 570 | 2,585 | <issue_start>username_0: I have an Aggregate command on my API Server. It worked well until I updated my MongoDB to 3.6.3. Now I get this kind of error:"The 'cursor' option is required, except for aggregate with the explain argument".
This is my example:
```
ArchiveReq.aggregate({
$project: {
... |
2018/03/08 | 610 | 2,359 | <issue_start>username_0: I have a list of 'LI' (specificationItem) items that i need to extract the values of. The values I require are in the
How can i return all the LI values and catch the values ?
```
Specification
-------------
* Odometer
11,984 miles
* Colour Group
Blue
* Fuel Type
Diesel
* Transm... |
2018/03/08 | 881 | 3,513 | <issue_start>username_0: I received this crash report in my Google Play Console. I never experience such crash on my own device and emulator.
```
Caused by: java.lang.NullPointerException:
at android.preference.PreferenceManager.getDefaultSharedPreferencesName (PreferenceManager.java:498)
at android.preference.Pr... |
2018/03/08 | 694 | 2,668 | <issue_start>username_0: [HTMLCODE](https://i.stack.imgur.com/LLfo2.png)
I am getting `StaleElementReferenceException`: element is not attached to the page document. I went through some of the solutions that are already there in StackOverflow. It did not work and it continues to throw the same error. Here is the code ... |
2018/03/08 | 654 | 2,169 | <issue_start>username_0: Have a bit of an issue whereby would like to figure out the best way to handle success or failures. Have a powershell query which checks the dcom port range, if it is within the specified value output to a success file, if not a failure file. The issue is, it seems to be outputting the entire s... |
2018/03/08 | 504 | 1,890 | <issue_start>username_0: I am trying to learn `Laravel 5.5` and I am again stuck when I was trying to add a **jquery datepicker** in my modal window (bootstrap). Due to some unknown reason there is always an error which says:-
>
> $("#last\_renewal").datepicker() is not a function
>
>
>
I have properly added all ... |
2018/03/08 | 634 | 2,360 | <issue_start>username_0: Im trying to run spark-submit to kubernetes cluster with spark 2.3 docker container image
The challenge im facing is application have a mainapplication.jar and other dependency files & jars which are located in Remote location like AWS s3 ,but as per spark 2.3 documentation there is something ... |
2018/03/08 | 543 | 1,886 | <issue_start>username_0: I need help with how to change an image src with another one for 5 seconds before reverting back to the default one with jquery.
below is a code I am trying to use.
```
$('#indicator').attr("src", 'notification.png');
```
I need to change it for 5 seconds only.<issue_comment>username_1: The... |
2018/03/08 | 412 | 1,426 | <issue_start>username_0: I am learning Objective-C and using this [tutorial](http://www.binpress.com/tutorial/objectivec-lesson-1-hello-world/41). It says I am supposed to create a `Command Line Tool`. However, the XCode version in the tutorial is rather old. Pressing `CMD + N` does not reveal a Command Line Tool optio... |
2018/03/08 | 590 | 2,024 | <issue_start>username_0: I have a visit Model and I'm getting the data I want like that:
```
$app_visits = Visit::select([
'start',
'end',
'machine_name'
])->where('user_id', $chosen_id)->get();
```
But I want to add points for every visit. Every visit has an interaction (but there's no visit\_id (becaus... |
2018/03/08 | 554 | 2,340 | <issue_start>username_0: How can you set `AppCompatEditText` as `inputType textPassword` programatically?
I have tried all possible methods to solve this:
```
pass_et = (AppCompatEditText) loginView.findViewById(R.id.pass_et);
pass_et.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWO... |
2018/03/08 | 364 | 1,261 | <issue_start>username_0: I need to decode the below json from a mobile app
```
Array
(
[{"unm":"admin","pw”:”<PASSWORD>”}] =>
)
```
and my php code is
```
$obj1 = print_r($_REQUEST, true); //get $_request variable data(responce of login) data as it is
foreach($obj1 as $key => $value)
{
$obj2 = $key; //get ... |
2018/03/08 | 988 | 2,933 | <issue_start>username_0: I need to insert Column Name, Department, into its value. i have code like here:
```
Department <- c("Store1","Store2","Store3","Store4","Store5")
Department2 <- c("IT1","IT2","IT3","IT4","IT5")
x <- c(100,200,300,400,500)
Result <- data.frame(Department,Department2,x)
Result
```
The expecte... |
2018/03/08 | 1,587 | 4,692 | <issue_start>username_0: I have a JSON file I'm parsing. As part of the operations I'm performing on the file, I need to subtract the `yardLine` key from 100 in any element with value `"ORE"` in key `"homeAbbr"`. It doesn't matter if the code updates the original `yardLine` key's value or creates a new `yardLineReal` k... |
2018/03/08 | 1,150 | 3,043 | <issue_start>username_0: I have a string where I want to extract all the words that is between two text, such that:
```
var str="This is the number I want +2143334 !, again this is the next number I want +234343443 !, last number I want +76645 !, fininshed";
var ext = str.split('want').pop().split('!,').shift();
ale... |
2018/03/08 | 1,031 | 2,782 | <issue_start>username_0: Is there a quick way to find the indexes of the n least values in a vector in R?
I know that to find the least value you can use `which.min(c(1, 5, 6, 4))`. Can this be extended?<issue_comment>username_1: You may use the following regex to capture the `+` followed with 1+ digits after `want`:
... |
2018/03/08 | 1,407 | 4,244 | <issue_start>username_0: Trying to create a function that returns an array of the keys of an object, including of objects nested within. My code looks like this:
```
function keyCount(obj, arr) {
if (arr == undefined){
arr = []
}
let keys = Object.keys(obj);
let length = keys.length;
for (i = 0; i <= le... |
2018/03/08 | 307 | 934 | <issue_start>username_0: I want to add a blank space of color #F1F1F1 before the first card.
And also want to add the border-radius on the ion cards.
The image is as below.
[](https://i.stack.imgur.com/3VkMp.png)
In the image the curves in the left an... |
2018/03/08 | 1,249 | 3,558 | <issue_start>username_0: I'm trying to find the location of an IP address. The IP address will be sent to the API through a front end android/iOS application(I'm currently using a static IP address of my computer). I want to use the client IP address to then determine their, likely, physical location and send the locat... |
2018/03/08 | 429 | 1,416 | <issue_start>username_0: I'm using Bootstrap 4, and am using the following jQuery to allow smooth scrolling from the .nav-links to section id's (within the same page):
```
$('.nav-link').click(function() {
var sectionTo = $(this).attr('href');
$('html, body').animate({
scrollTop: $(sectionTo).offset().to... |
2018/03/08 | 148 | 553 | <issue_start>username_0: I want to install the previous version of bootstrap in angular 2.
when I am using the following command in the terminal window in VS code then it installs bootstrap 4 version but I want to have bootstrap 3
```
$ npm install bootstrap
```<issue_comment>username_1: `npm install bootstrap@3.0.... |
2018/03/08 | 1,267 | 2,681 | <issue_start>username_0: I am currently adding a button that hides and shows rows which are not consecutive. While the below works (to a degree) is there a better option to call the rows than listed below.
```
Sub Button7_Click()
With Range("5:5, 7:7, 9:9, 11:11, 13:13, 15:15, 17:17, 19:19, 21:21,23:23, 25:25, 27... |
2018/03/08 | 1,057 | 2,726 | <issue_start>username_0: I have this SQL statement
```
SELECT
locales.id_c,
locales.name_p AS NombrePropietario,
locales.surname1 AS PrimerApellido,
locales.local_name AS Nombre_Local,
locales.zona AS ZonaLiga,
locales.id_m1 AS Maquina_1,
maquinas.tipo_m AS Tipo_de_Maquina1,
locales.id... |
2018/03/08 | 590 | 2,189 | <issue_start>username_0: ```
public class SomeClass{
public static int someFunction(int a) {
return a;
}
public static void main(String[] args) {
Consumer c = SomeClass::someFunction;
}
}
```
I'm not getting why: `Consumer c = SomeClass::someFunction;`
is not producing a compilatio... |
2018/03/08 | 690 | 2,381 | <issue_start>username_0: I am trying run the project with views in separate class library on Mac OSX as described in below article
<https://blogs.msdn.microsoft.com/webdev/2018/03/01/asp-net-core-2-1-razor-ui-in-class-libraries/>
The problem is that I cannot build the class library project with Visual Studio Communit... |
2018/03/08 | 743 | 2,699 | <issue_start>username_0: I have this html structure:
```
```
The final effect is this:
[](https://i.stack.imgur.com/nNRaq.png)
I need this HTML structure because when I have a smaller viewports and Bootstrap switches to the 1-column mode, I need tha... |
2018/03/08 | 722 | 2,579 | <issue_start>username_0: I need to create the body for multiple updates to a Google Spreadsheet using Python.
I used the Python dictionary `dict()` but that doesn't work for multiple values that are repeated as `dict()` doesn't allow multiple keys.
My code snippet is:
```
body = {
}
for i in range (0,len(delt... |
2018/03/08 | 507 | 1,992 | <issue_start>username_0: I have an intent in DialogFlow that accepts an input/parameter from the user for validation purposes. The parameter is of fixed length and is alphanumberic (e.g. *ABC1234*). It is a random ID different for different users. The data input is validated at the backend using a webhook call.
In or... |
2018/03/08 | 684 | 2,558 | <issue_start>username_0: I want to check if BackStack is null.
I have something like this:
```
List l2 = getFragmentManager().getFragments();
if(l2 == null){
todo
}
```
but `getFragments` need API 26, my is 16
How to solve it ? Any ideas ?<issue_comment>username_1: you can use fragment stack while pushing fragm... |
2018/03/08 | 1,955 | 7,550 | <issue_start>username_0: I have String shown below and I want to replace "\" this with "" but Xcode doesn't allow me to do so. It gives Error like "Unterminated string literal"
```
let jsonStr = "[{\"isSelected\":true,\"languageProficiencies\":[{\"isSelected\":true,\"name\":\"Advance\"},{\"isSelected\":false,\"name\"... |
2018/03/08 | 559 | 1,948 | <issue_start>username_0: I have a simple validation date which doesn't seem to work. I wanted to ensure that the start date is not greater than the end date.
```js
function validateDate() {
var d1 = new Date.parse(document.getElementsByName("dt1").value);
var d2 = new Date.parse(document.getElementsByName("dt2"... |
2018/03/08 | 508 | 1,812 | <issue_start>username_0: I'm dynamically filling a table of content fetch from the database.
This table is inside a
So I'm setting a variable `$col` to limit how much columns I want each row `(by default I saw 5 fit perfectly) in the div`. Otherwise the table content just goes outside the div.
The problem is I had t... |
2018/03/08 | 1,004 | 3,692 | <issue_start>username_0: I'm trying to figure out how to make the clipboard events return `false` on the onCopy event. I use for test the `onCopy` handler and `e.preventDefault()` method. But text is copied without obstacles to the buffer! What is I miss?
Thank You in Advance.
```
import React from 'react';
import Re... |
2018/03/08 | 1,136 | 4,613 | <issue_start>username_0: I have Inserted records in mongodb collection/table. everything working fine if i pass data which is available in collection like StoreId = 1
**Problem:** if i search data which is not available in collection like StoreId=3 then it is taking too long time to response why???? How do i simplify... |
2018/03/08 | 823 | 3,091 | <issue_start>username_0: I'm trying to add a MP4 video to my media library. It doesn't give any error but when I try to play the video it gives this message inside the video player:
>
> Media error: Format(s) not supported or source(s) not found
>
>
>
The video size is 2MB.<issue_comment>username_1: There seems t... |
2018/03/08 | 861 | 3,261 | <issue_start>username_0: ```
+------------------------------------+
| | | col3 |
| col1 | col2 |-----------------|
| | |subcol1 | subcol2|
+------------------------------------+
| Value 1 | Value 2| Val1.1|Val1.2 |
|------------------------------------|
| Value 1 | Value... |
2018/03/08 | 945 | 3,520 | <issue_start>username_0: I am looking for this design for y axis lables and gridline combination <http://jsfiddle.net/ggfvggq8/6/>
And this is the config I have used
```
yAxis: {
title: {
text: null,
},
labels: {
enabled: true,
align: 'left',
x:1,
y:-8
... |
2018/03/08 | 894 | 3,550 | <issue_start>username_0: I have three MySQL tables containing weather observations. Now I'm trying to query data out of all these tables grouped by hour. The tables look like:
```
TABLE 1
--------------------------------------------------------------------
station time temperature pressure humidi... |
2018/03/08 | 693 | 2,239 | <issue_start>username_0: So, what I'm doing below is I drop a column `A` from a `DataFrame` because I want to apply a transformation (here I just `json.loads` a JSON string) and replace the old column with the transformed one. After the transformation I just join the two resulting data frames.
```py
df = df_data.drop... |
2018/03/08 | 983 | 3,540 | <issue_start>username_0: It seems that this is a quite common issue and I personally stumbled on it at least a couple of times.
Some of the main causes being:
* Forgetting to run the test (and thus create the test classes) before running pitest: [Pitest can't detect class of test](https://stackoverflow.com/questions/... |
2018/03/08 | 838 | 3,099 | <issue_start>username_0: **tl;dr:**
1. I use **Jasmine**;
2. I want to test `aaa` function which called `bbb` from the same
module;
3. I want to spy on `bbb`, but eventually `aaa` called the
original `bbb` function, not a spy;
**How can I force `aaa` to call the spy?**
The Module:
```
export function aaa() {
ret... |
2018/03/08 | 603 | 2,411 | <issue_start>username_0: Why doesn't this code show any output result?
```
$exitCode = \Artisan::call('route:cache');
$artisanOutput = \Artisan::output();
dd($artisanOutput);
```
Another artisan console code example shows a result, but this one does not work.<issue_comment>username_1: Even thought is not the same fr... |
2018/03/08 | 470 | 1,722 | <issue_start>username_0: Is it possible to reverse a function in VBA - I mean getting argument/arguments of a function by its value? Of course, we must assume that no pair of the same values are assigned to different arguments/sets of arguments.
For instance:
```
Function func(arg1 As ..., arg2 As ..., ..., argn As ..... |
2018/03/08 | 236 | 808 | <issue_start>username_0: How can i hide button in css it the button text is read more.
I have a add to cart button on web site product archive page. But when the product will go out of stock the check changes to read more. I want to hie the button the the text changes to read more.<issue_comment>username_1: HTML
```
... |
2018/03/08 | 1,072 | 3,878 | <issue_start>username_0: 24 hours ago my project built perfectly, no errors. Without changing a single piece of code, it will no longer build when I have resumed work.
Checking out to older working commits now produces the same error.
These are the error codes I get:
```
Information:Gradle tasks [assemble]
Error:(9, ... |
2018/03/08 | 489 | 1,842 | <issue_start>username_0: I'm using AWS SES service to send emails to my customers, I wonder if there's any solution available to attach files directly into my email using SES and Lambda functions. I did a research and ended up in finding solutions which recommends to include a link to S3 files, not attaching the file a... |
2018/03/08 | 1,085 | 3,526 | <issue_start>username_0: Hi i have data in list
```
ID | val1 | val2 | val3
1 | a | b | c
1 | c | d | e
2 | a | b | c
2 | d | z | g
3 | a | b | c
```
And I want to transform into list with nested list like:
```
ID 1 (2 elements in nested list)
ID 2 (2 elements in nested list)
ID 3... |
2018/03/08 | 4,020 | 14,179 | <issue_start>username_0: I'm building a backend and trying to crunch the following problem.
* The clients submit text to the backend (around `2000` characters on average)
* Backend endpoint that receives the request has to apply phrase highlighting to the submitted text
* There is around `80k` phrases to match. A phra... |
2018/03/08 | 4,005 | 13,777 | <issue_start>username_0: I took the full implementation of priority queue from [go documentation](https://golang.org/pkg/container/heap/#example__priorityQueue).
I want to remove elements if they satisfy some condition. So I should:
* iterate over queue then
* check the condition
* if condition is OK, remove element
... |
2018/03/08 | 517 | 1,965 | <issue_start>username_0: I'm currently extending from Service class for my customized service implementation. As part of Android-O migration, I want to use **JobIntentService**.
Currenlty all my logic is in service's **onStartCommand** method.
However, as per JobIntentService I should use **onHandleWork** method for... |
2018/03/08 | 308 | 1,127 | <issue_start>username_0: how to find the minimum date from the date column? if the date contains the format of date is 1996-07-04.<issue_comment>username_1: >
> Currenlty all my logic is in service's onStartCommand method.
>
>
>
It is unclear why you have the service, then. Your service needs to fork a background ... |
2018/03/08 | 1,163 | 4,226 | <issue_start>username_0: I have a database metrics grouped by day, and I need to forecast the data for the next 3 months. These data have seasonality, (I believe that the seasonality is by days of the week).
I want to use the Holt Winters method using R, I need to create a time series object, which asks for frequency,... |
2018/03/08 | 975 | 3,180 | <issue_start>username_0: I am using MoveHMM package (<https://cran.r-project.org/web/packages/moveHMM/vignettes/moveHMM-guide.pdf>) for HMM analysis but i am getting below mentioned error when i plot.
```
Error in if (max(stepDensities[[state]][, 2]) > maxdens) maxdens <-
max(stepDensities[[state]][, : ... |
2018/03/08 | 624 | 2,226 | <issue_start>username_0: after receiving `req` from a client, the server will query mongodb and then send `res`,
```
var Article = mongoose.model('articles', articleSchema);
app.get('/api/topic',function(req,res){
Article.find({"articleID":1},function(err,doc){
res.json(doc)
})
res.send("the mes... |
2018/03/08 | 273 | 1,002 | <issue_start>username_0: Im trying to set `Intent` in Kotlin in Android Studio to launch another `Activity.kt`:
```
val i : Intent = Intent(this, MainActivity::class.java)
```
Android Studio shows me an error, and it doesnt compile:
```
Error:(23, 26) None of the following functions can be called with the arguments... |
2018/03/08 | 570 | 2,189 | <issue_start>username_0: URL: /apis/apps/v1/namespaces/diyclientapps/deployments
>
> )
> "{"kind":"Status","apiVersion":"v1","metadata":{},"status":"Failure","message":"deployments.apps
> is forbidden: User \"system:serviceaccount:default:default\" cannot
> create deployments.apps in the namespace
> \"diyclientap... |
2018/03/08 | 402 | 1,575 | <issue_start>username_0: I tried using
```
$(".formName .className").click()
```
and
```
$(".formName .className").value("MALE")
```
But these are not working<issue_comment>username_1: This is due to the RBAC functionality.
If you do not care about that at all (for example you're the only Kubernetes administrato... |
2018/03/08 | 698 | 2,239 | <issue_start>username_0: I'm confused about `'='` operator, and `tf.identity()`, I thought `'='` is to just make a reference of the tensor, and identity is to make a copy, e.g., with
```
ref = x
ref = ref*0
sess.run(x)
```
I will get `x` all been set to 0 element-wise, and with
```
copy = tf.identity(x)
copy = ref... |
2018/03/08 | 1,019 | 3,811 | <issue_start>username_0: I have been successfully adding SSH keys to newly spawned instances for a while, but all of a sudden it just won't work. They key isn't added to the target account (and the account isn't created if it doesn't exist). It still works fine for one of my projects, but it doesn't on the other which ... |
2018/03/08 | 928 | 3,067 | <issue_start>username_0: I am new to golang, so this deadlock issue is unknown for me. I've been Reading some articles, but it seems to be a quick fix in this program.
```
package main
import (
"fmt"
)
//ping
func addValue(input1 int, input2 int, chn2 chan<- int) {
chn2 <- input1 + input2
}
//pong
//functio... |
2018/03/08 | 1,747 | 3,462 | <issue_start>username_0: I have a list of quantiles in the output of `pull`, each element of the list is a named numeric vector with the decile position.
```
tibble(norm=rnorm(1e3, 100, 1000), group=sample(c("a", "b", "c", "d"), 1e3, TRUE)) %>%
group_by(group) %>%
summarise_at("norm", ~list(quantile(.x, seq(... |
2018/03/08 | 1,311 | 3,128 | <issue_start>username_0: would like to ask for help about my concern. Is there any other way I can maximaze the space of the parent? I have 10 div that need to be align on mobile. In desktop, I wanted to reveal 5 div per row.
I can achieve it using division of every 5 div each per parent but my problem will be on mobi... |
2018/03/08 | 1,756 | 6,306 | <issue_start>username_0: I am pretty new for java.I am trying to make a project that get class names,field names from desired .java file with [JavaParser](https://github.com/javaparser/javaparser).
But I get an error and i don't know anything about this error.How can fix that error?
1-)First I create a new project on ... |
2018/03/08 | 1,537 | 4,781 | <issue_start>username_0: I have been working on a simple upsert trigger that is using unique index related to one column called vibki.
Table DLL info for easy access :
```
CREATE TABLE "D2C_EVENT_GENERATION_BOM"
( "VIBKI" VARCHAR2(40 BYTE),
"STATUS" VARCHAR2(100 BYTE),
"LASTRUNTIME" DATE
);
CREA... |
2018/03/08 | 1,152 | 3,675 | <issue_start>username_0: I am trying to create a RecyclerView layout with a CardView with the following pattern:
[](https://i.stack.imgur.com/LjBNp.png)
In the above image, each square/rectangle will be a CardView.
I have tried various approaches, ... |
2018/03/08 | 1,291 | 3,967 | <issue_start>username_0: i have a list that has strings in it
for example
```
list_of_words = ['deltas', 'retainers', 'desalt', 'pants', 'slated', 'generating', 'ternaries', 'smelters', 'termless', 'salted', 'staled', 'greatening', 'lasted', 'resmelts']
```
i would like to make it into smaller lists inside that list... |
2018/03/08 | 364 | 1,268 | <issue_start>username_0: I am beginner to Typo3. I am using Typo3 Version 8.7.10 with site package.
I want to know how to override the styles of plugins ( News..).
I used the following news plugin:
<https://extensions.typo3.org/extension/news/>
I added news plugin reference in Setup.typoscript and constants.txt fil... |
2018/03/08 | 569 | 1,875 | <issue_start>username_0: Actually I have a need to get a timestamp of my commit in GitLab CI.
Alredy have tested the official documentation of GitLab CI Variables here:
<https://docs.gitlab.com/ee/ci/variables>
But there are only commit variables for
* CI\_COMMIT\_SHA The commit revision for which project is built
* ... |
2018/03/08 | 869 | 2,408 | <issue_start>username_0: I'm not sure if I misunterstood a basic thing or if I have a problem with how my database interprets the query... Running universe
When I run
```
SELECT POIDSBRUT, PRIXBRUTU, FAMILLENU, TPSMOU, TPSMOUPLANIF, QTE1PLANIFMOU, OF5
FROM GPSOF
WHERE DFINPLANIFMOU >= '%1' AND DFINPLANIFMOU <= '%2' ... |
2018/03/08 | 544 | 1,652 | <issue_start>username_0: I am new to Bootstrap 4, earlier in Bootstrap 3 we use class "center-block", now I am not able to find this in new version.<issue_comment>username_1: This can be done with built-in .d-block:
```

```
More info in this [link](https://stackoverflow.com/questions/43226511/how-can-i-c... |
2018/03/08 | 561 | 1,822 | <issue_start>username_0: Why is IntelliJ complaining that it can't resolve symbol 'fields' in the following snippet?
```
val condition: String = "aa"
if (condition == "aa") {
val fields: Int = 2
} else if (condition == "bb") {
val fields: Int = 3
} else if (condition == "cc") {
val fields: Int = 4... |
2018/03/08 | 269 | 894 | <issue_start>username_0: [Link of error message that pops up](https://i.stack.imgur.com/auJnY.png) when I am installing Eclipse MAT from <http://www.eclipse.org/mat/downloads.php>
I want to analyse heap dumps but stuck at installation. Can someone help?
[log messages when we install MAT](https://i.stack.imgur.com/NC... |
2018/03/08 | 832 | 3,244 | <issue_start>username_0: I have a little question ;
I currently have 2 lists from differents objects that i can't change ;
```
private ObservableList people1List = FXCollections.observableArrayList();
private ObservableList people2List = FXCollections.observableArrayList();
```
When i try to add my data in the ta... |
2018/03/08 | 821 | 3,221 | <issue_start>username_0: i have a question.
I am using 2 Extended Toolkit DateTimePicker, and mu goal is situation where if you change time one start picker end picker will update with time 5 minutes later, and vice versa if i change value on end start will go back 5 minutes.
I tried with ValueChanged property but ... |
2018/03/08 | 754 | 2,652 | <issue_start>username_0: Switching from LinearLayout to ConstraintLayout throwing this error
```
java.lang.ClassCastException: android.support.v7.widget.ActivityChooserView$InnerLayout cannot be cast to android.support.v7.widget.LinearLayoutCompat ... |
2018/03/08 | 647 | 2,067 | <issue_start>username_0: My script is reading in an HTML file scanning line by line for the matching regex to make the needed changes. For some reason when it reaches the first change it will not make the change but with testing it does drop into the `if` statement.
Below is both the PowerShell script and the file sec... |
2018/03/08 | 515 | 1,709 | <issue_start>username_0: I was trying to write a batch script that would make it possible to run 2 exe, one after the other. It needs to be in the same folder because I will deploy this folder, so I can't use the `cd "C: ..."`
My other issue is that the first executable opens a process so if I open it normally, it ope... |
2018/03/08 | 237 | 805 | <issue_start>username_0: Is it possible with TypoScript configuration or via TCA to disable file uploads and keep the posibility to add media files by url (see screenshot)?
Screenshot
[](https://i.stack.imgur.com/CCJnv.jpg)<issue_comment>username_1: File uploads are... |
2018/03/08 | 1,040 | 4,040 | <issue_start>username_0: i write my simple project in SpringBoot and use Hibernate. I have three entity but when I start my application I have this error :
**org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframewor... |
2018/03/08 | 1,192 | 3,550 | <issue_start>username_0: I need to store some tuples of this data into a buffer.
```
"1444394028","1","5339","M","873"
"1444394028","1","7045","V","0.34902"
"1444394028","1","7042","M","2"
"1444394028","1","7077","V","0.0470588"
"1444394028","1","5415","M","40"
```
As you can see, the length of the records varies.... |
2018/03/08 | 746 | 2,721 | <issue_start>username_0: I want to execute my function when I either scroll past or load `$("yt-next-continuation")`, this div is basically the extra videos that YouTube loads when you scroll to the bottom of the page. What is the easiest way to do this?
What I basically want to do is, add overlay over the thumbnails ... |
2018/03/08 | 180 | 608 | <issue_start>username_0: I have a Jar and the Jar I need to display in Html inside tomcat. How can I do that ?
this is my html
```
Insert title here
```
i am trying to run in firefox and and getting " can not verify self-singed Deployment Rule Set Jar "<issue_comment>username_1: If your jar file is for Applet prog... |
2018/03/08 | 875 | 2,192 | <issue_start>username_0: My dataframe looks like this:
```
col1 col2 col3
Aba xxx yyy
bab bhh jjj
ccc kkk lll
Aba xxx yyy
ccc kkk jjj
```
I want to replace unique values of each column with something like:
In `col1`: `Aba` gets replaced with `a0`,`bab` gets replaced with `a1`, `ccc` gets repla... |
2018/03/08 | 1,214 | 4,656 | <issue_start>username_0: I have the following routes in the below class:
```
import { Router, Route } from 'react-router-dom';
class App extends React.Component {
constructor(props) {
super(props);
}
render() {
const { alert } = this.props;
return (
);
}
}
```
For... |
2018/03/08 | 241 | 867 | <issue_start>username_0: I have an array which is storing some count and I want to sort that array in descending order. In order to get the element first with greater count. Can anyone please tell me how to sort the array in descending order. I am currently using array\_sort() but its sorting in descending order.<issue... |
2018/03/08 | 535 | 1,946 | <issue_start>username_0: I need to deploy a Vue.js application on IIS over a virtual directory, but when I deploy it I have to change my routes to include the virtual directory name.
My original routes is like that:
```
export const routes = [
{ path: '', component: Default, props: true },
{ path: '/Path', co... |
2018/03/08 | 2,523 | 9,427 | <issue_start>username_0: I am writing a custom kernel, but I am getting an error when linking. I have taken the code and broken it down, but still no luck. Here's my code:
kernel.c:
```
#include
// define our structure
typedef struct \_\_attribute\_\_ ((packed)) {
unsigned short di, si, bp, sp, bx, dx, cx, ax;
uns... |