text stringlengths 15 59.8k | meta dict |
|---|---|
Q: I am unable to accept Android SDK licenses when installing Android SDK for flutter through command line I tried everything mention on different questions on github and stackoverflow but failed.
I also tried uninstalling and re-installing sdk 2 times.
When i run sdkmanager --licenses it shows unknown command : --lic... | {
"language": "en",
"url": "https://stackoverflow.com/questions/61949423",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Getting duplicate output I'm trying to write a bash script that looks for a file in one directory and replaces it with one of the same name from a source directory. When I run the find command, it seems to be setting my $path twice
for f in build-res/$1/*.png; do
file="$(basename "$f")"
echo "Looking for ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/30108789",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: I'm getting "Parameters: [unauthRoleName] must have values" when adding cognito authorization ans api key authorization to my data model in amplify I have a graphql api with the following model:
type NewFeatureNotification @model @auth(rules: [{allow: public, operations: [read]}, {allow: groups, groups: ["AdminPorta... | {
"language": "en",
"url": "https://stackoverflow.com/questions/72717333",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Testing @preAuthorize(custom_implementation) with MockMvc I added @preAuthorize("@securityService.hasPermission()") on top of my controller method and created related bean with given method-
@Configuration
public class SecurityConfig {
@Bean
public PreAuthorizationSecurityService securityService() {
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/46447791",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Multiple DataBases in Spring-Boot With mariaDB I need to know the simple steps to Access the Repository and Entity Classes from Multiple Databases.
Example: I have User table in DB1 and Email in DB2 have to access from a single Service Request.
DB 1
spring.datasource.url = jdbc:mysql://localhost:3306/dbName1?useSSL... | {
"language": "en",
"url": "https://stackoverflow.com/questions/52270332",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: NSIS execwait will not launch any network located exe, using a variable (execwait '$PATHTOEXE' ) My code for a NSIS execwait will not launch any network located exe, using a variable (execwait '$PATHTOEXE') even though it contains the full path to the exe.
Yes, the variable contains the correct path and syntax for ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/16619022",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: CouchDb unhandled 'error' event - Node js I'm new to Node and CouchDb and I'm trying to get my hands on it.
I'm struggling to make a piece of code to work.
I would like to create a table users, insert a new user and 'at the same time' getting another user.
I'm getting this error when starting up node app.js :
ant... | {
"language": "en",
"url": "https://stackoverflow.com/questions/11729999",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Is there any way to set year in crontab parameter list? I want to set a cronjob for a specific date and time.
For example, date time like this 2017 July 12, 12 35.
Is it possible to set Year in the crontab parameter list?
I can set without the year field.
A: There is no parameter to specify the year in crontab.
Yo... | {
"language": "en",
"url": "https://stackoverflow.com/questions/44924448",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Attribute not Backed by Database not Updating I'm trying to create a User model for my Ruby on Rails app that has a password field that is not saved in the database, but for some reason, it's not being updated correctly.
class User < ActiveRecord::Base
attr :password
validates_presence_of :email, :password_diges... | {
"language": "en",
"url": "https://stackoverflow.com/questions/9486182",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Host Sinatra Web Site in Team City Whenever I open my team city triggered runs to looks at the results, I want to provide a tab where I can see my Ruby-Sinatra web server.
Ideally that should result in a Same Domain Error because team city tabs are i-frames, If I give a html page with a hyper link to the web server.... | {
"language": "en",
"url": "https://stackoverflow.com/questions/51582325",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Using "rowversion" as primary key column I am using SQL Server 2012 and I want to create a "changes" table - it will be populated with data from other table when the second table columns values are changed.
I am adding to the "changes" table "datatime2", and "rowversion" columns in order to track when the changes ar... | {
"language": "en",
"url": "https://stackoverflow.com/questions/14808328",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Xib Size - seems to think its longer than it is This is a bit of a strange one, but basically I am having a problem whereby the xib size of my initial view controller seems to be longer than the screen.
So, if you have an ad banner set to be on the bottom of the screen... If I run the app in simulator, it does not s... | {
"language": "en",
"url": "https://stackoverflow.com/questions/14895028",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Is SimpleCursorAdapter constructor supposed to observe column order in constructor? I am testing a basic SQLite query and using a SimpleCursorAdapter to populate a ListView containing LinearLayout's that contain TextViews of the column data, but when I change the order of the TextView's, the data in the TextView's m... | {
"language": "en",
"url": "https://stackoverflow.com/questions/25719126",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Why is Page Control not reflecting where I am on the UIScrollView? After editing my UIScrollView size, page control stopped working.
You can see there are only 3 slides. But (1) Page Control isn't reflecting which slide I'm on and (2) I can only scroll from slide 1 to slide 3.
Here's my code:
func setupSlideScrollV... | {
"language": "en",
"url": "https://stackoverflow.com/questions/55306756",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: CakePHP simple retrieve data I can't handle with retrieving data from model. My table is :
CREATE TABLE grades(
id INT NOT NULL,
value nvarchar(2) NOT NULL
);
INSERT grades(id, value) VALUES
(1,N'A'),
(2,N'F'),
(8,N'B+'),
(10,N'C')
and i tried in controller
var $uses = array( 'Grade');
function index(){
$thi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/20454200",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-3"
} |
Q: ffmpeg video concate not working when one video is generated from a single image what I am doing is generating a video of 5 secs from a single image using FFmpeg.
for that I'm using the following command:
-loop 1 -i image.jpg -c:v libx264 -t 5 -pix_fmt yuv420p -crf 25 -s 1280x720 Out.mp4.
Now I want to concatenate... | {
"language": "en",
"url": "https://stackoverflow.com/questions/47845199",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: When does Soundcloud provide additional access? Soundcloud API has 15K play limit. When does Soundcloud provide additional access?
Soundcloud API has 15K play limit. When does Soundcloud provide additional access?
A: Please refer to: https://developers.soundcloud.com/docs/api/rate-limits#play-requests
Rate limits a... | {
"language": "en",
"url": "https://stackoverflow.com/questions/34589575",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-3"
} |
Q: Enzyme Returns More Nodes Than Exist When Using Mount component.tsx
import React, { ChangeEvent, FormEvent, useEffect, useState } from "react";
import { Form, FormControl, FormGroup, FormLabel } from "react-bootstrap";
import Button from "react-bootstrap/Button";
import Card from "react-bootstrap/Card";
import { use... | {
"language": "en",
"url": "https://stackoverflow.com/questions/64985803",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: JSF Bean return HTML to DataTable This is my dataTable and I need my bean property status is like this:
<span class="label label-warning">Warning</span> but it is printing the text, not compiling the html and dataTable or column doesn't have the espace option. Is there a way to solve this?
<h:dataTable value="#{pedi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/10437097",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to add two slanted columns inside full-width container I'm after this:
What I have is:
<div class="row slantrow">
<div class="row slant-inner">
<div class="col-md-6 slant-left">
<p>text</p>
</div>
<div class="col-md-6 slant-right">
<p>text in another div</p>
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/48463304",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Oracle Date Function Translation to BigQuery SQL Need help translating this function to BigQuery from Oracle, the from_tz and timestamp formatting are giving me trouble:
trunc(from_tz(to_timestamp(trunc(llc.DATE) || ' ' || llc.HOUR, 'DD-MON-YY HH24MISS'), 'UTC') at time zone 'America/New_York') as the_date
A: Cons... | {
"language": "en",
"url": "https://stackoverflow.com/questions/71959258",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Why does git merge origin/master not generate a commit message? As I know that the git pull origin master is kinda alias of git fetch origin followed with git merge origin/master. However, when using git merge command for merging a change from other branch to master, there is usually an automatically generated commi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/64244613",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: DataTables regex search not working as expected for exact match I want to search a column of my DataTable for an exact value and return only the row that contains that value. I've read that the way to do this is to do a regex search for the specific value, however when I attempt this an exact regex search returns no... | {
"language": "en",
"url": "https://stackoverflow.com/questions/35575108",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: UIScrollView inside of UIViewController not scrolling horizontally I have created a UIScrollView inside of a UIViewController. I have added a UIView inside of my UIScrollView with one label inside of the UIView. The plan is to eventually add 3 very large UIButtons that is why I need a scroll view. I have not used st... | {
"language": "en",
"url": "https://stackoverflow.com/questions/63165068",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: mariadb 10.3.13 table_open_cache problems Just upgraded mysql 5.6 to mariadb 10.3.13 - now when the server hits open_tables = 2000, my php queries stop working - if I do a flush tables it starts working correctly again. This never happened when I was using mysql - now I can't go a day without having to login and do ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/55027076",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: What is a "good" R value when comparing 2 signals using cross correlation? I apologize for being a bit verbose in advance: if you want to skip all the background mumbo jumbo you can see my question down below.
This is pretty much a follow up to a question I previously posted on how to compare two 1D (time dependent)... | {
"language": "en",
"url": "https://stackoverflow.com/questions/1289415",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "5"
} |
Q: Why the memory is not allocated to the array? I was required at college to build a function in C that reads a number of values from a file and then dynamically allocates memory to an array passed by reference using pointers (it must use pointers) and after that we were required to display the values read using anoth... | {
"language": "en",
"url": "https://stackoverflow.com/questions/65662727",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to improve digit recognition of a model trained on MNIST? I am working on handprinted multi-digit recognition with Java, using OpenCV library for preprocessing and segmentation, and a Keras model trained on MNIST (with an accuracy of 0.98) for recognition.
The recognition seems to work quite well, apart from on... | {
"language": "en",
"url": "https://stackoverflow.com/questions/58398983",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "12"
} |
Q: What is default settings to reffer to file location in xcode project? What is default settings to reffer to file location in xcode project ?
i have doubts between them
*
*relative to build project
*relative to project
*relative to enclosing group
*relative to source path
*Absolute path
A: This doesn't seem ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/3271971",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Xcode 5 simulator cannot be installed, does not show up in xcode In Xcode 5, i have a problem with installing simulators. They don`t show up in the downloads section of preferences for Xcode. And the 6.1 simulator cannot be run when it says its installed. Only shows up with a question mark besides it. When i click c... | {
"language": "en",
"url": "https://stackoverflow.com/questions/20739494",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to get wkhtmltopdf with a Dockerized Rails App with running ruby:3.0.4-alpine for use with Wicked PDF I'm trying to upgrade a Dockerized Rails app to Ruby 3+ and Rails 7. Due to other project dependencies, I've landed on this version of Ruby Docker image ruby:3.0.4-alpine. Here's my Dockerfile:
FROM ruby:3.0.4-a... | {
"language": "en",
"url": "https://stackoverflow.com/questions/72833181",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Javac is making all names of my code into myclass.class I was just trying to compile my java code then I did this in the cmd:
chdir C:\All_files (my directory)
javac Hello.java
then when I did this:
java Hello
오류: 기본 클래스 hello을(를) 찾거나 로드할 수 없습니다.
(Error: cannot find class hello)
then I did this:
javac myclass
the... | {
"language": "en",
"url": "https://stackoverflow.com/questions/45951452",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-3"
} |
Q: Config script passing value to another script I got these two scripts, configScript.sh and genScript.sh. The first one works precisely how I want to. I would like the second one to maintain the the option chosen last time the config file ran, and then display the correct echodepending on that. As it is now it always... | {
"language": "en",
"url": "https://stackoverflow.com/questions/20252755",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to return correct status code when enumeration of IEnumerable fails. ASP.NET WebApi NOTE: The following problem happens only during testing of the controller. Here is refined question How to properly integration test Web Api controller with IEnumerable results?
Is there any way to avoid calling ToList method but... | {
"language": "en",
"url": "https://stackoverflow.com/questions/31450326",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: selecting text in quotes How do I select the text found in double quotes?
# cat list.txt
File "abc.txt" not found.
I want to return only abc.txt
I am not sure which is the best tool for this purpose.
A: To find all text within double quotes, try this.
grep -o '"[^"]*"' list.txt
The single quotes are to prevent th... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7724343",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Assign variable value of string I'm new to Javascript - I tried searching the web was not able this situation into context.
Here is the situation:
import * as People from ./People.json
import * as Education from ./Education.json
import * as Vehicle from ./Vehicle.json
...
function transpose(str : string) {
let da... | {
"language": "en",
"url": "https://stackoverflow.com/questions/51255796",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Click on a URL from an R string output Suppose I have an output from the cat function of R which is a URL. For example:
cat("https://en.wikipedia.org/wiki/Statistics")
# Output: https://en.wikipedia.org/wiki/Statistics
Is there any command on the cat function or any other thing so that the output https://en.wikiped... | {
"language": "en",
"url": "https://stackoverflow.com/questions/43923974",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "8"
} |
Q: getting var_dump() but no jquery action / login system checklogin.php
<?php
session_start();
$host="localhost"; // Host name
$username="root"; // Mysql username
$password="bonjour3"; // Mysql password
$db_name="itit"; // Database name
$tbl_name="members"; // Table name
// Connect to server and select databse.
$my... | {
"language": "en",
"url": "https://stackoverflow.com/questions/17177171",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Google Firebase declaring data types Im trying to save my object in firebase database in order to retrieve it later again.
{title: "Zombie", start: Tue Jan 30 2018 00:00:00 GMT+0100 (CET), end: Tue Feb 06 2018 23:59:59 GMT+0100 (CET), color: {primary: "#696969", secondary: "#D1E8FF"}, priority: "Low", …}
However, ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/48530654",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to get Field value in User Defined Java Class in kettle? I am trying to get the Link field in the User Defined Java Class step from my below transformation.
Here is the code which I have written in User Defined Java Class:
private String link;
public boolean processRow(StepMetaInterface smi, StepDataInterface s... | {
"language": "en",
"url": "https://stackoverflow.com/questions/38068146",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: Liquibase update or liquibase migrate? What is the difference b/t liquibase ... migrate and liquibase ... update ?
I cannot find any documentation on the migrate command at http://www.liquibase.org/documentation/command_line.html
A: migrate is a simply an (undocumented) alias for update:
687 if (this.command.equals... | {
"language": "en",
"url": "https://stackoverflow.com/questions/43724434",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "9"
} |
Q: How to do a Applicative in F#? Given the following type and member function
type Result<'TSuccess, 'TError> =
| Success of 'TSuccess
| Error of 'TError list
with
member this.apply fn =
match (fn, this) with
| Success(f), Success(x) -> Success(f x)
| Error(e), Success(_) -> ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/37949413",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "5"
} |
Q: Two different id's for retrieving draggable object? I have this piece of code, which works perfectly in retrieving coordinates for an draggable object, however as you notice here:
$("#droppable").droppable({
accept: "#draggable, #draggable2",
I have two draggable objects, which will both get the id "benchdropped" +... | {
"language": "en",
"url": "https://stackoverflow.com/questions/66299450",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Shell script to create directory from any random directory I am currently in /Desktop on my ubuntu system and I want to create a directory named vip inside /Documents/subd. Please not that Documents and Desktop are at same level. But the crux of this question is that I have to write a shell script such that it can c... | {
"language": "en",
"url": "https://stackoverflow.com/questions/60026382",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: hadoop-streaming: reducer doesn't seem to be running when mapred.reduce.tasks=1 I am running a basic Map Reduce program via hadoop-streaming
The Map looks like
import sys
index = int(sys.argv[1])
max = 0
for line in sys.stdin:
fields = line.strip().split(",")
if fields[index].isdigit():
val = int(f... | {
"language": "en",
"url": "https://stackoverflow.com/questions/11730984",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Spring Boot not returning username using CustomAuthenticationProvider I have been following Baeldung's Spring 2FA tutorial to implement 2FA. I have created a CustomAuthenticationProvider as instructed, however it's not behaving as expected.
The odd thing is that after login, a username format that I'm not familiar ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/56304926",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Use ocamlformat at the same time as ppxlib As seen here, I am trying to use ocamlformat as a library. However, I am also using ppxlib in the same project and when I try to include them both in the libraries section of my dune file, I get:
dune build
File "_none_", line 1:
Error: Files <path_to_my_project>/_opam/lib... | {
"language": "en",
"url": "https://stackoverflow.com/questions/71999410",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Grails.How to format Strings in bullet point I want the div to be dynamic.The string that i get might contain bullet point like this a :"Uses •This is a test: •This is a test •This is a test •This is a test •This is a test •This is a test •This is a test •This is a test •This is a test".
I have a div that shows the ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/50212410",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Pytest not collecting tests in dependency order I'm using pytest to test my package and I'm facing problems with dependency of tests, cause pytest is collecting (and testing) the sequence in alphabetical order, while it should be in dependency order. How can I change it?
More details:
The sequence of test it should ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/73127835",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: luainterface problems I have some problems with C# luainterface library:
1. So I load a script and extract its functions like that:
LuaFunction function = lua.GetFunction("Update");
But what if I load two different scripts that contains functions with the same name. How to extract two different functions with the ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/20015984",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: table inner join not displaying expected results I am trying to get a query to display some results. I double checked the logic to make sure that it is correct and it looks like it should work to me but does not.
I created a query with the logic I need to use, code is at the bottom.
SELECT * FROM vendor v
-- select ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/55680386",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Expandable listview with checkbox and Select All Button I have expandable listview in my app.I have two groups in expandable listview,each groups have select all button,when i click select all button check all child checkboxes in the group.how can i achive this?
Group_items.xml:
<?xml version="1.0" encoding="utf... | {
"language": "en",
"url": "https://stackoverflow.com/questions/44173203",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: phonegap single sign on I'm building a PhoneGap app where one of the requirements is to support SSO (Single Sign On).
I have a web application which supports different types of authentication. Now I'm building a mobile application (using PhoneGap) for the same web application and want to use the same authentication... | {
"language": "en",
"url": "https://stackoverflow.com/questions/15409979",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "4"
} |
Q: How to show data in popup with server side processing in Django templates (popup) Here, I have a Django form and view.
I am displaying the data from db using datatables in Django template.
Now I want the view functionality when, I click on view button it should render corresponding row data in popup boxlike "https:/... | {
"language": "en",
"url": "https://stackoverflow.com/questions/59967966",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I remove extra space under contents using BS3 I was working with the official BS3 example http://getbootstrap.com/examples/navbar-static-top/ Which somehow leaves extra spaces below the content (Please click the link for see in action). How can I make it auto adjusted by the contents?
Please consider me as l... | {
"language": "en",
"url": "https://stackoverflow.com/questions/24668859",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: What should I add to a custom class so it works with System.Windows.Forms.Listbox.Items.Contains()..? What should I add to a custom class so it works with System.Windows.Forms.Listbox.Items.Contains()..?
I've created a class called "FileItem" for handling filenames in ListBoxes. It works as expected, but if I try to... | {
"language": "en",
"url": "https://stackoverflow.com/questions/71301727",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: load a new page when an html's selector changes without javascript How can I (if at all) load a new page when an html's selector changes if javascript is disabled in the browser.
Can it be done?
A: I guess you mean the html select box having some page titles displayed and as soon as the user selects one of them th... | {
"language": "en",
"url": "https://stackoverflow.com/questions/1353393",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Export to Excel tool for asp.net Is there any tool that can export a dynamically generated html to excel in c sharp?
A: why do u want to write functionality that already exists. mean excel has it, u can import any web page (just to note excel uses IE engine to render tags).
here are steps how it can be achieved.
Op... | {
"language": "en",
"url": "https://stackoverflow.com/questions/6608176",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Android: Using button from a non-acitvity class in activity class I am wondering if it is possible to access a button from a non-activity class using an activity class? The button is in a different xml file than the one of the activity class.
Also, is it possible to create options menu in the non-activity class?
A:... | {
"language": "en",
"url": "https://stackoverflow.com/questions/28491807",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Trying to install hbase in CDH-5.4.2 I am using hadoop 2.6.0/CDH-5.4.2. I am trying to install hbase. For that I have to start Hadoop. So I used this command "start-dfs.sh". But I get error message "Command not found". Do suggest me in this regard.
A: You need to have Namenode and datanode services running:
on mast... | {
"language": "en",
"url": "https://stackoverflow.com/questions/32287629",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: html2canvas not grabbing svg When I run this:
html2canvas(document.body, {
allowTaint: true,
onrendered: function(canvas) {
document.body.appendChild(canvas);
}
});
I have my whole page grabbed into a canvas, but the SVG isn't. Been looking around but I couldn't find anything helpful to solve it, any idea?
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/43379058",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: What is rowID & rowNum (ROWID vs ROWNUM) I'd like to know difference between rowID and rowNUM
And how to see both of these in our table.
when I execute this:
SELECT * FROM emp WHERE rownum=1
It returns one query but when I do the same for rowid it says
inconsistent datatypes: expected ROWID got NUMBER
And even i... | {
"language": "en",
"url": "https://stackoverflow.com/questions/34282583",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "15"
} |
Q: PHP syntax error although everything is correct? Im not sure why am I getting this syntax error.
Parse error: syntax error, unexpected '{' in /var/www/test/db.php on line 13
The code seems fine to me... Can anyone give me a few tips? :)
$server = 'host';
$username = 'username';
$password = 'password';
$database... | {
"language": "en",
"url": "https://stackoverflow.com/questions/20792196",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-4"
} |
Q: notification beeper like fb in php i'm new in php and i want to know if there is a way to make this script to read from db all events from users and trigger a popup notification something like "John is like your photo" or "Maria is following you" something like that,similar like facebook beeper. Any help apreciated!... | {
"language": "en",
"url": "https://stackoverflow.com/questions/46860019",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can i change the font family in phonegap I want to change font family in a phonegap project.
Means that user be able to change font family in the setting by select the arbitrary font.
How can i do it?
Thanks in Advance
Edit:
Seems it doesn't work.this is my jquery code:
$("#font-selector").change(function(){
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/33842859",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: OBIEE Charts do not show because of adobe flash player OBIEE uses flash player to render charts. After discontinuing support of adobe flash player, obiee charts do not display. Is there any way to render obiee charts without adobe flash player.
A: OBIEE doesn't use flash anymore since many years because it's dead t... | {
"language": "en",
"url": "https://stackoverflow.com/questions/69185380",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Tensorflow argmax give false indizes I am using tensorflow to train and use a small neural network (2d classification with two classes), but I have a really strange problem and fail to see what I am doing wrong:
When I plot the predictions vs the true labels only for test batches for that the accuracy evals to 1., ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/43815733",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Safari Cache size for iPhone 3.0 Various sites on the internet claims that Safari cache on iPhone 2.2 is 25k and 19 objects. Does anyone know what is the cache size for Safari/webview on iPhone 3.0.
A:
specially if you use the client side storage or a cache manifest, you can store much more data
Client applicatio... | {
"language": "en",
"url": "https://stackoverflow.com/questions/805891",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: How to increment only if cell is not empty on input with IFNA in Google Sheets? I found this prior answer to the issue here:
How to increment only if cell is not empty
But how to make it work on columns with IFNAs as blanks?
Demo:
https://i.imgur.com/7jYAZsw.gif
Sample sheet:
Table:
1
Test ONE and only.
1
ONE
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75449393",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to move item from item list to favorite list in React I was able to fetch data from an API and list them. I did that by watching videos. Now I want to add a button that says "add to favorite" for each item and by clicking on them I want to move the item from that list to favorite list. How can I achieve that? Pl... | {
"language": "en",
"url": "https://stackoverflow.com/questions/69515043",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Qt QCursor::setPos() does nothing I've created a minimal class to demonstrate my problem. I'm trying to set the cursor position, but it shows no effect. In my example class I try to center the cursor to the widget.
Here is my class:
class testWidget : public QWidget
{
Q_OBJECT
public:
testWidget();
protecte... | {
"language": "en",
"url": "https://stackoverflow.com/questions/26885507",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "4"
} |
Q: Hide all spans that are close to cursor on mouseover? I am working on a project where I have several hundred spans next to each other, with a letter of the text in each span. When I hover over one of the spans, I want to hide it, as well as the other spans nearby.
It makes an image like this:
@@@@@@@@@@@@@@
@@@@@@... | {
"language": "en",
"url": "https://stackoverflow.com/questions/70418153",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Is it possible to count the frequency of a word in a file precisely using two buffers in C? I have a file of size 1GB. I want to find out how many times the word "sosowhat" is found in the file. I've written a code using fgetc() which reads one character at a time from the file which is way too slower when it comes ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/62895348",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Android - Firebase Database Structure I am developing an android application where older kids can pick up younger kids and walk to school. With the application the authenticated (email and password) younger kid can choose between three adresses to get picked up. As of right now my realtime database looks like this:
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/46712175",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Implement Adsense Matched Content with DFP I want to implement the Adsense Matched Content in a website using DFP, but I don't know which type of Ad Unit I need to create.
The Matched Content tag is responsive, and I don't know which fixed size I need to create.
Any ideas?
Thanks!
| {
"language": "en",
"url": "https://stackoverflow.com/questions/39492036",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: How to set the read timeout for InputStream.read? If the server never send EOF, will InputStream.read hang?
How to set the read timeout?
A: How about setting a socket timeout. It sets the timeout on all the read operations on that socket
| {
"language": "en",
"url": "https://stackoverflow.com/questions/8845236",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How do you put { and } in a format string I'm trying to generate some code at runtime where I put in some boiler-plate stuff and the user is allowed to enter the actual working code. My boiler-plate code looks something like this:
using System;
public class ClassName
{
public double TheFunction(double input)
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/160742",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "23"
} |
Q: calling javascript function of bool type I am trying to call a Page Method using AJAX.
See the code
<asp:Button ID="btn_upload" runat="server" CssClass="btnEffects" Text="Upload"
onclick="btn_upload_Click" OnClientClick="return Validate();" />
Validate method is supposed to return true/false.
The code fo... | {
"language": "en",
"url": "https://stackoverflow.com/questions/4428444",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Django: problems with urlfields validation when overriding form validation I have some Form with two urlfields, both not required. The form is used to set the value of JSONField in a Model from these two urlfields (for user convenience), everything works fine. If a user enters something except an URL into url1 or ur... | {
"language": "en",
"url": "https://stackoverflow.com/questions/55024155",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Anchor tag not appending within paragraph tag javascript I'm using the following code
for (var i = 0; i < results.length; i++) {
//console.log(results[i].vicinity);
para = document.createElement('p');
aTag = document.createElement('a');
aTag.setAttribute('href',"/restaurants");
aTag.innerHTML = results[i].name;
my... | {
"language": "en",
"url": "https://stackoverflow.com/questions/34005132",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Extract multiple date strings from a single varchar(MAX) column SQL Server I've inherited a report spec subsystem that needs to be tweaked. The mission is to add a date column to the tReports table, and populate it with the CreateDate that is (supposed to be) contained in the XML Code Spec. The problem is that s... | {
"language": "en",
"url": "https://stackoverflow.com/questions/21139578",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: When form has submit button with id='submit' value, form submit does not work While this jsfiddle works:
<form method="post" id="myform1">
<input type="submit" value="submit" />
</form>
document.getElementById("myform1").submit();
This jsfiddle does not work:
<form method="post" id="myform2">
<input type="... | {
"language": "en",
"url": "https://stackoverflow.com/questions/26544300",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: How to do ajax on this scenario? javascript code
function new_person_adder1() {
var dataAjax = {
'entry_new_person_': $('#entry_new_person_1').val(),
'pop_new_person_identity_no': $('#pop_new_person_identity_no1').val(),
'identity_... | {
"language": "en",
"url": "https://stackoverflow.com/questions/24120728",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Cannot set headers after they are sent to the client using nodejs mysql What I am attempting to do is write a statement to check if email exists in my mysql database when a user registers. In postman it sends me the correct error message of "user already taken" however the server crashes after and displays "cannot s... | {
"language": "en",
"url": "https://stackoverflow.com/questions/63892004",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Javascript quiz not transitioning I am trying to make a quiz where I display one question at a time and when you answer it, you move to the next question. I have some basic markup like so
<div id="quizzie">
<div class="col-md-12 quiz-container current">
<div class="col-md-6">
<img src="../im... | {
"language": "en",
"url": "https://stackoverflow.com/questions/32873372",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: "__aeabi_ldivmod" undefined when compiling kernel module I'm trying to compile a kernel module (which I wrote myself) on a raspberry pi. I am compiling it in the target environment.
I get the following output:
make -C /lib/modules/3.12.23-1.20140626git25673c3.rpfr20.armv6hl.bcm2708/build M=/home/harmic/horus/ppminpu... | {
"language": "en",
"url": "https://stackoverflow.com/questions/25623956",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "9"
} |
Q: (#12) singular published story API is deprecated for versions v2.4 and higher I am trying to share photos on Instagram using Graph API. Does anyone know how to fix the error I'm getting? It gives an error even though I share it as in the document, I gave all permissions for the user.
Using Request 1
https://graph.fa... | {
"language": "en",
"url": "https://stackoverflow.com/questions/67918516",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Redux Saga: Await Promise I have a promise that is already invoked and has to be awaited. Basically:
const foo = () => Promise.resolve('foo'); // The real promise takes time to resolve.
const result = foo();
await result; // This line has to happen in the saga
How can I await the pending promise? If I wrap it in ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/59141316",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Casting 'findViewById(R.id.)' to 'Button' is redundant So I'm trying to build a scanner and generator for QR Code.
Here's my code for the scanner:
private Button scan_btn;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_read... | {
"language": "en",
"url": "https://stackoverflow.com/questions/48587320",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Adding fade in/out to grid row selection In this StackBlitz I have a Kendo for Angular grid. When you click on the button, the second row will be selected after half second, and unselected automatically after two seconds.
What I need is the selected row to fade-in on selection and fade-out after two seconds, is this... | {
"language": "en",
"url": "https://stackoverflow.com/questions/52353921",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: mx:button fillColors not working I work with FB4.6 and I try to apply a fillColor on my button.
package fr.int.component.customNavTab
{
import mx.controls.Button;
import mx.controls.ToggleButtonBar;
import mx.core.IFlexDisplayObject;
import mx.states.OverrideBase;
public class IconToggleButtonBa... | {
"language": "en",
"url": "https://stackoverflow.com/questions/10195221",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: SpriteKit: 'String' is not convertible to 'DictionaryIndex' whilst programming a SKAction.animateWithTextures(...) I came across this error ('String'is not convertible to 'DictionaryIndex') when I used the String keys of my 'states' to retrieve the SKTexture relevant. Can someone explain what might be the cause of t... | {
"language": "en",
"url": "https://stackoverflow.com/questions/25647978",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Prosody provide etc/prosody location in Windows I am using prosody in windows and from the documentation (https://prosody.im/doc), it is shown that it takes the location to find a file through etc/prosody/. Unfortunately, I am using windows and I want to provide the location of a file.
The right location of file: C:... | {
"language": "en",
"url": "https://stackoverflow.com/questions/72714580",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: error: could not find implicit value for parameter gen: shapeless.Generic Wrote this simple code for shapeless which does not work
import shapeless._
import shapeless.ops.hlist._
case class Person(name: String, age: Int)
val genPerson = Generic[Person]
But get compile error
<console>:21: error: could not find impl... | {
"language": "en",
"url": "https://stackoverflow.com/questions/37694509",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Neo4j Best way to export database to CSV I have tried the Cypher export csv, but the query itself takes too long, and it didn't seem practical since i needed to export a whole database which ranges upwards to a few gigabytes in size.
Is there a tool that lets me export a huge database in fairly good time?
A: You sh... | {
"language": "en",
"url": "https://stackoverflow.com/questions/50726439",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Windows Powershell Reading Tab Delimited File Problem OK so what I'm trying to accomplish should in theory be very easy but I can't figure out what's going wrong. I am trying to use the import-csv cmdlet to read in a .tsv file.
My syntax is:
import-csv -path "myfile" -delimiter "`t"
The problem is that this only di... | {
"language": "en",
"url": "https://stackoverflow.com/questions/4839786",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Nested entities are not supported in r2dbcEntityTemplate.insert I have 2 entities as batch & batchDetailEntity. I try to insert records to my database postgresql using spring boot reactor r2dbcEntityTemplate.insert() & I am getting error like Nested entities are not supported.
My code
Error
A: Instead of insert(M... | {
"language": "en",
"url": "https://stackoverflow.com/questions/69691409",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Grails Spring Security Core Plugin - adding flash message to login page I am using the Grails Spring Security Core Plugin to secure a certain action using the following annotation.
@Secured(['IS_AUTHENTICATED_REMEMBERED'])
This causes the action to redirect to my login page if the user is not logged in. Once they ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/4185261",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Python - scraping data with similar format my first time writing here, although i am spending enough time looking for answers.
A rather simple question where i hope someone can help!
I want to scrape some data from below url:
https://tracker.icon.foundation/addresses/1?count=100
https://tracker.icon.foundation/block... | {
"language": "en",
"url": "https://stackoverflow.com/questions/65461468",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How do I assign a input number as a variable in Android Studio? I want to make an random player picker app so first I need to take the number of players playing the game from the user which will be my variable and then my app will choose a random number out of 1 to that number, but I don't know how to use that input... | {
"language": "en",
"url": "https://stackoverflow.com/questions/64540526",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.