text stringlengths 70 452k | dataset stringclasses 2
values |
|---|---|
Nginx Proxy Manager and django with nginx
I have a stack Django+Gunicorn+nginx running in docker containers. It is accessible from outside by domain and Port, like web.example.com:1300 . Also, there is Nginx Proxy Manager (NPM) running (uses ports 80 and 443) and succesfully managing some other resources (for example n... | common-pile/stackexchange_filtered |
Unix regular expression begginers question
I'm starting the study of regular expressions and I've been wondering how can I build and test the regular expression in UNIX notation for all vowel strings that contain the substring "ai" or "ui".
would it simply be something like: (ai|ui) ? How could I test it?
So you are s... | common-pile/stackexchange_filtered |
I tried updating my iPhone, but now it says "SIM is invalid"
I have an iPhone 3GS 32GB. I have just tried updating the phone using iTunes. The phone is second hand, and was unlocked when I bought it. I didn't know that when you try to update it, it loses everything. Now it isn't reading my SIM, even though I've used th... | common-pile/stackexchange_filtered |
C how to cut down on if statements
I am relatively new to the programming scene. I have tried a few languages but settled on C to start with because of the support and ease of getting started. I am currently trying to write a simple text based conquest kind of game.
With this there are a large amount of places or terr... | common-pile/stackexchange_filtered |
Have there been attempts to identify Chomsky's "language mutation" in humans?
I'm not versed in either biology or linguistics so please forgive any naiveties I may commit.
I've learned that Noam Chomsky thinks that language is a result of a single genetic mutation in humans. It would be a mutation allowing the human br... | common-pile/stackexchange_filtered |
Nuget 3 - Octopack - Wrong Framework Target error
I'm getting mad trying to solve this one. My environment:
VS2015
Nuget extension <IP_ADDRESS>
Octopack package 3.0.45.
When I run the following command below, the package is correctly generated:
v4.0.30319\msbuild PackagingTest.sln /t:Rebuild
/p:Configuration=Release... | common-pile/stackexchange_filtered |
facing error 443 while performing android app load testing in jmeter
I am a complete beginner in Jmeter and facing error 443 while performing android app Load testing in Jmeter(5.4.1). I have followed all required steps to connect jmeter to mobile apk.
Without knowing what "all required steps" you "have followed" we c... | common-pile/stackexchange_filtered |
unable to read text file using stream reader and place txt into custom class
so i am trying to read text from a txt file and then add the text in to a custom class list,
the code is
public static List<BookInfo> LoadCSVFile(string fileName, out string qError)
{
qError = "";
fileName = "books.txt";
... | common-pile/stackexchange_filtered |
Can I give a 'web address format' to my local host application
I host a local application on my machine which I provide access on network by normally type http://computername/app. Can I change it to a real web address format www.myapplication.org for my local hosting.
You can, by setting up a mapping in your hosts fil... | common-pile/stackexchange_filtered |
Calculating SVG donut slice label position server side
How can I calculate a slice text label to be positioned directly in the
center of a slice in an svg donut chart?
I have an svg donut chart that is generated server side. I have the slices of the chart correctly implemented but I'm having some trouble figuring o... | common-pile/stackexchange_filtered |
Plotting a paraboloid
I want to plot a paraboloid centered at the origin. I tried
RegionPlot3D[
(2*x - 1)^2 + (2*y - 1)^2 >= (2*z -1) &&
(2*x - 1)^2 + (2*y - 1)^2 < (2*z - 1) + 0.1,
{z, 0, 1}, {y,0, 1}, {x, 0, 1}]
But Mathematica only plots pieces of the image. Could someone explain to me why?
Just use:... | common-pile/stackexchange_filtered |
app from com.google.zxing.client.android source code does not work
I downloaded the full source from http://code.google.com/p/zxing/source/browse/trunk and build it into an android apk file without any problem with eclipse, but after I install the apk into my cell phone, it does not work, instead it shows: "The applic... | common-pile/stackexchange_filtered |
Is there any test to check variance stationarity in time series?
The question is straightforward: Is there any test to check variance stationarity (homoscedasticity) in time series?
And, if it exists, which are its implementations in R or Python?
If you want to test for white noise (a stronger condition than stationar... | common-pile/stackexchange_filtered |
Am I using these MOSFETs correctly?
I am designing and testing a circuit that charges a capacitor to around 50V using a boost converter when 'ARM' is high, then discharges it through a solenoid when 'FIRE' is high. ARM and FIRE are outputs from an Arduino Uno (5V logic level). The arduino GND pin is connected to the gr... | common-pile/stackexchange_filtered |
Filtering results on page with Django and Ajax
I am working on a Django project where items are displayed on the main page. I am trying to get a filter working on this page so that if I check some checkboxes it will filter the results to display on the items matching these attributes, unfortunately I do not know how to... | common-pile/stackexchange_filtered |
How can I make Adobe Acrobat Reader open PDF files in read-only mode?
I sounds weird, but I'm failing to find an option to make Adobe Acrobat Reader open PDF files read-only.
By read-only I understand no write lock on file system.
There are similar questions where people want to get rid of editing/commenting/collab too... | common-pile/stackexchange_filtered |
WinAPI LoadKeyboardLayout();
I compile dll with VS2010 but I have problems with changing keyboard layout. I am running Windows 7.
GetKeyboardLayout(0); //Returns previous layout
LoadKeyboardLayout("00000409", KLF_ACTIVATE);
GetKeyboardLayout(0); //Returns 04090409 (English layout)
But the layout is NOT changed. One ma... | common-pile/stackexchange_filtered |
Show that if dynamical system $T$ is weakly mixing, then $T^n$ is weakly mixing.
Show that if dynamical system $(X,T)$ is weakly-mixing, then $(X, T^n)$ is weakly mixing.
I am using this definition of weakly mixing: we say that system is weakly mixing if system $(X^2, T \times T$) is transitive.
So now I know that for ... | common-pile/stackexchange_filtered |
Validate input is within a numeric range, possibly a float, using express-validator
I'm trying to validate if the input is an integer or a float within a certain range using express-validator. I've tried:
check(
'rating',
'Rating must be a number between 0 and 5'
).isNumeric({ min: 0, max: 5 }),
but the mi... | common-pile/stackexchange_filtered |
Is this is logical fallacy?
"I've always argued P. But in this case, I believe not-P. (Implied conclusion: in this case, not-P)"
One hears it from political commentators and others who think that their own personal system of beliefs is somehow so thoughtfully constructed and coherent that their merely taking the oppo... | common-pile/stackexchange_filtered |
Percent of Total for Categories Within Different Panes
I'm attempting to calculate the percent of total based off the the first column in each pane. However, table calculations only allow a calculation based off the each pane
SUM({ FIXED [Category]:SUM([Number of Records])})/TOTAL(SUM([Number of Records]))
does not pr... | common-pile/stackexchange_filtered |
How many switches?
im designing a network for a small business. There are three departments in the business retail sales - 80 employees, sale support - 10 employees, accounts - 15 employees. I've decided to use star topology. It will have one router connecting to many switches. I was thinking of using multiple 48 port ... | common-pile/stackexchange_filtered |
Zone file: SSL on one sub-domain
I bought an SSL certification for one of my sud-domains. It works perfectly, but when I changed the zone file to clean it up a little, I went into a problem that I still don't understand.
Here is the simplified version of my zone file:
IN A ... | common-pile/stackexchange_filtered |
/usr/local/bin/node: bad option: --expose-debug-as=v8debug
In WebStorm, I have a test01.js:
function test() {
console.log('test')
}
test()
When I run test01.js, I get bellow error in Console:
/usr/local/bin/node --debug-brk=56907 --expose-debug-as=v8debug /Users/Desktop/vue/vuejs-test01/src/test/test01.js
/usr/l... | common-pile/stackexchange_filtered |
Graphql: Difference between the 'input' type and the 'interface' type in graphQL
My understanding of graphql is limited and I'm starting out going through the docs and I see that input types and interfaces (seem) to serve the same purpose to me. (but I don't know much about graphql and didn't find a difference in the d... | common-pile/stackexchange_filtered |
Github REST API - how to retrieve specific lines of codes (code snippet)
I would like to retrieve specific lines of codes via the REST API.
After a user has authorized access by connecting to his github account (via Web Application flow), I'd like to be able to programtically retrieve with the REST API a block of lines... | common-pile/stackexchange_filtered |
Solving non-linear partial differential equation
I would like to solve the following partial differential equation
$$\begin{cases}
u_{x}^{2}+u_{y}^{2} & =\dfrac{(1+\sin u)^{2}}{4a^{2}},\\
u|\varGamma & =0,
\end{cases}$$
where $a\in\mathbb{R}-\{0\}$. The equation can be rewritten to
$$F(x,y,z,p,q)=p^{2}+q^{2}-\frac{(1+\... | common-pile/stackexchange_filtered |
How to fix "Transaction Error. Exception thrown in contract code."
How do I determine what functions aren't implementing? I will paste the code from both the token and crowdsale contract if needed (which I suspect it will be).
Go through the Solidity documentation to understand the syntax and how to import other files... | common-pile/stackexchange_filtered |
CSS help - IE misalignment
In Firefox/Safari/Chrome/Opera - the search bar and 4 sliders (from the page linked above) are all on 1 row.
But in IE 6/7/8, the sliders are on a new row.
Anyone know what's wrong with my CSS for IE 6/7/8 to be creating a cartridge return with the other browsers do not.
Many thanks in advanc... | common-pile/stackexchange_filtered |
Using numcases with cases
I have an equation like so:
\[ \begin{cases}
Eqn1 &= 0,\\
Eqn2 &= 0,
\end{cases} \iff
\begin{cases}
Eqn3 &= 0,\\
Eqn4 &= 0,\\
Eqn5 &= 0.
\end{cases}
\]
This works all nice and good, however, I would like to numerate the "rig... | common-pile/stackexchange_filtered |
As per the beginner tutorial 1, when i try this command (export | grep) in terminal I am getting the following in my terminal
siva@siva-Inspiron-N5110:~$ export | grep ROSdeclare -x ROSLISP_PACKAGE_DIRECTORIES=""
declare -x ROS_DISTRO="hydro"
declare -x ROS_ETC_DIR="/opt/ros/hydro/etc/ros"
declare -x ROS_MASTER_URI="h... | common-pile/stackexchange_filtered |
Javascript glitchy game
I have a game and when you hit the Obs's you get a game over screen. On it has a retry button and it resets it, it works most of the time but after the third or fourth retry it does not reset it. It just keeps it where it is. Why does it do that? Below is the code I used for the reset and a link... | common-pile/stackexchange_filtered |
Ambiguous method overloading for method grails.spring.BeanBuilder#registerBeans
I'm following Mike Kelly's brilliant tutorial videos but I have been stumped by the following problem. It happens when I add a new Domain Class. I've tried backing out changes and adding a DomainClass with a different name, restarting the I... | common-pile/stackexchange_filtered |
Generic Interface inheritance
I have a set of component interfaces
interface ITest<I> {
operator fun invoke(p: I)
}
interface OTest<O> {
operator fun invoke(): O
}
interface IOTest<I, O> {
operator fun invoke(p: I): O
}
and a corresponding functional interface
interface TestAdder<T> {
fun add_f(p: T)... | common-pile/stackexchange_filtered |
How to decode IEX DEEP pcap file
I am trying to decode DEEP data from IEX(the Investors Exchange), which is in pcap form. I am currently working in Python.
I am currently using Scapy to parse pcap file. The problem is that I do not know how to decode the raw load(binary form) into human-readable text.
Here is an examp... | common-pile/stackexchange_filtered |
What permissions are required for app catalog on sharepoint?
Hello exactly what permissions are required to upload apps on a app catalog in sharepoint
https://support.microsoft.com/en-us/office/distribute-an-access-app-in-your-app-catalog-or-the-sharepoint-store-0360b4e8-2767-422c-8edf-5da55b31a394?ui=en-us&rs=en-us&ad... | common-pile/stackexchange_filtered |
ArgoCD: How to not store semi-secret information in manifests?
I'm learning K8s, so bear with me as a noob.
I'm running a single-node K3s cluster at home, and have successfully deployed the traefik/whoami application using the command below, but would like to deploy it via ArgoCD.
cat apps/whoami/whoami.yaml | envsubst... | common-pile/stackexchange_filtered |
Decode public key from address
The process of encoding a public key is very clear and explained here https://en.bitcoin.it/wiki/Technical_background_of_version_1_Bitcoin_addresses
I am looking for the other way around: how to get the public key from an address?
When you send bitcoins to someone you usually use the "rea... | common-pile/stackexchange_filtered |
Best way to rank list of values having overlapping uncertainties
I have a list of individuals and their success rates on a task. The count of tasks for each varies widely, so the uncertainty in the estimates of their proficiency varies. Furthermore, typical estimates for confidence intervals will have a lot of overlap.... | common-pile/stackexchange_filtered |
XP support for SQL Express 2008 R2
I noticed that the SQL Express 2008 R2 does not list Windows XP as a supported operating system. While it seems to work fine, I'd need to be sure that everything is going to work on an XP machine should I deploy R2.
http://www.microsoft.com/downloads/details.aspx?displaylang=en&Famil... | common-pile/stackexchange_filtered |
clang vs gcc: function lookup with operator overloads
in clang vs gcc trunk (as of March 2020) I find strange behaviour in function lookup (can you please educate me on how this is actually called, does it belong to overload resolution?)
when using operators.
#include <vector>
template <typename T>
void blub(std::vec... | common-pile/stackexchange_filtered |
ERROR 1327 (42000): Undeclared variable: /home/lopa/gemeinsamerordner/movies.csv/
Why does that not work?
Its on Ubuntu 20.04 -> mySQL
MariaDB [testdb]> select * from movies into "/home/lopa/gemeinsamerordner/movies.csv/" Fields enclosed by ',' Terminated by ';' Escaped by ',' lines Terminated by '\r\n';
I dont know wh... | common-pile/stackexchange_filtered |
hasClass() starts with string
Is it possible and how do I use hasClass() so that I can search for classes that start with some specified string?
I want to look at multiple classes to see if there exists at least one class that starts with a string.
string: "old"
Is this possible and are you also able to do contains or... | common-pile/stackexchange_filtered |
A complex limit cycle not intersecting the real plane
Edit: This is a real coefficient version of the current post.
Is there a polynomial vector field $X$ with complex coefficients on $\mathbb{C}^2$ with the property quoted bellow?
There is a regular leaf $L$ whose holonomy, along at least one closed curve... | common-pile/stackexchange_filtered |
How to redirect guest to login page using a beforeRequest in Yii 2?
I have a problem. I use a RequestBehavior.php (a modified AccessBehavior.php created by Artem Voitko) created in common\components, but I don't know how to redirect guests to frontend/web/index.php?r=site%2Flogin.
This is the code for RequestBehavior.... | common-pile/stackexchange_filtered |
Trouble connecting to Amazon EC2 over SSH
I'm trying to connect to my EC2 Instances on Amazon. When you connect an error - Permission denied (publickey). Installing cmhod 400 myPem.pem file does not help.
Connection log:
OpenSSH_6.2p2, OSSLShim 0.9.8r 8 Dec 2011 debug1: Reading
configuration data /etc/ssh_config deb... | common-pile/stackexchange_filtered |
How to detect too many messages? [Akka Actors]
Any actor can get too much messages. How to detect such bottleneck?
If it happen then how would look like the CPU usage? Would there be always at least 1 core on 100% usage or not?
In Akka 1.x I could check length of message queue but is it unavailable in 2.x. How to deal ... | common-pile/stackexchange_filtered |
How to use purrr tilde function with multi-line formulas
I would like to use purrr's short-hand formula specification with multi-line formulas.
For example, I would like to repurpose the following formula:
purrr::imap_chr(sample(10), ~ paste0(.y, ": ", .x))
And do the following instead:
purrr::imap_chr(sample(10), ~... | common-pile/stackexchange_filtered |
QTP: Unique browser identificator not related to title?
In my QTP keywrord driven automation, I would like to open browser and then automatically call all functions on that browser. I noticed it does work even when the browser title changes but I am not sure whether its coincidence or not.
I would need to open browser ... | common-pile/stackexchange_filtered |
Get start and end point of opening in Revit
How can I get the start and end point coordinates of openings in Revit? I am trying to divide a wall into panels of certain width and for that if there is an opening, Door or window in between i have to panelize accordingly. As of for now I only wants to get the start and end... | common-pile/stackexchange_filtered |
Changing date from query with PHP
I have a query (written to be easier from a class)
$cms->my_query('SELECT * FROM location');
Which will return an array
Though I have a DATE type in the mySQL Table which it is formatted like so 2014-06-22
Is there a way I can format so it's like this Nov 04 2008 11:45 PM with using... | common-pile/stackexchange_filtered |
Getting specific incremental key values into an array
I have a list which I zipped with indices:
val fun_i_map_e = (list.indices zip list).toMap
Now, I want to get each key's value incremented by num:Int :
for (k<-0 until list.length by num)
for ((k,v) <- fun_i_map_e) {
bufferArray += v}
The idea here is somethi... | common-pile/stackexchange_filtered |
How do I do if statement arithmetic in bash?
I want to do something like this:
if [ $1 % 4 == 0 ]; then
...
But this does not work.
What do I need to do instead?
read n
if ! ((n % 4)); then
echo "$n divisible by 4."
fi
The (( )) operator evaluates expressions as C arithmetic, and has a boolean return.
Hence, (( ... | common-pile/stackexchange_filtered |
Synchronized keyword and static classes in java
I was reading a threading tutorial that’s originally from (I believe) the IBM developerworks site. In it they talked about the synchronized keyword and how a synchronized block of code is locked by the actual object, not the block of code itself.
For instance, in the c... | common-pile/stackexchange_filtered |
opening older 9.x Esri .gdb in QGIS?
I want to open an Esri .gdb with QGIS. I have adjusted GDAL and it works fine with an example .gdb provided on another thread on the topic. I still cannot open the .gdb of interest to me and suspect it is because it may not be a 10.something gdb, but probably an older .gdb file vers... | common-pile/stackexchange_filtered |
How to make Django work with unsupported MySQL drivers such as gevent-mysql or Concurrence's MySQL driver?
I'm interested in running Django on an async framework like Concurrence or gevent. Both frameworks come with its own async MySQL driver.
Problem is Django only officially supports MySQLdb. What do I need to do to ... | common-pile/stackexchange_filtered |
CakePHP – Database structure and models
I'm building my very first and simple app, but because I'm new to web-development I have some questions on how to properly organize my DB structure (and models).
One of my pages is an actor filmography so I need to display:
Year, director, description etc. And also I need to disp... | common-pile/stackexchange_filtered |
Fantasy Book about a boy landing in a weird afterlife
I remember a book (all text) about a boy that died (perhaps in a train accident) and woke up in a weird afterlife.
Someone "printed" a calendar on his arm to remind him of a date when he will have to decide to either follow the weird man in what was supposed to be a... | common-pile/stackexchange_filtered |
Diff two CSVs by specific columns, output matching rows
I am comparing two CSV files. I need to know which rows match by comparing specific columns. The output needs to be the rows that match.
Data:
CSV 1:
name, age, occupation
Alice,51,accountant
John,23,driver
Peter,32,plumber
Jose,50,doctor
CSV 2:
name, age, occupa... | common-pile/stackexchange_filtered |
SELECT statement returning count rather than result set with ActiveRecord::Base.connection.execute
When I perform the following query using
Post.connection.execute "SELECT id FROM posts WHERE id in ('123')" # => 0
I get the result 0 instead of an empty record set [] like I would expect
Why could this be happening?... | common-pile/stackexchange_filtered |
Show google chart calendar by year DESC
I am using Google Calendar Chart and I would like to show the 2015 chart first and then 2014, 2013, and so on.
In the example from the google: https://developers.google.com/chart/interactive/docs/gallery/calendar there is no option to do this, even if I put the data in that orde... | common-pile/stackexchange_filtered |
Are residually finite, perfect groups residually alternating?
Dear all,
I am interested in residually finite, perfect groups. Are all of them known to be residually alternating? If not, how could one construct a counterexample?
A group $G$ is residually alternating if for every $g \in G$ there exists a finite alternati... | common-pile/stackexchange_filtered |
My Fwrite wont work or it seems like my FILE wont work in Dev c++
here is my code in my code I don't see the list outcome when I add some records in my file_pointer it seems like the fwrite doesn't work pretty well or there is some sort if mistake in my code and also when I put an add records then i tried to list it it... | common-pile/stackexchange_filtered |
Can you make a search box using information from a stored procedure?
I have made a search box using data from a table, but I am wondering if it was possible to do the same from a stored procedure. As my assignment says "here is no direct access to the database tables allowed"
Does this answer your question? Return MyS... | common-pile/stackexchange_filtered |
file locking problems with recent Samba versions (from DOS/Clipper under XP)
we have several DOS applications (Clipper) which share dbase files on a file server. The applications run under XP. This has worked for about two decades with Netware and for years with Samba (member server) without problems.
Some weeks ago I ... | common-pile/stackexchange_filtered |
Why Sarah was angry to Abraham about Hagar
Why Sarah blamed Abraham when it was she who suggested to Abraham to take Hagar? I find Sarah's anger here to be unreasonable when it was her fault in the first place.
I'm looking forward to seeing any answer to this question, because if anyone can answer it I have a few more... | common-pile/stackexchange_filtered |
why can't I initialize the array like this?
#include<stdio.h>
main() {
int a=5;
int array[a]={0};
printf("Success\n");
}
when i am executing the program it will through a error as
b.c: In function ‘main’:
b.c:8:1: error: variable-sized object may not be initialized
b.c:8:1: warning: excess elements in array in... | common-pile/stackexchange_filtered |
Expo - APK bundle must contain the expected embedded asset
I'm new on react, and i tried to run my app but i got this following error
E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.bits.bee.bwc, PID: 12601
java.lang.AssertionError: APK bundle must contain the expected embedded asset asset_c2f3d742a18a2823... | common-pile/stackexchange_filtered |
Angular UI Bootstrap Typeahead ignore field
I am using Angular UI-Bootstrap's typeahead
<input type="text" name="recipient" id="recipient" placeholder="Friend's name or username"
autofocus="autofocus"
class="form-control"
ng-model="payment.recipient"
typeahead="friend.username for friend in friends | filter:$viewVa... | common-pile/stackexchange_filtered |
We should remove the "Badges" link from here
Since we don't have badges on this site.
there will be badges on meta-so
So make that an answer so I can accept it. :)
close? (no longer relevant)
puts on the joke hat
Ok, ill get right on it. Gimme a sec.
Here, how does this look.
But yes I agree.
EDIT:
I read somewhere... | common-pile/stackexchange_filtered |
Is this a valid compiler optimization?
Compiler: Visual C++ 2012 RTM
Bug or not?: https://connect.microsoft.com/VisualStudio/feedback/details/763601/visual-c-2012-rtm-serious-compiler-bug
To me it seems weird it would inline calling test() into the second std::cout statement.
You should post the actual question here, ... | common-pile/stackexchange_filtered |
ContourPlot with BarLegend: vector format export problem
I have a couture plot which I want to export in vector format (e.g.PDF) and use in my latex. The example code from here:
plot = ContourPlot[Sin[x + y^2], {x, -3, 3}, {y, -2, 2},
Contours -> 8, BoundaryStyle -> Black,
PlotLegends ->
Placed[BarLegend[Auto... | common-pile/stackexchange_filtered |
Cannot login to heroku using cmd due to error with proxy
I'm following the Node.js Getting Started section of the Heroku docs, and when I true to run heroku login, it displays:
Post https://api.heroku.com/login: http: error connecting to proxy https://proxy.server.com:3000: dial tcp: lookup proxy.server.com: getaddrinf... | common-pile/stackexchange_filtered |
WSO2: Can't store JSON data in mongo "column" using REST. Works for SOAP. ERROR - GsonXMLStreamReader Value type miss match, Expected value type - ' '
I am trying to store some data into a MongoDB. Two of the fields are to store parts of a message, as some sort of a log.
When defining a dataservice I am asked to defin... | common-pile/stackexchange_filtered |
how to solve this apache tile config problem
hello i have made an webapp based this course
apache Tiles
but it gives error when creating a beans of TilesConfig.java
also it is my app source
app file
and my log file
> Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 2.708 s <<< FAILURE! - in com.cafe2.web... | common-pile/stackexchange_filtered |
PDE Book For Self Study
I am a senior high school student from Turkey, I would like to buy a PDE textbook for self-study, as I want to pursue a career in pure mathematics so I would like a textbook that is proof intensive and rigorous instead of one focused an applications and numerical algorithms. My prequistes includ... | common-pile/stackexchange_filtered |
ionic 3 : Facebookconnect.xml not found error, during ionic nuild --prod --release
I am trying to build my ionic app for Android using this command :
ionic cordova build --prod --release
But i always get this error :
config file res/values/facebookconnect.xml requested for changes not found at mobile-v4\platforms\andr... | common-pile/stackexchange_filtered |
blank page with iis7 when using .NET 4.0
i am having strange problem, when i change the default app pool to use .Net 4.0 from .Net 2.0 i get blank page with no HTML, strangely enough i have VS 2010 installed with Net4.0
thanks in adavanced
This happens when you've deployed this application to a server?
no
just local... | common-pile/stackexchange_filtered |
How do I sum a table by row and by column in excel?
I have data that looks like this:
10
11
12
A
row
row
row
B
row
row
row
C
row
row
row
I want to sum the values in the cells if the row starts "A" and the column header is less than 12. I tried using SUMIFS, but it keeps giving me a value error. Thanks!... | common-pile/stackexchange_filtered |
how do i know if a midrash is an allegory
There are midrashim which are clearly allegories, like the midrash that hashem wears tefilin.
How do I know if a midrash is an allegory or kipshuto?
Can I explain a midrash which looks like pshat in an allegorial way?
Duplicate? http://judaism.stackexchange.com/q/13003 (though... | common-pile/stackexchange_filtered |
how can interference occur within diffraction?
My book says :
The number of interference fringes occuring in the broad diffraction peak depends on the ratio d/a that is the ratio of the distance between the two slits to the width of a slit. In the limit of "a" becoming very small, the diffraction pattern will become ... | common-pile/stackexchange_filtered |
How to determine if a deps should be put into 'devDependencies' or 'peerDependencies'
When you have a dependency that is going to install into current project or a NPM package, it is easy to determine if it is a 'deps' or a 'devDeps', but how to determine if it is a 'deps' or a 'peerDeps'?
I try to answer this questio... | common-pile/stackexchange_filtered |
How to pass a Data Flow Parameter in Key Column in Sink Tanformation while updating a data?
I am implementing SCD Type2 through Data Flow. I having created a Parameter in it where I will pass a column name and this Parameter I am using in Sink Transformation in Key Column.
Passing a parameter in Key Column in Data Flow... | common-pile/stackexchange_filtered |
Defining a calculation-reversing function in the lambda calculus
Obviously, lambda calculus functions are not in general invertible. That is, there is no lambda function $V$ (for inVerse) such that
$$
(V\; A)\; (A\; B) \to B
$$
for every $A$ and $B$ such that $(A\; B)$ can be reduced to normal form. (The arrow means th... | common-pile/stackexchange_filtered |
Smell of a Body
There's many fictional and nonfictional stories about passerby detecting dead bodies inside buildings and such by an "overwhelming stench of decay" or something equivalent, usually even through thick walls or from separate houses. But the total mass of a human is somewhat less than the mass in an averag... | common-pile/stackexchange_filtered |
Use v-for of number to load multiple <img>
I have an index.vue page that sends title (string) and picCount(number) to ShowPics.vue components.
I have multiple pics in assets\pics\gilmore_girls\ , like pic attached
assets\pics\gilmore_girls\
Here's index.vue:
<template>
<ShowPics
:title="routeName"
:picCo... | common-pile/stackexchange_filtered |
Golang Net.IP to IPv6 (from MySQL) as Decimal(39,0) Conversion?
I have a database that stores IPv4 and IPv6 addresses as decimal(39,0). I need to convert a Golang Net.IP to this format. I have done it for IPv4 as follows:
func ipv4ToInt(IPv4Addr net.IP) int64 {
bits := strings.Split(IPv4Addr.String(), ".")
b0,... | common-pile/stackexchange_filtered |
Trying to retrieve a file from another computer on same network
I am trying to copy an image file from a computer on the same network as mine, but running into an exception.
I am running as aspnet core app on a Raspberry Pi. The computer with the image is an android device on the same network.
The address of the image... | common-pile/stackexchange_filtered |
What to do when question after some time starts to contain the answer?
I didn't know how to express the situation shortly in the title, but the problem I have is:
This question is not a question anymore, because solution that OP tried (and said it doesn't work) clearly works now. I think it might have changed over time... | common-pile/stackexchange_filtered |
Arte there any free alternatives to packages "translate" and "translateR"?
Both have been removed from CRAN and I can't get the archived versions because of a problem with devtools.
You don't have to use devtools to install archived packages. You can download them straight from CRAN and use install.packages() pointing... | common-pile/stackexchange_filtered |
Was cost the only reason why demo cartridge games weren't produced?
I was reading on this page about the Final Fantasy demo cartridge, and I wondered why more cartridge games didn't have demos.
From this wiki page:
The availability of demos varies between formats. Systems that use
cartridges typically did not have ... | common-pile/stackexchange_filtered |
Anyone know why two servers show different packages available with yum
I have two servers with CentOS 7.3 but
Server 1
[root@frontalb]# cat /etc/*release
CentOS Linux release 7.3.1611 (Core)
NAME="CentOS Linux"
VERSION="7 (Core)"
ID="centos"
ID_LIKE="rhel fedora"
VERSION_ID="7"
PRETTY_NAME="CentOS Linux 7 (Core)"
ANS... | common-pile/stackexchange_filtered |
SSRS: field shows correct in query but wrong in report preview
I have the following query:
SELECT TOP ( 10 )
EMPLOYEE ,
NAME ,
SUM(QTYFINISHED) AS QTY ,
SUM(HOURS) AS REALTIME ,
SUM(PROCESSTIME * QTYFINISHED / PROCESSQTY / 60) AS CALCTIME ,
SUM(PROCESSTIME * QTYFINISHED /... | common-pile/stackexchange_filtered |
Nuxt3 generate static list data, and also with ClientOnly funcationality for fetching extra statistical data in real time?
1, I have a component cat-[catagory]-[page].vue, for different catagories products, driven by dynamic Nuxt route
2, In the cat-[catagory]-[page].vue component, I have another component productslist... | common-pile/stackexchange_filtered |
Need to initialize a static final field in the subclasses
I asked a question, but it was very dirty, and a lot of people didn't understand. So, I need to declare a final static field, that is only going to be initialized in the subclasses. I'll show an example:
public class Job {
public static final String NAME;
}
... | common-pile/stackexchange_filtered |
concatenate() missing 1 required positional argument: 'inputs'
I want to create a multi-input CNN using three imported networks. However i don't fully understand the error below. Shouldn't the keras functional api recognize the input layers in the imported networks ?
import tensorflow.keras
import tensorflow as tf
from... | common-pile/stackexchange_filtered |
No audio in Overwatch for Xbox One
When I launched Overwatch there was no sound. I couldn't hear Winston's speech or any other audio in game. When I was in another game just before that I had audio, when I launched another game I had audio, and on the xbox menus I have audio. All of my sound settings are set to 100 and... | common-pile/stackexchange_filtered |
proportion Div and text
I would like to know how I can proportion image and text inside a div. lets say I have a div that is 8 inches by 7 inches (scale down to fit inside container width: 490px; height: 500px;) what I want to do is resize the images and text using inches instead of "px" and I want he text and image t... | common-pile/stackexchange_filtered |
Run Zopfli on middleman after build
We have a Middleman setup, and after is finishes parsing our assets, we want it to compress them using Zopfli.
We have tried adding a Node post-process, using the app.after_build hook, but when we run it, we get a 'run node-zopfli from "."'
This is the code we have right now:
class ... | common-pile/stackexchange_filtered |
Parsing Google Reader Data
Hey guys, So I am very new to the Objective-C realm and even newer to the stadium of programming internet connections. I am trying to work on a RSS reader app and have been able to set up a decent NSXMLParser and such to parse the XML feeds. I then wanted to add the ability to tie into Googl... | common-pile/stackexchange_filtered |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.