text stringlengths 70 452k | dataset stringclasses 2
values |
|---|---|
MacOS 12.6 Numbers version 12.1 (7034.0.86) Day function in vlookup function
I am attempting to use the calendar spreadsheet provide as a template with Numbers. In the month section there are dates in the even rows and large cells in the corresponding odd rows for whatever text you might want to enter.
In cell C10 is t... | common-pile/stackexchange_filtered |
Geotools vector grid not showing
I am working on a Maps Application using geotools, but since recently my grid layer stopped showing for no reason !
There is a WMS map representing the earth, and a FeatureLayer representing a grid with 10° squares (Geographic WGS84).
Here is my code to initialize my mapcontent. For the... | common-pile/stackexchange_filtered |
HTML5 check if audio is playing?
What's the javascript api for checking if an html5 audio element is currently playing?
See related: http://stackoverflow.com/questions/6877403/how-to-tell-if-a-video-element-is-currently-playing
function isPlaying(audioEl) {
return !audioEl.paused;
}
The Audio tag has a paused prop... | common-pile/stackexchange_filtered |
I lost the down arrow icon for the "Next Change" in my VSCode toolbar -- how do I get it back?
My git diff window in VSCode used to show an up-arrow icon (Previous Change) and a down-arrow icon (Next Change) in the toolbar.
I somehow recently lost just the down-arrow, and I can't figure out how to get it back. The "Ne... | common-pile/stackexchange_filtered |
do.call rbind of data.table depends on location of NA
Consider this
do.call(rbind, list(data.table(x=1, b='x'),data.table(x=1, b=NA)))
returns
x b
1: 1 x
2: 1 NA
but
do.call(rbind, list(data.table(x=1, b=NA),data.table(x=1, b='x')))
returns
x b
1: 1 NA
2: 1 NA
How can i force the first behavior, without re... | common-pile/stackexchange_filtered |
Auth::attempt not working in Laravel 5.2
I want to check login with Laravel 5.2 Authentication.
In <5.2 I was worked this much easier and its now not working...
here is my code...
Iwas maked the tables without through migration...
The values are inserted like below...
Controller...
public function DoLogin(){
$use... | common-pile/stackexchange_filtered |
How are you monitoring in version 0.11 of Kafka?
I registered the issue with Github, but I could not get the answer I wanted, so I asked here.
( https://github.com/Morningstar/kafka-offset-monitor/issues/12 )
If you are running Kafka in version 0.11, I am wondering how you are monitoring.
I want to monitor the system ... | common-pile/stackexchange_filtered |
How to solve json/json.h: No such file or directory?
I've this problem:
when I try to compile my program, doing make command, I see the following error:
fatal error: json/json.h: No such file or directory
21 | #include <json/json.h>
I installed the json library throught the command sudo apt-get install -y libjson-... | common-pile/stackexchange_filtered |
Are email addresses ending with .com different from those ending with .com.[country_code]
I recently realiased a change of the email address of a someone I have been emailing for ages. Her email address used to be like<EMAIL_ADDRESS>Now Gmail cannot deliver the email and the email address should be<EMAIL_ADDRESS>She sa... | common-pile/stackexchange_filtered |
Firestore calls the data Twice
I am trying to call document and apply to recycler view, but in the recycler view, the items are double. I have checked other questions as well, but am sure its related to mine.
Here is the code
private void loadData() {
productList.clear();
firestore.collection("Products").orderBy("o... | common-pile/stackexchange_filtered |
TFS express edition - installing on a server or local machine?
This is how we have TFS express edition set up among 5 developers. We have our lead programmer install TFS 2012 Express edition on his machine. That comes with an install of SQL Server Express 2012 editions. Remaining 4 developers also install TFS Express a... | common-pile/stackexchange_filtered |
Problems importing packages on Circle Ci Golang
I am using Circle CI to test my project. The project is a simple Go application consisting of a few packages and a main.go file. When referencing packages within my project I simply import them as "projectName/packageName" in the code. This works fine locally, however, wh... | common-pile/stackexchange_filtered |
Can you add a child component while within a JSF Renderer
I would like to add a child component while inside of the encodeBegin
public void encodeBegin(FacesContext context,
UIComponent component)
throws IOException {
XspInputText xip = new XspInputText();
ViewPickList vplComponent = (ViewPickList) compon... | common-pile/stackexchange_filtered |
PHP Image Resizing Does NOT Resize In Internet Explorer
I am having a very interesting problem. The script I wrote below works, but it doesn't work in Internet Explorer. The MAX_WIDTH variable is set to 450 and it still uploads the image with the original dimensions of the image, not 450 by whatever the conversion fact... | common-pile/stackexchange_filtered |
How to copy a custom function from a excel file
I have a excel file and it has a custom function to do some calculation. I want to know how can I get that custom function or copy it to another excel file.
If it helps, this is the excel file in question. It has a function tastytrade_price_call. I want to copy it to anot... | common-pile/stackexchange_filtered |
Debugging what has been submitted in a form
I would like to like to be able to print out what has been submitted in my form in the submission form. How can I achieve this?
Is this a form created yourself, or do you want to hook into a form defined in another module? Is this for debugging purposes, or do you actually w... | common-pile/stackexchange_filtered |
SSIS Connection to Excel via ACE.OLEDB as Service Account
We have a process which needs to work with a series of Excel (sigh) files.
The setup is:
SQL agent job run as a SSIS proxy account.
Calls SSIS package on a share on the server.
Which then starts accessing these excel files using the ACE driver.
The process will... | common-pile/stackexchange_filtered |
Passing the id via req.params.id Vs req.body.id
so i started learning backend recently, with node/expres.
Im building a small REST API for learning purposes, with the following routes:
GET /api/products >> to display a list of products
GET /api/cart >> to display list of items inside the cart
DELETE /api/cart/:id >> t... | common-pile/stackexchange_filtered |
Why Wild Cards can't be used in generic class & method declaration?
Declaration like this :
class A<X extends Number & List> { }
is allowed.Whereas declaration like this is not allowed.
class A<? extends Number & List> { }
Is there any logical explanation about why Java restricts us to do that?
& what's the ac... | common-pile/stackexchange_filtered |
Notation for Conditional Expectation
I am kind of confused by the notations of conditional expectation.
Let $(\Omega, \mathcal F,\mathbb P)$ be the given probability space, $X$ be a random variable and $A \in \mathcal F$.
I am confused with the notation $E[X|A]=\frac{\int_AXd\mathbb P}{\mathbb P(A)}$ since $E[X|A] \ne... | common-pile/stackexchange_filtered |
Sometime webdriver finds the element but sometime for the same xpath it gives nosuchelement exception
I created a test script in which i want to click a edit button and then close the window. Most of the time the code works as expected but some time for the same code i gets nosuchelement exception. I went through the s... | common-pile/stackexchange_filtered |
How do I get rid of buzzing sound while watching Youtube?
So, I'm running Ubuntu 12.04.1 on my iMac G5 and I think I have Gnash installed as a Flash player. The videos on Youtube load fine even though Mozilla tells me from time to time that I need a Flash plugin, I get video image just fine but as for the sound it's al... | common-pile/stackexchange_filtered |
Google Nearby not working on Android Things by default
I'm developing an Android Things application on the iMX7D development board and I have implemented Google's Nearby services. The issue I have is that I get an error (sometimes) when I begin advertising the device. Here is the error:
com.google.android.gms.common.a... | common-pile/stackexchange_filtered |
Python3 - "ValueError: not enough values to unpack (expected 3, got 1)"
I'm very new to Python and programming overall, so if I seem to struggle to understand you, please bear with me.
I'm reading "Learn Python 3 the Hard Way", and I'm having trouble with exercise 23.
I copied the code to my text editor and ended up wi... | common-pile/stackexchange_filtered |
Django template decoupling : cant access to the static files outside of Django project
My app is decoupled between APIs and templates. I want to know the way to communicate the APIs to templates.
I know I can pull all the static files into API repo by python manage.py collectstatic , but I dont want to couple APIs and ... | common-pile/stackexchange_filtered |
DirectX3D 11 enumerating devices
I would like to write a program that lists all DirectX3D applications running on a Windows System and displaying the resources they use. I know how to enumerate the adapters using the IDXGIFactory interface and the adapter outputs via the IDXGIAdapter interface. I also know how to find ... | common-pile/stackexchange_filtered |
Size-related point in QGIS
I want to map the absolute increase/decrease of the population of a city. The amount of people that increased/decreased is represented by a size-related point. If it's negative I want to have it in blue, if it's positive I want to have it in red.
Does someone knows how I should do ? It shoul... | common-pile/stackexchange_filtered |
How to effeciently find and parse last line of text from a log file via PowerShell?
I have a very large log file. I need to find out the last "WARN" line in that file effeciently (ie: read from the end), parse it, and return it as an object with "Date" field (DateTime type), "Level" field, and "Description" field
Any ... | common-pile/stackexchange_filtered |
Why does collision detection work in editor but not in android build? (AR Foundation)
I am building an augmented reality app using ar foundation. I need to detect a collision between two cubes. The cubes both have a box collider and a rigid body attached to them. When I run the scene in the editor everything works fine... | common-pile/stackexchange_filtered |
How to convert the CSV into JSON?
I need to convert the csv data into json value.
My CSV Data like below.
aa cc dd ee ff
cc dd ff gg hh ll mm nn oo pp
H1 "null" H3 "null" H5 H6 H7
c1 c2 c3
c4 c5 c6 c7 c8 c9 c10 c11 c12
i need to get the "H1" row data only it may contain some null columns which is in csv f... | common-pile/stackexchange_filtered |
How do I use SIFT in OpenCV 3.0 with c++?
I have OpenCV 3.0, and I have compiled & installed it with the opencv_contrib module so that's not a problem. Unfortunately the examples from previous versions do not work with the current one, and so although this question has already been asked more than once I would like a m... | common-pile/stackexchange_filtered |
Azure redirects to azure test site
my website which is hosted on Azure, redirects to the Azure test site link when I click a link.
For example, my website is http://www.williampross.com. When I click on a link it goes to the Azure test site like: http://wpr.azurewebsites.net/programming-books/
I want it to go to main U... | common-pile/stackexchange_filtered |
Trigger tab with data-toggle and href
I have the tab-based page with a first tab open when the page is loaded.
The problem is that I want to create a link to open and scroll to some of the other tabs.
Here is the Tab code:
<li><a href="#advantages" class="tab-link" role="tab" data-toggle="tab">ADVANTAGES</a></li>
It w... | common-pile/stackexchange_filtered |
Invert a List of Character Vectors in R
What is an efficient way from inverting a list of character vectors as shown below?
Input
lov <- list(v1=c("a", "b"), v2=c("a", "c"), v3=c("a"))
Expected
list(a=c("v1", "v2", "v3"), b=c("v1"), c=c("v2"))
Similar to Revert list structure, but involving vectors:
We can either ... | common-pile/stackexchange_filtered |
Maven Build failure with Cannot find Symbol: class error
I had a working project, when i uploaded into Github, but now when I import that into another system, it shows build failure.
The project was uploaded from Win10 and now I am importing it to Mac. It is a very basic project for Maven, and I know there is some very... | common-pile/stackexchange_filtered |
select OnChange not working within a form
I'm still relatively new to all this so please bear with my hackjob code. I'm attempting to use JavaScript to toggle the visibility of a div on my webpage once the value of a dropdown menu is changed. For some odd reason, it is not working and I have exhausted every solution I ... | common-pile/stackexchange_filtered |
How to set up the start of the document like this ? (noob here)
noob here.
I would like to ask you how to make the opening page of the document look like the following picture ? I think everything else would be doable for me without any help as there's only sections, bolds/italics and so forth, the basic stuff. I start... | common-pile/stackexchange_filtered |
How to get value of a button type button with jQuery?
I use instead of
I simply wish to get the value/content of the selected/active button, with jQuery, on click button and onload page.
These are my buttons:
<button type="button" class="green test">Button 1</button>
<button type="button" class="green active test">Bu... | common-pile/stackexchange_filtered |
JBoss AS 7 Log4j in webapplication not change log level
Here is content of files
classes/log4j.properties
log4j.rootCategory=DEBUG, stdout
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d %p [%c] - <%m>%... | common-pile/stackexchange_filtered |
Dedicated NVidia GPU is not running when playing games on Ubuntu 20.04
So I've got myself a new ASUS TUF Gaming FX705DT and absolutely want to avoid installing Windows 10. I installed Ubuntu 20.04. Had a minor problem with the Wi-Fi driver, installed steam and War Thunder through it. I ran the game with nouveau and it ... | common-pile/stackexchange_filtered |
Manipulate Object with JS
I have this object:
const data = {
Jan: [{product: 'Shirt', num: '13'}, {product: 'Shoes', num: '15'}],
Feb: [{product: 'Shirt', num: '22'}, {product: 'Shoes', num: '1'}],
Mar: [{product: 'Shirt', num: '15'}, {product: 'Shoes', num: '25'}]
}
I need to create another object that lo... | common-pile/stackexchange_filtered |
Should I use NFC, RFID or something else?
I'm a web developer - so IoT is not my speciality at all - and I've been asked to find the cheapest and most efficient way (in this order of priority) to build a gizmo for a sport event (can't be more specific).
This is how it should work :
A Competitor wear a wristband carry... | common-pile/stackexchange_filtered |
that and where difference
Would you mind explaining me which one is the correct one in following sentences.
The place where we held the dinner last time was small and smelly.
The place that we held the dinner last time was small and smelly.
Generally, with places use "where". With things, "The food that they ... | common-pile/stackexchange_filtered |
No Voltage on IR21844S HIGH OUTPUT (HO) pin
I need help, please.
my IR21844S was working when SD (ShutDown active Low) is powered with High logic level (5V) and Vin with Low logic level (0V), IR21844S Low Side(LO) = Vcc Voltage and IR21844S High Side(HO) = 0V which "was" Correct. and...
When both SD (ShutDown active ... | common-pile/stackexchange_filtered |
Does Breeze js care what version of Json OData you are using?
I was wondering if Breeze js requires the use of Json verbose (Version 2.0) or light(Version 3.0), or if it can except both of these Odata versions of Json. Is one safer to use that the other? Also, is it posible to consume Atom OData (Just curious, not usin... | common-pile/stackexchange_filtered |
An issue when authorizing Facebook pages in Bot Framework
The issue originates from the bot framework itself, when I add a new Facebook channel for the first time everything works as expected, what I am trying to do is connecting multiple FB pages to the same bot, I read somewhere that you can do this by re-entering th... | common-pile/stackexchange_filtered |
Is a particular meaning of "to decline" missing a noun?
When I check with the net about to decline, I see a number of verbs with various meanings. At the same place, I can also see a number of nouns corresponding to them.
to decline: to grow smaller has a decline: a change toward something smaller or lower
However, #9 ... | common-pile/stackexchange_filtered |
iPhone Objective C - error: pointer value used where a floating point value was expected
I do not understand why i am getting this error. Here is the related code:
Photo.h
#import <CoreData/CoreData.h>
@class Person;
@interface Photo : NSManagedObject
{
}
@property (nonatomic, retain) NSData * imageData;
@propert... | common-pile/stackexchange_filtered |
How to crop UIImage with fixed dimensions?
I have an uiimage with dimensions (0,0,320,460)
How to crop this image to a dimension (10,30,300,300)
Set the bounds to 10, 30, 300, 300 + clipToBounds.
Target size in my code is always set to the full screen size of the device (so you have to change it).
@implementation UII... | common-pile/stackexchange_filtered |
Hibernate can't read many to many mapping
I have a many to many mapping: users and rooms, as follow:
User.java
@Entity
@Table(name="users", indexes = {
@Index(unique=true, columnList="uid"),
@Index(unique=true, columnList="backendAccessToken"),
@Index(columnList="backendAccessToken", name="idx_b... | common-pile/stackexchange_filtered |
How to get autocomplete and suggestions in Jupyter Notebook in VS Code?
I'm trying to code on Jupyter Notebook on VS Code, but there are no code suggestions nor syntax highlighting!
I am currently running python 3.10.
Install this extension copy and search in extension ms-toolsai.jupyter
If suggestion not show then... | common-pile/stackexchange_filtered |
How to properly translate the key phrase of Erdoğan's 2016 letter to Putin, "kusura bakmasınlar," to Russian
My question is this: What is the proper or most usual/standard way to translate the Turkish common phrase "kusura bakmasınlar" to Russian?
Let me now explain why I got interested as well as the meaning and usage... | common-pile/stackexchange_filtered |
StackOverflow error in Spring Integration LoggingHandler
I'm facing some weird stackoverflow error issue with no much details thrown by org.springframework.integration.handler.LoggingHandler. This is happening just after termination of flow.
Does anyone have any idea what can be the reason behind what's causing it?
{}2... | common-pile/stackexchange_filtered |
turn off Cocos2D verbose logging
I just upgraded to cocos 2.1, and am seeing a ridiculous amount of logging to the console, such as:
2013-09-18 23:15:38.120 Notes and Clefs[842:907] cocos2d: deallocing <CCSprite = 0x1182aa0 | Rect = (816.00,640.00,32.00,64.00) | tag = -1 | atlasIndex = -1>
2013-09-18 23:15:38.121 Notes... | common-pile/stackexchange_filtered |
Why add vodka to batter for frying fish?
At 4:46 in this video, Heston Blumenthal adds vodka to the batter for fried fish. This article in Robb Report also describes the process:
The star chef begins his experiment in an elevated way. He’s not using cod or halibut. No, no, no. This is a three-Michelin-star chef, so he... | common-pile/stackexchange_filtered |
Arrange values within a specific group
I'm trying to arrange values in decreasing order within a exact group in a nested dataframe. My input data looks like this. I've got two grouping variables (group1 and group2) and three values (i.e. id, value2, value3).
library(tidyverse)
set.seed(1234)
df <- tibble(group1 = ... | common-pile/stackexchange_filtered |
SCJP exam: Handle Exceptions
I'm studying for Java Programmer Certification (SCJP) exam. A question about exceptions, when handle exceptions is it best to handle a specific exception like NumberFormatException or catch all exceptions use the parent Exception class?
Base on my course unchecked exceptions are basically a... | common-pile/stackexchange_filtered |
TinyMCE 4 and image url's
I'm storing all of my images / videos above webroot, which means that the image is not found in the editor and it wont render. This is a problem. To display an image from the webroot, I have a function that is accessed like this: http:://mytestsite.com/getImage/k=generated_hash&photo=myphoto.j... | common-pile/stackexchange_filtered |
How to configure Ebean to generate SQLite code
I am using Play Framework 2.3.4 with Ebean and I am trying to use SQLite to persist the data on my application. When I try to run the application, I get this error:
[SQLITE_ERROR] SQL error or missing database (table address already exists)
[ERROR:1, SQLSTATE:null], while ... | common-pile/stackexchange_filtered |
How to get --color output when using webpack-dev-middleware?
I have an express API I'm using in my app so I am using webpack-dev-middleware and webpack-hot-middleware.
I'm trying to figure out how to get the webpack --color option when I use webpack through the API.
This is what I have right now:
const webpack = requir... | common-pile/stackexchange_filtered |
DateTime.Compare how to check if a date is less than 30 days old?
I'm trying to work out if an account expires in less than 30 days. Am I using DateTime Compare correctly?
if (DateTime.Compare(expiryDate, now) < 30)
{
matchFound = true;
}
Am I using DateTime Compare correctly?
No. Compare only offers informat... | common-pile/stackexchange_filtered |
How to find an element with the minimum number of steps
How can I count the minimum steps to get to a specific index counting forward and backward?
The list is:
content = [1, 2, 3, 4, 5]
If I start from index 0 and want to know how many steps to get to the number 4 iterating forwards I'll get 3, because:
#0 #1 #2 #3
[... | common-pile/stackexchange_filtered |
ASP.NET runtime error: Could not load file assembly 'System.Security.Cryptography.Algorithms
Full error:
Severity Code Description Project File Line Suppression State
Warning C:\Users\jmatson\Source\Repos\Web-IT-Spark-CICD\SparkIdeaGenerator\Main.aspx:
ASP.NET runtime error: Could not load file or... | common-pile/stackexchange_filtered |
New Cisco SG350X changing config of SG500 switches
We have about 20 Cisco SG500 Switches in our network configured with various VLANs, trunks, ports etc.
We recently needed to install additional network capacity so purchased some SG350X switches as the SG500s are end-of-life.
Whilst getting the SG350X configured and re... | common-pile/stackexchange_filtered |
iOS access file with data protection after user locks a device
I have a thread that keeps running in background after the device is locked.
I have some files on the application and they are protected with NSFileProtectionComplete
How can I access the files after the user locks the device(after the 10 secs)?
Not the so... | common-pile/stackexchange_filtered |
Client moves only when im the host
I have a Player (the client) with a Network Identity, Network Transform and Network Rigidbody 2D all checked with client authority.
I want to apply force to the rigidbody in the server, but the command (CmdAddForce) only works when im the host, when im the client the command dont exec... | common-pile/stackexchange_filtered |
Installed Ubuntu and now eclipse wont work
I have just install ubuntu on my laptop as a dual boot. I also install Eclipse but can't get any of my java programs to work. The error message is below. Any help would be appreciated.
Exception in thread "main" java.lang.UnsupportedClassVersionError: SquareRootTest : Unsuppor... | common-pile/stackexchange_filtered |
Double Click Event - Multiple Ranges
I'm looking for the best way to code in multiple ranges for my double click event.
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Not Intersect(Target, Range("A3:A25")) Is Nothing Then
'code
End If
End Sub
As you see above, when A3 to A25... | common-pile/stackexchange_filtered |
Train and test split data with features
Load the Iris dataset from sklearn. Split the dataset into training and testing parts. Pick 2 of the 4 features.
I write this code:
from sklearn.datasets import load_iris
from sklearn.model_selection import train_test_split
iris = load_iris()
X, y = iris.data, iris.target
X_trai... | common-pile/stackexchange_filtered |
petset on GKE: could not find the requested resource
I want to experiment with PetSet on GKE.
I have a 1.3.5 Kubernetes cluster on GKE, but PetSet does not seem to be activated.
> kubectl get petset
Unable to list "petsets": the server could not find the requested resource
Do I need to activate v1alpha1 feature... | common-pile/stackexchange_filtered |
Cannot open ip camera with opencv4.1.0-openvino on respberry pi 4
I need to access video stream from AXIS M1125 Network Camera with my raspberry pi 4.
I have a code that works on my laptop and raspberry pi 3. I use opencv 4.1 which comes in openvino distribution for raspbian.
camera = cv2.VideoCapture('http://<IP_ADDR... | common-pile/stackexchange_filtered |
How to solve the heat equation for compound materials with different heat conductivities numerically?
I'm solving the heat equation with time dependent boundary conditions numerically in a 2D system using the ADI scheme. For the purpose of this question, let's assume a constant heat conductivity and assume a 1D system,... | common-pile/stackexchange_filtered |
CSS: td tag removed from table, a little space remains
I've been trying to mess around with my MAL CSS (myanimelist) to my liking. I've encountered this weird behavior in webkit browsers like chrome and opera where an extra space is left when I reposition a td element.
This is what I'm getting:
I made a jsfiddle for ... | common-pile/stackexchange_filtered |
Maven Tycho compilation failure
I am using maven and tycho plug-in to build an eclipse RCP application. I use some java 8 features like lambda expression, but it could not build correctly because of compilation failure.
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-compiler-plugin:1.0.0:compile (default-compil... | common-pile/stackexchange_filtered |
How to connect to an Oracle database using odbcDriverConnect
I need to use odbcDriverConnect to connect to an Oracle database and I CANNOT odbcCConnect so i have to provide a Driver parameter but I am not sure what it should be. Here is my current call to the odbcDriverConnect() function
odbcDriverConnect("Driver=????... | common-pile/stackexchange_filtered |
Minimum difference between numbers in a file
I'm learning Java and I created a simple solution for the following problem:
Given a file [filename].txt such that each line has the format string, double, find the minimum possible difference between any two values and identify if it is less than an arbitrary value mindDis... | common-pile/stackexchange_filtered |
Possible to extend methods of Array in ruby?
I have an array of instances of e.g. class Result, I want to join names of results rather than results with a ',' like below:
@results=[result1, result2...]
results.join(", ") do |r|
r.name
end
results.join method should be an extensino methods of Array, I want it availa... | common-pile/stackexchange_filtered |
How can I remove symmetry from an armature?
I have a model with an armature that I obtained from Turbosquid. As you can see in this screen shot, there are bones for both front legs at each joint.
I want to move only the right front leg. However, when I try to pose the right leg in pose mode, all movements are mirrored... | common-pile/stackexchange_filtered |
Work Item creation not bound to Pull Request bi-directionally
When creating a new Work Item of a specific type, and trying to link it to a PR at the same time, I can see that the Work Item is now shown on the Pull Request summary page.
So I'm making a fairly simple POST request to the /_apis/wit/workitems/{type} endpoi... | common-pile/stackexchange_filtered |
Is it possible that I just saw Jupiter's moons?
Today at about 18:00 I was looking for Venus near the moon and I saw a short bright line. I thought that maybe I was seeing Venus' crescent but it was perpendicular to the crescent of the moon. I then noticed Venus very close to the moon and realised that the line is Jupi... | common-pile/stackexchange_filtered |
plotting graph with sound in asp.net
User A will record his voice and i want to plot a graph according to his voice... is there any voice chart available...
I have use the Bass library from un4seen.com
http://www.un4seen.com/
they have an asp.net port.
Similar question: asp.net create waveform image from mp3
i downl... | common-pile/stackexchange_filtered |
QuickLook set app to display preview
Is it possible to set the app that displays the QuickLook preview in OS X?
I'm developing iOS apps and I have Xcode installed, but when I open the QuickLook preview of a Source-Code file, the preview uses the iA Writer, which I have also installed but the "Open with" button un the... | common-pile/stackexchange_filtered |
Calculate the distance from Plickford to Murbell
Attached is my question. Please provide an explanation for how I could calculate the distance from Plickford to Murbell.
HINT :
$\angle{MBP}=57^\circ+(180^\circ-155^\circ)=82^\circ$.
Now use the law of cosines.
| common-pile/stackexchange_filtered |
Android retrieve image from parse.com and use it
Actually, I want to use this library"Aphid-FlipView-Library"to do an animation of flipping.
The images I want to flip are from Parse.com.
But I got problems when doing this.
Please give me some instruction.Thanks!
First, I create a class to set and get image's bitmap val... | common-pile/stackexchange_filtered |
Flutter dual sim -Send SMS
I have a dual sim android phone. I want to send SMS by selecting sim slots through flutter dart programatically. When i tried , by default , it is going from first sim slot. Is there any solution in flutter , as like in subscriptionManager() in android.
you can create a native method and the... | common-pile/stackexchange_filtered |
Waydroid ABI error when installing APK
I bought a new laptop, installed Ubuntu 24.04, downloaded from apkmirror.com the APK's I want to use (including APKMirror Installer) to play games, copied these APK's to my home directory's .local/share/waydroid/data/media/0/Download (I could then see the APK's in Waydroid), insta... | common-pile/stackexchange_filtered |
How to combine current and target values for many edit controls?
The software needs to display numeric values of many (say 20 or more) control variables. It needs to show the current value which may get updated by the program every so often. Additionally, the user may want to set target values for some or all of these ... | common-pile/stackexchange_filtered |
When I click the "Tour"-button on English Language Learners-site the right edge of the text is partially cut off
When I click the "Tour"-button the right edge of the text is partially cut off. I have to guess what's meant there. How can I change this fault if at all?
If there are animations, where can I find them on th... | common-pile/stackexchange_filtered |
Would it be useful to convert NTFS to EXT4 with this system setup?
Consider the following system:
Distribution: Devuan Beowulf.
DRAM Memory: 16 GB.
Linux kernel version: 5.10.0.
Secondary storage: One SDD and one HDD.
Used as a desktop, including software development which can be taxing on system resources in itself.
... | common-pile/stackexchange_filtered |
Send an email I want it isn't received
:)
I searched for any solution but I found nothing. I'd send an email like as follows:
To<EMAIL_ADDRESS>CC<EMAIL_ADDRESS>
but I'd want that Recipient1 does NOT receive the email, while Recipient2 does. In this way, Recipient2 thinks I sent the email also to Recipient1 but, actuall... | common-pile/stackexchange_filtered |
UIImage size doubled when converted to CGImage?
I am trying to crop part of an image taken with the iPhone's camera via the cropping(to:) method on a CGImage but I am encountering a weird phenomenon where my UIImage's dimensions are doubled when converted with .cgImage which, obviously, prevents me from doing what I wa... | common-pile/stackexchange_filtered |
Singing and hearing quarter tones
I’ve just received a choir piece that contains some (rare) quarter tones on long held notes. For example, a B which slides into a Bᴓ (that's a half flat).
I’ve tried singing the part where it happens. Not for very long, I’ll admit, but with little success. It seems that my brain tends ... | common-pile/stackexchange_filtered |
can't start media recorder in javascript getting unkown error
I am using media stream recorder to use with ffmpeg in electron js then when stopping then starting again the record i am getting
this error
i am starting record with timeslice = 0
const sourcesMediaStream = new MediaStream()
navigator.mediaDevices.getUserMe... | common-pile/stackexchange_filtered |
Variable zoom on 3D rayshader rgl plot
How can I enable scroll wheel zoom on rgl rayshader plots?
Older (2019) rayshader plots seemed to have this functionality by default
(I can still open the old html files and they retain the functionality.)
However, plots generated today (2022) do not have scroll wheel zooming avai... | common-pile/stackexchange_filtered |
What is a “proper systematic order listing”?
I have a paper under review at a journal, and in it I have included a table of all of the species which exhibit a particular behaviour. Species are grouped by Order, and then family, and then species. The table is in alphabetical order by Order, and then within each order al... | common-pile/stackexchange_filtered |
User location won't come up in simulator in Xcode
I'm new to app development and I'm trying to get the user location to come up in the simulator but I keep getting the Use of unresolved identifier error. I have looked at other questions, which are very specific to their own projects, and have tried to approach my own a... | common-pile/stackexchange_filtered |
Linq condition in list to get children elements of specific element
Can you help me with a lambda expression equivalent for this:
var q = from c in result
from s in result
where (c.parent == s.title)
where s.title=="myvalue"
select c;
Unsure how to do ... | common-pile/stackexchange_filtered |
How to create an anti-diagonal identity matrix (where the diagonal is flipped left to right) in numpy
How can I create anti-diagonal matrix in numpy? I can surely do it manually, but curious if there is a function for it.
I am looking for a Matrix with the ones going from the bottom left to the upper right and zeros ev... | common-pile/stackexchange_filtered |
Visitor returns first Item of an List as null
I want to implement a Visitor for My class MyList. The List itself holds Elements of the type MyEntry. Those Entrys hold a generic Value and a reference to the next Entry in the List.
public class MyEntry<E> implements Visitable {
MyEntry<E> next;
E o;
MyEntr... | common-pile/stackexchange_filtered |
Question with several subquestions
Suppose one question posting contains several question. If I can answer one question, but cannot answer all of the questions, is it ok to post my answer as an answer, and not just as a comment?
| common-pile/stackexchange_filtered |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.