text stringlengths 15 59.8k | meta dict |
|---|---|
Q: Send the active sheet as an email attachment from google sheets I have a google form that captures responses in a spreadsheet. It currently creates a new sheet everytime a new response is made.
I'm now trying to add a "mail the active sheet script" to the existing script that creates a new sheet.
However I get an e... | {
"language": "en",
"url": "https://stackoverflow.com/questions/42282117",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I store characters in flash memory STM32F4 HAL with C++? So I have a buffer:
uint32_t buff[2];
buff[0] = 12;
buff[1] = 13;
...
I can write this to the flash memory with the method:
HAL_FLASH_Program(TYPEPROGRAM_WORD, (uint32_t)(startAddress+(i*4)), *buff)
The definition of HAL_FLASH_Program is:
HAL_StatusT... | {
"language": "en",
"url": "https://stackoverflow.com/questions/30777299",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to refactor to remove the control statements from @ngrx effects? I have a if control statement in an effect to return an action in the case of data has been retrieved from a service, if not return another action to get data from another Web API. It is a chained effects operation where there is another effect to ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/43597070",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Clicking Google reCAPTCHA checkmark does nothing on IE9 Google reCAPTCHA is not working on IE9 (compatibility view is disabled). It loads correctly but the checkmark is not clickable. After some seconds, the checkmark disappears and it shows:
Please upgrade to a supported browser to get a reCAPTCHA challenge.
Alter... | {
"language": "en",
"url": "https://stackoverflow.com/questions/52267544",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: SQLAlchemy: @event.listens_for(Engine, 'handle_error') always re-raises the error I need to catch errors such as "database does not exist" or "table does not exist".
Here's what I'm trying to do:
from flask_sqlalchemy import SQLAlchemy
from sqlalchemy import event
from sqlalchemy.engine import Engine
class MultiTe... | {
"language": "en",
"url": "https://stackoverflow.com/questions/70221399",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Peak at the sys.stdin before piping it to a subprocess (e.g. gzip) Data is coming in from the sys.stdin, but it could be either compressed (gzip) or uncompressed.
To solve this mystery, one could take a peek at the first 4 bytes of the stream. If they equal "\x1f\x8b\x08\x04" it's a gzip compressed file.
If the file... | {
"language": "en",
"url": "https://stackoverflow.com/questions/43398717",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to get ip address of forwarded domain using java Here i have problem in getting ip address of sub-domain so can any one help me to find ip. here is my code
import java.net.InetAddress;
public class NewTest {
public static void main(String[] args) {
String address = null;
try {
InetAddr... | {
"language": "en",
"url": "https://stackoverflow.com/questions/23988757",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Load data from NSUserDefaults in ViewDidLoad In the start screen of my app you are able to choose language between English and Swedish by clicking on either the flag of UK or Sweden.
The problem is that the ViewDidLoad does not recognize changes in the NSUserDefaults when you click a button. But when you restart th... | {
"language": "en",
"url": "https://stackoverflow.com/questions/16133868",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: 'SELECT IN' with item list containing duplicates I'm doing
SELECT Name WHERE Id IN (3,4,5,3,7,8,9)
where in this case the '3' Id is duplicated.
The query automatically excludes the duplicated items while for me would be important to get them all.
Is there a way to do that directly in SQL?
A: The query doesn't exc... | {
"language": "en",
"url": "https://stackoverflow.com/questions/14511398",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-4"
} |
Q: Populate a DataGridView correctly I'm writing a winforms application, with a datagrid, using some search field to filter the content of the dataGrid.
To fill my dataGrid, I load data using a query.
The result of the query is either a DataTable, or a List<Object> created with the dataTable.
I read that to use search ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/22353098",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: MYSQL Query matching column names to rows in another table I have two tables in MYSQL, one contain a list of options a customer can pick from and the other has the cost of the options. I would like a view that returns the cost of each customers option set. For my example I'll use the analogy of buying a new car.
Cus... | {
"language": "en",
"url": "https://stackoverflow.com/questions/21176884",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Cakephp MYSQL query: SELECT where date is greater than I have to run a MYSQL select query where the query returns all values that have the beginning date 10 days after today. I have tried these two methods none of which seem to work, where do I need to make a change?
$fix_d_table = TableRegistry::get('fixed_departu... | {
"language": "en",
"url": "https://stackoverflow.com/questions/49443212",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to use subqueries in MySQL I have two tables.
Table user:
CREATE TABLE IF NOT EXISTS `user` (
`user_id` int(20) NOT NULL AUTO_INCREMENT,
`ud_id` varchar(50) NOT NULL,
`name` text NOT NULL,
`password` text NOT NULL,
`email` varchar(200) NOT NULL,
`image` varchar(150) NOT NULL,
PRIMARY KEY (`user_id`... | {
"language": "en",
"url": "https://stackoverflow.com/questions/4569964",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: I don't know what to do because an error occurs --> Uncaught TypeError: Cannot read property 'getContext' of null window.onload=function() {
c=document.getElementById('gc');
cc=c.getContext('2d')
setInterval(update,1000/30);
c.addEventListener('mousemove',function(e) {
p1y=e.clientY-ph/2;
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/43245798",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Update grouped records with sequence in sql I have following structure of data in sql table
COL1 COL2 COL2 GRP_ID
A A B 100
A A B 100
A A C 101
A A B 100
A D E 102
A D E 102
F G H 103
F ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/65167251",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: flash video smoothing I have a short flv I want to play on my website. I use the below actionscript 2 code to play the video, but the anti-aliasing of text is really poor quality. I added a line to introduce "smoothing" to the video, but it appears to have no visible effect.
var my_video:Video;
var my_nc:NetConnecti... | {
"language": "en",
"url": "https://stackoverflow.com/questions/1299811",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Retain colour but change transparency in photoshop How can I retain a specific colour of an object (or layer) but change the transparency?
I have 2 objects which I want to have a specific colour but currently the opacity is 100%. I need to maintain the current colours but with a opacity of 50%.
Obviously if I change... | {
"language": "en",
"url": "https://stackoverflow.com/questions/31648709",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Multiple iterations of vector with structs "cannot move out of borrowed content" I need to iterate a vector with structs in each iteration in a loop. It works fine as long as the vector doesn't contain structs. I have tried many different solutions but always get some kind of ownership problem.
What am I doing wrong... | {
"language": "en",
"url": "https://stackoverflow.com/questions/55468845",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Ant and sqlcmd - Different Outputs I have one .sql file that is execute using ant, when I execute it with the tag I recived a different output as when i used calling "sqlcmd".
sql tag output:
[sql] Executing resource: C:\SqlTesting\TestScriptDependencies\Executor.sql
[sql] Failed to execute: Use Library Ex... | {
"language": "en",
"url": "https://stackoverflow.com/questions/13763144",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: log4j.properties file disappears in the project/Classes location I'm configuring log4j in my standalone Java project. I created the property file under project/classes folder but everyday when I run the my application I get errors like
log4j:WARN No appenders could be found for logger (cafcontroller.CAFController).... | {
"language": "en",
"url": "https://stackoverflow.com/questions/60924780",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: List available library - SQL Linked Server AS400 I'm using SQL server 2005 (64bit version) and have successfully connect to as400 using IBM DB2 UDB for iSeries IBMDA400 OLE DB Provider.
Anyone know how to list available library/table and get the field name & description?
already looking around, and have tried this q... | {
"language": "en",
"url": "https://stackoverflow.com/questions/17562378",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "5"
} |
Q: Using sqlite how can i update or insert to a table using a condition? Having a blank table with three columns
CREATE TABLE AssyData ( AID int NOT NULL PRIMARY KEY UNIQUE , MaxDef float , MaxDefLC int , MaxDefNID int , Comps text , SubAssys text )
I would like to Update or insert new values if the new MaxMag is... | {
"language": "en",
"url": "https://stackoverflow.com/questions/58519963",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Adding new server to Farm not firing event receivers Experts-
We have deployed WSP (with features and feature activation event receivers) in farm environment. Event receivers creates timer jobs to perform few changes to all servers in farm.
Issue:
When new server is added to farm, WSP is getting deployed automatica... | {
"language": "en",
"url": "https://stackoverflow.com/questions/23904697",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Oracle Apex Office Print: cannot generate excel report when source query returns null value I have a query very similar to this test query:
select
'file1' as "filename",
cursor (
select
cursor (
select
cursor (
select
'Test Customer'... | {
"language": "en",
"url": "https://stackoverflow.com/questions/52475159",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: macOS terminal asking for password every time I run copy command I'm running a bash command on mac that moves a file to private/etc/app_name/.
sudo cp my_file.cpp private/etc/app_name/
Every time the I want to run the bash file, the OS asks for my system password.
> ./run_copy.sh
Password: *******
Is there a way t... | {
"language": "en",
"url": "https://stackoverflow.com/questions/72205130",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: MS-DOS delete with wildcards on ends What I want is a wildcard that means "contains"
So if I have a directory with
a.txt
b.param
b.param.config
I would like to delete only b.param and b.param.config
I have tried del *.param*, del *param* ... but nothing seems to match anything for the beginning and end of the file... | {
"language": "en",
"url": "https://stackoverflow.com/questions/8812969",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: How can I allow multiple users to access the same amazon instance at the same time? I am new to Amazon Cloud, and trying to create an EC2 instance that can allow multiple users to access at the same time.
While there are plenty of documentations, I haven't found an answer to my question. Whenever those documentatio... | {
"language": "en",
"url": "https://stackoverflow.com/questions/11121370",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Get substring with code from different strings I'm working on a web scraper. Among the fields it scrapes there is a Description tag like this one, different for each product:
<div class="productDescription" style="overflow: hidden; display: block;">
Black Tshirt
<br>
<br>
REF.: V23T87C88EC
<br>
<br>
COMPOSIÇÃO:
<br>... | {
"language": "en",
"url": "https://stackoverflow.com/questions/74226485",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Using VBS Script in AAE and getting 1024 Expect Statement I am new to coding in VBS and all the time I am getting 1024 Expect Statement Error in my VBScript. If anyone could point me where is a mistake I would be gratefull.
Dim Path
Dim BeginDate
Dim EndDate
Path = WScript.Arguments.Item(0)
BeginDate = WScript.Argu... | {
"language": "en",
"url": "https://stackoverflow.com/questions/49853650",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Find certain value/element in two-dimensional ArrayList I have a two dimensional arraylist
List<List<String>> movies_info = new ArrayList<>();
which I populate creating new rows
movies_info.add(new ArrayList<String>());
and adding elements
movies_info.get(i).add(title);
.
I would like to be able to check if the e... | {
"language": "en",
"url": "https://stackoverflow.com/questions/35370157",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Is it possible to make fast big circular buffer arrays for stream recording in Haskell? I'm considering converting a C# app to Haskell as my first "real" Haskell project. However I want to make sure it's a project that makes sense. The app collects data packets from ~15 serial streams that come at around 1 kHz, lo... | {
"language": "en",
"url": "https://stackoverflow.com/questions/9072964",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "7"
} |
Q: FileNotFoundException when calling C# dll from C++/CLI I have a C# dll, with some methods, which I am trying to access in my native project with /CLR support.
I reference this DLL using a #using directive, and the DLL is recognized and the project compiles.
However, during runtime, I get a FileNotFoundException, whi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/39230290",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Getting Index of an Object from NSArray? i am trying to get index of an array through indexOfObject method as follows but when i try to log the value to test the index i get a garbage value.. for testing purposes i am having an array with values {57,56,58..} to get an index of lets say 56,
NSNumber *num = [NSNumber ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/7398141",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "67"
} |
Q: MKMapView zoom User Location and Annotation I want my MKMapView to zoom 'User Location' and the Annotation as close as possible.
The map already show both, but is zoomed out to the whole country.
How can I do that?
And I don’t know why the Annotation and Pin are not animated.
My Code:
//Coords User
CLLocationCoordin... | {
"language": "en",
"url": "https://stackoverflow.com/questions/14760582",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: Datadog: How to automate configuring Log Archives How can I automate configuring Log Archives on GCP?
I can do it manually by following steps
https://docs.datadoghq.com/logs/archives/?tab=googlecloudstorage
I guess selenium can help this
but I looking for a more programmatic way like Terraform or REST API
Thank you... | {
"language": "en",
"url": "https://stackoverflow.com/questions/61092487",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: JComboBox - out of bounds exception i have a small problem. I'm trying to import logins from my database to a vector and then to use that vector for JComboBox. My method for downloading logins :
public void loginReader (Vector<String> loginy, String tableName)
{
String query = "select login from " + tableName;
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/21243973",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: problems with cookies i'm using restful-authentication plugin with rails 2.3.8
i've problems with cookies store
i've put a logger instruction in this function for check the cookie:
def send_remember_cookie!
cookies[:auth_token] = {
:value => @current_user.remember_token,
:expires => @current... | {
"language": "en",
"url": "https://stackoverflow.com/questions/3176340",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Column not found: 1054 Field Field 'email' unknown in where I have 3 rubrics for now.
When, I login in the rubric Studentwith the email test.gmail.com I can see my informations private
Then, I LOGIN in the rubric Feedback always with the email test.gmail.com I have like error message:
SQLSTATE [42S22]: Column not ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/57581930",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: I want to use this. $ axios with Vuex constants What I want to come true
I use this.$axios many times, so I tried to put it in a constant, but it doesn't work.
I read the official docs but didn't understand.
Is it because this isn't available in the Nuxt.js lifecycle?
Code
url.js
export const AXIOS_POST = this.$axio... | {
"language": "en",
"url": "https://stackoverflow.com/questions/68705708",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: how to upload an image to aws s3 bucket and get the saved url in Android studio using java I need to upload the image to the AWS s3 bucket in android. I implemented that the user has taken a photo from the gallery after having the image path I need to save that in a bucket and get the url from bucket in android.
I H... | {
"language": "en",
"url": "https://stackoverflow.com/questions/62833395",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Configuring ASP.NET MVC app's IIS 7.5 Application Pool identity as login on SQL Server 2008 R2 I am trying to use IIS 7.5 Application Pool identity as login on SQL Server 2008 R2 so that my ASP.NET web app can connect to the database...
Using this approach worked fine on my local dev machine (IIS 7.5 and SQL Server ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/4463528",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "4"
} |
Q: Django include template tag alternative in python class I know there is a Django template tag that allows to include other templates like so:
{% include 'template.html' %}
I am wondering if I could do the same, but in a separate python class (not in the HTML template)?
I know that for example the url tag has an eq... | {
"language": "en",
"url": "https://stackoverflow.com/questions/30853775",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to clear a window in PySimpleGUI I am using PySimpleGUI to build a GUI. How do you clear all the widgets on the window? In tkinter you have the code:
widget.destroy()
If you attempt this in PySimpleGUI you get the error:
NameError: name 'RWG' is not defined
if my widget is called RWG. I tried making RWG a glob... | {
"language": "en",
"url": "https://stackoverflow.com/questions/61306986",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Rails 4: From which step in the boot process can I check the ActiveRecord::Base class? I would like to perform some checking on the database resources only when the app starts/restarts (if any new migrations happen in between) by calling:
resources = ActiveRecord::Base.send(:subclasses).map { |subclass| subclass.nam... | {
"language": "en",
"url": "https://stackoverflow.com/questions/33154848",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: HTTPHandler for all files in directory I have created an HTTPHandler to handle all files within a certain folder ("Files"). When i run it locally from Visual Studio it works fine. However when i deploy it on the server (IIS 7, Classic Mode), the handler is not firing for files of types such as pdf, jpg, gif...etc (a... | {
"language": "en",
"url": "https://stackoverflow.com/questions/11518443",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Integrating Angular 4 into ASP.NET Core MVC app - how to mix routing I'm trying to integrate my Angular 4 app into asp.net mvc core project. And I'd like to have Angular app available within my Core MVC project with this Url - mydomain.com/ngx.
Here's how I do it now (and it doesn't work):
I build Angular app with a... | {
"language": "en",
"url": "https://stackoverflow.com/questions/43452637",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: typing effect in Arabic language appear disconnected So I used this tutorial to make a typing effect and it appears great in English, I tried
to use Arabic text (which is a connected letter language) and it appears good on my device.
when I sent the app prototype for the client to test it, the Arabic language letter... | {
"language": "en",
"url": "https://stackoverflow.com/questions/64733049",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to safely create a file if it doesn't exist from concurrently-running processes without using locking? Suppose two (or more) concurrently-running Java processes need to check for the existence of a file, create it if it doesn't exist, and then potentially read from that file over the course of their runs. We wan... | {
"language": "en",
"url": "https://stackoverflow.com/questions/16046073",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Wrong file input I have to enter string x in reverse order, but it outputs null. Why and how to fix it?
Sorry in advance for the name of the variables, but also for the double loop (I know it's bad, but this is the only thing that came to my mind)
The main question is why null is entered in the file
public static vo... | {
"language": "en",
"url": "https://stackoverflow.com/questions/64821466",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: pymssql (python module) losing item when fetching data I have a database named "sina2013",and the columus is Title,Content
Now I want to use pymssql module to get the data.At the same time ,using the Title as the filename of a txt file,the Content as the content of the txt file.
The strange thing is the number of fi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/17529670",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How do I get arrayMaxConsecutiveSum from CodeSignal more efficient? I am working through some problems on CodeSignal. I came across this one, arrayMaxConsecutiveSum. I got it to pass almost all tests, but it is timing out on the last one. If I move the test into custom tests, it passes there, so I'm not sure what to... | {
"language": "en",
"url": "https://stackoverflow.com/questions/66202105",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: Make SliverAppBar have an image as a background instead of a color I have a SliverAppBar with a background image.
When collapsed it has a blue color as a background:
But instead of the blue color I want it to show the background image when collapsed:
How can I achieve this?
I've already tried to give the app bar ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/58970477",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "19"
} |
Q: SSE (Server Sent Events) Client library for Clojure? I would like to handle a Server Sent Events stream in Clojure.
Does anyone know a small client library to just do that please ?
I was expecting to find something like https://github.com/stalefruits/gniazdo, which is for Websockets, but for SSE.
I could not find a... | {
"language": "en",
"url": "https://stackoverflow.com/questions/53265737",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "5"
} |
Q: How to provide tunnel between my own app and my own server? I have implemented an Android App which connects my home server. I want to implement a tunnel between my app and the server. when ever app connects to server it will be connected through the secure tunnel. Tunnel might be anything. Is there any suggestio... | {
"language": "en",
"url": "https://stackoverflow.com/questions/8258985",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Symfony2 using jsroutingbundle and got login error I am using Jsroutingbundle and I add these two lines in my base.html.twig and it works fine.
<script src="{{ asset('bundles/fosjsrouting/js/router.js') }}"></script>
<script src="{{ path('fos_js_routing_js', {"callback": "fos.Router.setData"}) }}"></script>
But whe... | {
"language": "en",
"url": "https://stackoverflow.com/questions/22142204",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Hi everyone! My question is about the Charles-proxy certificate My question is about the Charles-proxy certificate. I've already installed Charles on my laptop. The real problem is when I tried to install it on my mobile. I have a Xiaomi with the android 11 version, with this one is impossible. I did everything I co... | {
"language": "en",
"url": "https://stackoverflow.com/questions/72554275",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Why does isEqualToString not work for NSString? I am trying to code the login process for an iPhone app in XCode. The problem is with the NSString serverOutput below. When I print it using printf(serverOutput.UTF8String); it prints 'Yes' to the console. However when I compare serverOutput to "Yes" it doesn't work. A... | {
"language": "en",
"url": "https://stackoverflow.com/questions/16052199",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: php limit mail () this might be easy but I don´t see the way. I have a shopping cart at my side where user can buy things. for this the buyer can imput his email-adress into an input-form. the order is sent with php mail() to the shopowner and the buyer.
I´m looking for a way to limit mail to sent only two email, ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/12636621",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Kinect Html5 Stream to web in existing C# Application For our university project we need the kinect video Stream accessible from another Device in the network. Preferable as a HTML5 Webserver. The Microsoft.Samples Webserver works only with the kinect1 and we need it for kinect 2. Another interesting solution is the... | {
"language": "en",
"url": "https://stackoverflow.com/questions/27926250",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Response.Redirect not sending string i've got a bit of a problem trying to set up a general error page in MVC.
I am handling all app errors in Global.asax.cs with the following code ->
protected void Application_Error(object sender, EventArgs e)
{
//if (Request.Url.ToString().StartsWith("http://localhost:"))
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/52150026",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Display from database if 2 columns match I am new to Laravel and am currently I am working on a very basic private messaging system.
Currently I am trying to display a page which shows the messages between 2 users (sent and received), however I am only able to display the messages which the user has sent. Here is m... | {
"language": "en",
"url": "https://stackoverflow.com/questions/50470035",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to export strings from Java (Android) to MS Word I want to know how to export typed strings to a word document file.
The application I'm trying to make should be simple; User has his application on his Android phone and he types in some text.
It will have few PlainText and MultilineText text fields, in which the... | {
"language": "en",
"url": "https://stackoverflow.com/questions/13402768",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Handling entities in react? I am very new to react, redux, prop-types and so on. I am coming from the Angular2 world with TypeScript support. There I had my own entity classes which I imported in the components where I need them. Now in react I only have prop-types which I define for each component.
All fine and go... | {
"language": "en",
"url": "https://stackoverflow.com/questions/49395378",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Get multiple input type hidden value row button click for column in table This is sample column for single row where i have tried to get hidden value by button action event
<td colspan="2">
<!-- the hidden value i want to retrieve "stockitemid" and "outletid" -->
<!-- value i have bind from controller throu... | {
"language": "en",
"url": "https://stackoverflow.com/questions/42185913",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: How do I stop my backtracking algorithm once I find and answer? I have wrote this code for solving a problem given to me in class, the task was to solve the "toads and frogs problem" using backtracking. My code solves this problem but does not stop once it reaches the solution (it keeps printing "states" showing oth... | {
"language": "en",
"url": "https://stackoverflow.com/questions/64328470",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: In postgresql, which part of locale causes problems with LIKE operations? There's a lot of discussion around the net about locale other than C or POSIX causing performance problems in postgresql. I'm not clear though as to which part(s) of the locale setting cause problems and why.
In the manpage for initdb(1), we ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/26458548",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Trying to understand the differences across these promises and setTimeouts I'm learning about promises, setTimeout and async calls and have done a great job of confusing myself. I think I'm lacking some understanding around the callback and how setTimeout works. I've been looking at Mozilla documentation and the var... | {
"language": "en",
"url": "https://stackoverflow.com/questions/70674702",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: modelsim script for compile all I have a modelsim project file (*.mpf), where it lists all the HDL files, and it provides a "compile_order" for each file.
So, when I load the (.mpf) file, I can see that each one of my HDL files have a compoile_order number next to it. So far so good.
Now, on the GUI, I can run "com... | {
"language": "en",
"url": "https://stackoverflow.com/questions/49538638",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: Uploading files to node js using html form? var fs = require('fs'); // require file system module
var http = require('http'); // require http module
http.createServer(function(request,response){
var newFile = fs.createWriteStream("readme_copy.txt");
request.pipe(newFile);
request.on('end',function(){response.end('... | {
"language": "en",
"url": "https://stackoverflow.com/questions/22577608",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Is there any way to list out all permissions and on which resources an IAM user have access? I am asked to list all users accesses in my company's aws account. Is there any way that I can list out the resources and respective permissions a user has? I feel it is difficult to get the details by looking into both IAM ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/57555448",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: Download all m3u8 files AWS CLI Through Unknown options: --include,*.m3u8 Can the AWS CLI tool be used to only list/retrieve certain file types in S3? I was trying:
aws s3 ls --summarize --human-readable --recursive s3://cloudfront.abc.com/CDNSource/hls/ --include "*.m3u8"
but receiving "Unknown options: --include... | {
"language": "en",
"url": "https://stackoverflow.com/questions/74392427",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Rails - Strange characters pass through validation and break query I copy-pasted a string into a form field and a strange character broke my MySql query.
I could force the error on the console this way (the weird character is in the middle of the two words "Invalid" and "Character", you can also copy-paste it):
> do... | {
"language": "en",
"url": "https://stackoverflow.com/questions/28325756",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: checking for sting in pandas column and modifying another I am working on cleaning a dataframe. The dataframe contains three columns order_id 'order_item' and 'order_type. The order type can be: breakfast, lunch, or dinner. I want to compare each item in the order to confirm it matches the order type. If not, I woul... | {
"language": "en",
"url": "https://stackoverflow.com/questions/58183488",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Can I perform an "or" operation in LINQ to objects? Looking up LINQ and Or in google is proving somewhat difficult so here I am.
I want to so the following:
(from creditCard in AvailableCreditCards
where creditCard.BillToName.ToLowerInvariant().Contains(txtFilter.Text.ToLowerInvariant())
**or creditCard.CardNumber.... | {
"language": "en",
"url": "https://stackoverflow.com/questions/251433",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: System.PlatformNotSupported Exception, no recognizer installed I'm making a program where I need speech recognition engine, but I ran into the problem that says "no recognizer installed". I've been searching for 2 days, what can i do about it, but found nothing useful. I red nearly all of the other question, here, w... | {
"language": "en",
"url": "https://stackoverflow.com/questions/66629847",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: combining data to 1 model attribute I have a calendar system in which the user enters date and time for an event in a seperate text_field. I store the date and time in one attribute (begin) in the Event model I have a hard time figuring out how to combine the date and time input and combine it into the begin attribu... | {
"language": "en",
"url": "https://stackoverflow.com/questions/6110210",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "4"
} |
Q: whats the use of shared mutex? Consider following example -
#include <boost/thread.hpp>
#include <iostream>
#include <vector>
#include <cstdlib>
#include <ctime>
void wait(int seconds)
{
boost::this_thread::sleep(boost::posix_time::seconds(seconds));
}
boost::shared_mutex mutex;
std::vector<int> random... | {
"language": "en",
"url": "https://stackoverflow.com/questions/25322271",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Alter the precision of an existing decimal column in SQL Server 2014 results in error I have a couple decimal columns in a couple tables that I need to expand from decimal(9, 4) to decimal(9, 5). Unfortunately I get the following error every way I try. So far I have tried changing it using design in SQL Server Manag... | {
"language": "en",
"url": "https://stackoverflow.com/questions/32122818",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Count how many this word in the file but so many of them to separate I want to count how many of country that input in the program and show 3 at the most number on it like this
USA,USA,UK,UK,Canada,Canada,south park
and the result is Three of countries that have most number are USA,UK,Canada for example
but the prob... | {
"language": "en",
"url": "https://stackoverflow.com/questions/69785315",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Unique question - Alien Invasion - Pygame I'm creating Alien Invasions from Chapter 12 in Python Crash Course. It's saying:
error Traceback (most recent call last)
<ipython-input-13-0a7dc30aa722> in <module>()
22 if __name__ == "__main__":
23 # Make a game instance, an... | {
"language": "en",
"url": "https://stackoverflow.com/questions/62985393",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: what obj files can be added to nglview? I am making an iphone app according to this tutorial http://www.icodeblog.com/2012/09/07/3856/ however, when trying to replace the 3d obj(earth) with some obj file of mine, it does not work, is there any specific requirements for the obj file added to nglview?
This is the view... | {
"language": "en",
"url": "https://stackoverflow.com/questions/15401201",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How To Define API Blueprint X-Auth-Token Header I have a number of services that require an X-Auth-Token header to be sent similar to the below:
X-Auth-Token: 2e5db4a3-c80f-4cfe-ad35-7e781928f7a2
I would like to be able to specify this in my API documentation following the API Blueprint standard. However, from what... | {
"language": "en",
"url": "https://stackoverflow.com/questions/29873140",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how to compare two column value in GridView? protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
string[] Cardio = (string[])objDocter.getDocter_acc_prof();
if (e.Row.RowType == DataControlRowType.DataRow)
{
if (e.Row.Cells[2].Text == "Heart problem")
{... | {
"language": "en",
"url": "https://stackoverflow.com/questions/3686524",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to distinguish Alt press and Alt + 3 press I have a problem how to distinguish Alt press and Alt + 3 press.
I have two diference action.
Alt - show menu bar
Alt + 3 - add 3th pane into my main window.
How do I distinguish between these two events? Problém is (in this moment) that when I press Alt + 3. Booth acti... | {
"language": "en",
"url": "https://stackoverflow.com/questions/34490301",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to show videos in gridview ! (Flutter) I am getting the video files from filepicker package now i want to show the videos on gridview when clicked on them video should be played (similar to gallery)
A: Found answer my self first I generated the thumbnail of the video by thumbnail package(https://pub.dev/package... | {
"language": "en",
"url": "https://stackoverflow.com/questions/74641871",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: PHP - Efficient way to check if subdomain exists
Possible Duplicate:
PHP function to get the subdomain of a URL
Im looking for an efficient way to tell if a subdomain exists within a URL.
The domain name will always be fixed e.g. mydomin.com, however if a subdomain is not set, I need to redirect.
One thought I ha... | {
"language": "en",
"url": "https://stackoverflow.com/questions/12759166",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Sleep function on php As a possible alternative to using cron jobs, I found the sleep function. I have never used this before.
If I tell my script to run inside a kind of loop, and inside that loop I have an instruction like this
# sleeps for 86400 seconds or one day
sleep(86400);
will my script be launched again ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/4206226",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Submit form with on another website They have a selector on example.com. And my Nodejs server is running on myserver.com
<form method="POST" name="formname">
<select name="selector" onchange="document.forms['formname'].submit();">
When you select an option it updates the content of the page.
How can I simulate sel... | {
"language": "en",
"url": "https://stackoverflow.com/questions/46221374",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to display two strings next to each other in a single-line where the right string is always fully visible and left one truncated if too long? On my dynamically generated HTML page, I have a limited-width DIV container. Inside it, there are several rows (DIVs) which display "name" and "value" pairs (two SPANs nex... | {
"language": "en",
"url": "https://stackoverflow.com/questions/67332161",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Transform a column into variables in R My current dataset :
order product
1 a
1 b
1 c
2 b
2 d
3 a
3 c
3 e
what I want
product order
a 1,3
b 1,2
c 1,3
d 2
e 3
I have tried cast, reshape, but they didn't work
A: I recently spent way too much time trying to do something similar... | {
"language": "en",
"url": "https://stackoverflow.com/questions/45247286",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: ViewPagerIndicator tabs loses content I am using Holoeverywhere and ViewPagerIndicator; using Holoeverywhere1 I implemented the slider and tabs in the Fragment using ViewPagerIndicator. Everything is working fine, Slider working, the menu in it, the tabs; the tabs works fine only the first time, when I move to other... | {
"language": "en",
"url": "https://stackoverflow.com/questions/16687339",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: STR_TO_DATE not working in my query I have date field in database having varchar datatype. Now I have to compare date with the current date but because of data type(varchar) result is not coming properly.
I don't want to change datatype in database so how can I query in codeigniter ?
In my database date is in this ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/33968524",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "8"
} |
Q: 'Splitting' List into several Arrays I'm trying to complete a Project that will show total annual sales from an specific list contained in a .txt file.
The list is formatted this way:
-lastname, firstname (string)
-45.7 (float)
-456.4 (float)
-345.5 (float)
-lastname2, firstname2 (string)
-3354.7 (float)
-54.6 (floa... | {
"language": "en",
"url": "https://stackoverflow.com/questions/13664768",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to remove index.php in url while working on Codeigniter-WAMP i have seen many questions about my problem there are number of solutions i tried them all!i'm facing this problem from from 24 hours and not able to move forward.
these steps i have taken simply.
1)install codeigniter.
2)enable rewrite_mod by removing... | {
"language": "en",
"url": "https://stackoverflow.com/questions/46341038",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Getting table Values in Jquery I have a small form which takes the values name (TextBox), age(textbox) , Education(select box with values"Bachelors" and "Masters").
So I have a Button with the "ADD" which adds the values to database and displays it in a table format.
Iam having the table with 10 rows and each ro... | {
"language": "en",
"url": "https://stackoverflow.com/questions/3326872",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "4"
} |
Q: Are POST requests cached in Django? I want to get some view cached depending on the POST data sent to it.
Does the django.views.decorators.cache.cache_page decorator do that automatically or do I need to tweak it somehow? In the latter case, how should I do that?
I'm trying to cache GraphQL POST requests.
A: No, PO... | {
"language": "en",
"url": "https://stackoverflow.com/questions/59373446",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How do I get a child window to send keys back down? I am almost certainly missing something completely obvious. I have a singleton main form with various menu items with shortcuts. I have child windows which can be embedded on the main form or floating on their own. The main form class has a static member that point... | {
"language": "en",
"url": "https://stackoverflow.com/questions/23227685",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to concatenate a patchValue number with a string in angular forms? This is my TS
ngOnInit() {
this.editProfileForm = new FormGroup({
firstNumber: new FormControl(null, {
validators: [Validators.required],
})
}
}
fetchNumber() {
this.nameS... | {
"language": "en",
"url": "https://stackoverflow.com/questions/64772383",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Interprocess Communication in C, one character at a time First off, this IS homework, I am not asking for an answer, however I am confused about something.
I have a homework assignment for a programming class, and I am a little confused about how to write the code the specific way that the instructor is asking.
The ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/23977368",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Scrapy merging chained requests into one I have scenario where I am browsing a shop, going through 10s of pages. Then when I find the item that I want, I will add it to basket.
Finally I want to checkout the basket. The problem is that, with scrapy chaining, it wants to checkout the basket as many times as I have it... | {
"language": "en",
"url": "https://stackoverflow.com/questions/50791031",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.