text stringlengths 70 452k | dataset stringclasses 2
values |
|---|---|
facing error while copying files from one directory to another
i have a part of my code as
<part of code>
cd new_version
echo "Location of rpm: $loct"
cp -R ${loct} .
<remaining code>
and the value of the loct that i am passing here in my script is /auto/ipcbu-build/Published/TPL_LIBRARIES/
but when i am running this ... | common-pile/stackexchange_filtered |
Using textscan in Matlab to handle data not properly formatted data
I'm using textscan to import data. I can get to it successfully import properly formatted data. I can't get it to properly handle data that isn't properly formatted. Below is the format of the data.
JeB2021Da 12-13 and stuff, 1, 1, 0, 1, 0, 1, 1, 1,... | common-pile/stackexchange_filtered |
Improving random generation function
I am doing a small app that involves the system randomly generating objects. Here's how it goes
Each objects has a field that specifies the "type" of the object. Let's say fire, ice, wind (not the actual thing in the app though)
Each type has a field called "possibilities" that dete... | common-pile/stackexchange_filtered |
What's the meaning of "shift operates on bits individually"?
I have read in my book this sentence:
Logical and Shift Instructions Operate on bits individually Unlike
arithmetic, which operate on entire word
Use to isolate fields. Either by masking or by shifting back and forth.
I can not understand these two sente... | common-pile/stackexchange_filtered |
Uploading a large WAR file to Cloud Foundry fails
When attempting a vmc push I get:
Uploading Application:
Checking for available resources: OK
Processing resources: OK
Packing application: OK
Uploading (301M): OK
HTTP exception: Errno::EPIPE:Broken pipe
The only advice out there on this issue seems to b... | common-pile/stackexchange_filtered |
Error in connecting Samsung A3 to Ubuntu 14 (USB); adb unauthorized (no pop up on device too)
I have a Samsung A3 with Android 4.4.2 (not rooted) and a computer running Ubuntu 14. I am trying to connect my device to my computer through USB to be able to perform some tests on it.
I have activated the USB debugging mode.... | common-pile/stackexchange_filtered |
Custom ListView Adapter throws UnsupportedOperationException
This is the tutorial that I followed to use a custom Listview Adapter. The problem I am having is that when I try to clear the adapter, the app crashes and throws java.lang.UnsupportedOperationException
if(adapter != null) {
adapter.clear();
}
UPDATED CO... | common-pile/stackexchange_filtered |
How to compare objects in Django?
Hello I'm newbie in Django and programming also. Can someone explain me how to compare objects created by the same model?
product1
shop1
product1
shop2
product1
shop3
I want my app to do something if it finds more than one object with the same parameter - "product1" ... | common-pile/stackexchange_filtered |
How to maintain old list values in dropdown?
I'm using infopath 2013 and share point 2013
In infopath form design I am using Drop down field and bind values from share point list.
Share point List
I select India and submitted the form successfully. After submitting I change the Country list. Like
South Africa
Duba... | common-pile/stackexchange_filtered |
How to construct a ParseIntError in my own code?
I want to reuse the standard library's ParseIntError in my function. However, I'm implementing parsing of the input string myself, so I don't need to return an error value returned by the standard library.
I didn't find a way to construct ParseIntError value. The only so... | common-pile/stackexchange_filtered |
How to pass data from useSelector (redux) to useSate hook in react?
Hi i am trying to work on a app, which has some predefined code of redux, and react.
I am trying to get the players data which is formated json file and pass it to useSate hook.
The data which I get using
const players = useSelector(getPlayers); // re... | common-pile/stackexchange_filtered |
SQL query for multiple (one-to-many) tables in mysql database
I have a database with tours (group city tours with guide). What I need is a SQL query (for a mysql 5.1.54 database) that will eventually give me a PHP array with the information out of multiple tables combined. I'm able to accomplish this by doing a query j... | common-pile/stackexchange_filtered |
CoGetClassObject returns an error
I want to read Windows Contacts (Windows 7 address book) but the CoGetClassObject returns an error and I don't know why ?
My code is :
IClassFactory* pFactory = NULL;
HRESULT rc;
rc = CoGetClassObject(CLSID_Contact,CLSCTX_INPROC_SERVER,NULL,IID_IClassFactory, (void **) &pFactory);
... | common-pile/stackexchange_filtered |
Not able to see any messages in the Kafka Ktable with Spring Cloud streamng
I have written a Kafka streams application using Spring Cloud streaming API and not able to see any messages in the KTable. I am not able to trace the issue. Any pointers or help appreciated.
Below is the code
import java.util.function.Function... | common-pile/stackexchange_filtered |
RNGoogleSignin not found - expo supabase auth
Invariant Violation: TurboModuleRegistry.getEnforcing(...): 'RNGoogleSignin' could not be found.
I dont know why i this error is coming i have installed the package properly in expo app
i want to authentication use with google signin using supabase auth.
also have this er... | common-pile/stackexchange_filtered |
Is this quotient of a polynomial ring local?
Let $k$ be a field, $R = k[X_1, \ldots, X_n]$ and $I = \langle X_1, \ldots, X_n\rangle$. I am trying to prove that the quotient ring $R/I^r$, $r\in\mathbb{N}$ is local, i.e., has only one maximal ideal. Here we define $I^r$ as the ideal generated by the products $f_1\ldots f... | common-pile/stackexchange_filtered |
Getting wrapped data via Vue-Laravel API Resource connection
I'm using Laravel and Vue connected via API,
Everything works fine.
I asked to get offer via method from Vue:
getOffer(id) {
this.$http.get('http://<IP_ADDRESS>:8000/api/offers/'+id)
.then(response => response.json())
... | common-pile/stackexchange_filtered |
Route lan traffic to specific subnet using a VM with OpenVPN
I have a OpenVPN connection to access private services (service1, service2). To access them, I must connect using an OpenVPN client on "MacMini".
I would like use the OpenWRT router (<IP_ADDRESS>) to connect to a VM (<IP_ADDRESS>).
The VM has an OpenVPN clien... | common-pile/stackexchange_filtered |
Why doesn't gravity make the universe have positive curvature?
If mass/energy causes positive curvature in spacetime, and measurements of the curvature of the universe show that it is flat (or very close to flat), then is there something causing negative curvature to balance out the positive curvature from gravity? Or ... | common-pile/stackexchange_filtered |
AKMIDICallbackInstrument - callback NOT called
How to Reproduce
I copied the "Callback Instrument" playground (which works), into a new project. installed AudioKit via pod (version 4.8)
I removed the implementation of the callback and put there only a print() statement.
Open workspace and run the project.
import UIKi... | common-pile/stackexchange_filtered |
Find value in list of dicts and return id of dict
I'd like to try and find if a value is in a list of dicts, which can be done easily with:
if any(x['aKey'] == 'aValue' for x in my_list_of_dicts):
But this is only a boolean response, I'd like to not only check if the value is there, but to also access it afterwards, s... | common-pile/stackexchange_filtered |
CSS optimization
I noticed that Digg and Google are using a kind of CSS optimization in their GIF header image. For example digg uses this image:
Why are they using this technique and how to do it in my own site?
This technique has become pretty widespread. The reasoning is that the browser sends a request for each i... | common-pile/stackexchange_filtered |
Avoiding MapView Pin-Clumping?
I am adding pins to a MKMapView using MKPinAnnotation view and was wondering if there is a way to stop pin-clumping (i.e. all the pins showing when zoomed out). Is there a way to do this using the API or do I have to manually filter the annotations to be added based on the current zoom a... | common-pile/stackexchange_filtered |
xml declaration/header missing when generating xml?
I am using the following code to dynamically generate xml
def testXML(){
render( contentType:"text/xml" ) {
book() {
author( name:'author')
}
}
}
The xml file is missing the xml header
<?xml version="1.0" encoding="UTF-8"?>
The ... | common-pile/stackexchange_filtered |
Prove that the largest eigenvalue (in terms of magnitude) of a non-symmetric matrix is real.
Let $A\in \mathbb{R} ^{n\times n}$ be a non-symmetric matrix with
eigenvalues $\lambda _i$, $i=1,...,n$ satisfying $$\left | \lambda_1\right | >\left | \lambda _2\right |\geqslant \left | \lambda _3\right |\geqslant ...\geqs... | common-pile/stackexchange_filtered |
Can the 750Ti and HD 5450 be used for mining? What software do you suggest.
I am currently mining with an R9 380 and I am trying to expand. I have an 5450 and I think I can get a 750ti for about 30 dollars. What software should work nicely with 750Ti and/or the HD 5450. Does anyone have any idea what kind of hashrate I... | common-pile/stackexchange_filtered |
Can a User/Non-Moderator see deleted chat messages?
Can a user who is not a Moderator see the deleted chat messages from other users?
Yes: In addition to moderators and the originally posting user, the room owners (of the particular room) also have access to the history of deleted messages.
However, unless the message... | common-pile/stackexchange_filtered |
Vanishing of self-hom in Spanier–Whitehead stabilization category
$\DeclareMathOperator\Hom{Hom}\DeclareMathOperator\SW{SW}$Let $R$ be a commutative Noetherian ring. For $R$-modules $M,N$, let $\mathcal I_R(M,N)$ be the collection of all $f\in \text{Hom}_R(M,N)$ that factors through some projective $R$-module. Put $\un... | common-pile/stackexchange_filtered |
this.$router is undefined inside Vue.extend() method
Using vue v2.5.9 and vue-router v.3.0.1.
Minimal reproduction link: https://codepen.io/clarewhatever/pen/eyzMNo
I am trying to dynamically insert a <router-link> element into component using the Vue.extend() method.
Vue.component('markdown', {
name: 'markdown',
p... | common-pile/stackexchange_filtered |
How to mask inputs using cocoon gem?
So, I have an javascript like this:
$(document).on("turbolinks:load", function() {
$('#client_phone').mask('(00)00000-0000');
});
It works only for the first element, when I click on "add new fields", the mask doesn't apply. So I tried using cocoon callbacks, like this:
$(document... | common-pile/stackexchange_filtered |
YA Fantasy featuring a giant blob and a warrior
My teacher read us "A Wrinkle In Time" when I was in the seventh grade, about 1980. At the end of this book, there was one chapter from another book, sort of a promotional sample. It featured a fantasy warrior of some kind, standing on a plain, looking at an immense giant... | common-pile/stackexchange_filtered |
How do I create a file in UNIX /tmp directory so that all users can read and write to it?
I am trying to create a file in the /tmp directory (working on a Linux UBUNTU 7.10), that has read/write/execute access for any user.
So I am using the
open(fileName,O_CREAT|O_RDWR,0777)
function to create the file (from a C prog... | common-pile/stackexchange_filtered |
Can I change the position of label in MUI?
I'm using Material UI for react,I want to change the place of label in text fields and bring it to the right, but because it has motion it doesn't look good how can I change that?
I want it to be like this but the white part doesn't move.
Solution for MUI v5
Add dir attribu... | common-pile/stackexchange_filtered |
How to get a kendo grid on a kendo template
Firstly I have made a Kendo grid. Each row of the grid has a button on it, which on-click opens a Kendo template (pop-up). still here it's fine.
Is it possible to add another grid in the popup and add editable child items(like grid hierarchy) to each grid row?
This is my main... | common-pile/stackexchange_filtered |
Script to clean cells from rows where another column is not blank
Right now I have a simple script to clean a range of cells and set value after clear content in multiple google sheets:
function clearRanges() {
var range = SpreadsheetApp
.getActive()
.getSheetByName("Xin hàng")
... | common-pile/stackexchange_filtered |
Django queryset filter GT, LT, GTE, LTE returns full object list
I'm trying to filter objects in my database using .filter(field__lte = parameter) however it just returns ALL objects and does not filter any out. I have even set the parameter to well above any value that is stored in the database and all objects are sti... | common-pile/stackexchange_filtered |
Bad precision of usleep when is executed in background thread in Swift
I have been using "usleep" to stop a thread during some milliseconds and I have checked that is stopping more time than expected.
I am sure I am doing something wrong, I am not an expert in Swift, but I don't understand it because it is very easy to... | common-pile/stackexchange_filtered |
How to pull wordpress posts from one blog to an external blog?
I would like two sites to have exactly the same posts and pages. The second website would pull all the content from the first (images, posts, pages, etc). I tried to do it with Broadcast but it requires a multisite installation if I understood correctly.
I... | common-pile/stackexchange_filtered |
Can't commit to CodeCommit
I'm not able to commit any files to my new CodeCommit repository, not sure why.
I've been able to clone my repository, so I'm able to connect to it. This would seem to rule out authentication issues. However, once I add and then commit a file I get the following error:
$ git commit -m "test"
... | common-pile/stackexchange_filtered |
Django Aggregation: Summation of Multiplication of two fields
I have a model something like this:
class Task(models.Model):
progress = models.PositiveIntegerField()
estimated_days = models.PositiveIntegerField()
Now I would like to do a calculation Sum(progress * estimated_days) on the database level. Using Dj... | common-pile/stackexchange_filtered |
set Time on a message using javascript/jquery
I want to display a message for about 5 - 10 seconds. After 5 - 10 seconds the message should disappear from the screen.
My code:
if (hasAnyPickedToken == true) {
htmlToken += '<li><span class="icon16 icomoon-icon-info-2 blue"></span><span style="color:black">You Have <b... | common-pile/stackexchange_filtered |
Using named scopes in rails 3.0
I have recently been taking a course in Rails. We are tasked with creating three named scopes in our 'Product' model. I have done:
scope :books, where( :category => 'books')
scope :movies, where( :category => 'movies')
scope :music, where( :category => 'music')
When I call these... | common-pile/stackexchange_filtered |
ionic node Error: Path must be a string. Received { [String:
i have problem when try to build ionic app
this error
SyntaxError: Use of const in strict mode
i think the problem was the node version ,so i install the latest version
when i try to run : ionic build android
Error: Path must be a string. Received { [Strin... | common-pile/stackexchange_filtered |
Combine files using Pillow and Python
I need to run a python script inside a folder.
the script count files ( image ) number create an image for
every 64 images.
example: if the folder containing 640 images, I will get 10
images as a combination of 64 images/outputimage
just, before adding "for" instruct... | common-pile/stackexchange_filtered |
Iterating multiple items from list in MVC C#
I am not sure how to do this in MVC, in normal code I would just iteratre in my loop and write the item, but I am lost doing this in MVC. In this program I am reading RSS feed from World of Warcraft site.
I've got this method:
public ActionResult Bar()
{
List<string> tem... | common-pile/stackexchange_filtered |
Weird sequelize error while trying to run my app from my server
This happens when I run node app.js from my server through putty.
I have MySql installed and running, and my code works fine from my local machine with no problems but I can't seem to get it to run on my server. Any ideas that may be causing this?
stil... | common-pile/stackexchange_filtered |
Variable Properties in LESS CSS
I am trying to create me a PX/REM converter in LESS CSS but I am facing a problem.
The following lines do not want to compile, the problem comes from @{propertyValue}:.
.rem(@propertyValue; @sizeValue) {
@remValue: @sizeValue / unit(@base-font-size);
@{propertyValue}: ~"@{remValue}r... | common-pile/stackexchange_filtered |
CSS file works offline but not when uploaded to webserver
I just completed my portfolio website and uploaded it to a subdomain of my parent website.
Now the website works fine except that my main styling CSS doesn't work, no errors in the console, nothing. It just doesn't work. I verified it by placing the CSS in <styl... | common-pile/stackexchange_filtered |
Spring Boot datasource doesn't go to BeanPostProcessor
I am trying to make a proxy for my dataSource, but the following is never invoked with bean data source object and bean instanceof DataSource is always false:
@Component
public class DatasourceProxyBeanPostProcessor implements
BeanPostProcessor {
@Override
... | common-pile/stackexchange_filtered |
Problem about read thai language text file and Insert text thai language in to database
Use Javascript for coding
Thai language text file is enconding with ANSI
setting Collation in SQL is utf8_unicode_ci
show text before insert to database it can be show thai language like this บริษัท
I check in database it show ... | common-pile/stackexchange_filtered |
Node server on production must have node modules?
When deploying a node.js server on production, do we have to install node_modules or is there another best practice for third parties?
In the client we have a vendor.js file will all third partied but how we do it on the server? I don't want to install the large folder ... | common-pile/stackexchange_filtered |
How terminate the optimization in scipy?
I have written a code that has a higher number of initial guess values so it takes a long time to finish the optimization. though after some hours it will nearly converge so I want to stop the optimization that time.
res = minimize(f, x0=x0, bounds=bounds,options={'tol': 1e-6,'m... | common-pile/stackexchange_filtered |
What is the most efficient way to take a screenshot and do analysis on it on OS X
I need to be able to grab the output of a game and extract simple data from the HUD (get numerical data from fixed-width font UI elements, etc... simple stuff), but I need to be able to do it in real-time as the game is being played. I ca... | common-pile/stackexchange_filtered |
Displaying Encrypted Passwords in PHP
A client I am building a website for uses password / promo codes for their "Members Only" section, allowing members to gain access to special content. I am storing said passwords via MySQL, encrypted using sha1.
The client needs to see these passwords in the administrator control p... | common-pile/stackexchange_filtered |
Generic Method Using BitConverter.GetBytes
I'm trying to get the bytes for different objects of different types using BitConverter.GetBytes. In order to do this, I'd like to write a generic extension method, rather than write individual extension methods for every type I want to work with (short, long, ulong, etc).
Is ... | common-pile/stackexchange_filtered |
NDatabase List<T> into IBindingList
I am using NDatabase and I am having trouble trying to bind a IEnumerable<T> which I am retrieving using a base Data Access Layer (BaseDAL).
public IEnumerable<T> GetMany<T>()
{
using(var odb = OdbFactory("Example.db"))
{
return odb.AsQueryable<T>().ToList();
}
}
T in my i... | common-pile/stackexchange_filtered |
How to update MSSQL from Excel using excel VBA
Current Situation
I have a database in MSSQL and currently it is able to link to excel the following way.
Excel table which is connected to MSSQL as follows
MSSQL table as below
Currently if I update my MSSQL table, excel table will update accordingly
What I need
I wan... | common-pile/stackexchange_filtered |
c# shift the elements of array by 1 with for loop
Im making a game in c# and it have a scoreboard with the top 5 players.
I made it to work, at least I thought I did...
The script enter the value of player's name and his score in a array, but there is a problem. It just delete the last one, so if you make the best scor... | common-pile/stackexchange_filtered |
MSXML2.ServerXMLHTTP send exits method
I have a report in access that gets an image from a url when charged, for this purpose I use MSXML2.ServerXMLHTTP to get the url.
Here is the code used:
Dim sURL As String
Dim v As Variant
v = Split(sURL, "/")(UBound(Split(sURL, "/")))
Dim obj As Object
Dim fl() As Byte
Set ob... | common-pile/stackexchange_filtered |
Error: unused arguments in ifelse in R
I tried to discretise a column in dataframe df using ifelse statements using the following code. The column aar contains decimal values from 0 to 12 and NAs. I check if the numeric value and assign it to the categories as below.
> df= df%>% mutate(arr2= ifelse( grepl("NA", aar)==T... | common-pile/stackexchange_filtered |
Ocaml's named parameters
Trying to understand Ocaml's mechanism for named parameters. I understand the basics, but the doc shows an example like this:
# let f ~x ~y = x - y;;
val f : x:int -> y:int -> int = <fun>
# let x = 3 and y = 2 in f ~x ~y;;
- : int = 1
What exactly is going on when only the tilde is used in ap... | common-pile/stackexchange_filtered |
c# winform active directory: acces to another form if login succes
i want to create a control from a form where i have login textbox and password textbox, and login button.
when i will enter the active directory account name and its password i want to go to another form.
someone can help me with this please.
in this co... | common-pile/stackexchange_filtered |
serialize pointer itself not the target object
I have a data class to be saved and loaded using boost serializer.
The class includes two members En *sender, En *receiver to two objects that are already created in my system.
I don't need them to be created again. I just need to send(serialize) their address, to be used... | common-pile/stackexchange_filtered |
.toLowerCase() / .toUpperCase() not working
I'm trying to get better at javascript through codewars.com katas, and I came across an exercice in which things like element[i]=element[i].toLowerCase() doesn't change anything at all.
I would like to have some help with my code, here is the exercice's instructions followed ... | common-pile/stackexchange_filtered |
OTP from Sony BIOS password recover
From Dogbert's blog:
Sony has a line of laptops ("Vaio") which compete mainly in the high value market segments. They implemented a master password bypass which is rather sane in comparison to the rest of the bunch:
The randomly generated master password is only stored in RAM, e.g.... | common-pile/stackexchange_filtered |
C Program stop working (m[0] -> rows = i;)
my program stopped working... .
I don't know why the program stop working if someone can help me, I would be very grateful
struct Matrix {
unsigned int rows, cols;
double * elems;
};
and here the function
Errorcode matrix_loadFromFile (Matrix * m, char * mFileName) {
... | common-pile/stackexchange_filtered |
Trying to understanding how different descriptions of the Legendre Transform are equivalent
Consider a convex function $f(x)$ and the line $y=px$. Let $x_p$ be the value of $x$ that maximizes $xp-f(x)$. This allows us to define the Legendre transform of $f$ as a function of $p$:
$g(p) = x_pp - f(x_p)$
This definition i... | common-pile/stackexchange_filtered |
What is the difference between a designated assist and a kill assist with the laser designator?
Is the designated assist like just one javelin rocket going to a tank with full health or does it need to be completely destroyed? Is the kill assist one rocket or does it need to be completely destroyed also? Or is both the... | common-pile/stackexchange_filtered |
Preserve the order of items in array when doing JOIN in Postgres
Say I have two tables: posts and embeds. Every post in posts may have a number of embeds associated with it in particular order which must be preserved. This query seems to work, producing the result shown below as «Post_embeds»:
SELECT p.id AS pid, array... | common-pile/stackexchange_filtered |
Writing R functions to support vectors
I have this function:
pcal.getPeriodForDate <- function(date_) {
dateObject <- as.POSIXlt(date_)
calendarStart <- pcal.getCalendarStart(dateObject$year + 1900)
difference <- dateObject - calendarStart
if(difference < 0) {
calendarStart <- pcal.getCalendar... | common-pile/stackexchange_filtered |
Record user click on links in email
I am working on a problem statement. I want to record if users have open a link given in the mail they receive.
Things work as expected for most of the cases. But the records get bad in some cases. What my research found is, when a mail is sent to users there is some link checkers on... | common-pile/stackexchange_filtered |
How to change error-message displayed @ failed form-element validation to be different than the element's '#title" text?
I'm writing a custom form module.
Using Drupal7's FormAPI, I create a checkbox, the label/text diplayed next to it is set as described here
http://api.drupal.org/api/drupal/developer!topics!forms_api... | common-pile/stackexchange_filtered |
Using OpenZeppelin merkle proof library
I want to use the OpenZeppelin Merkle proof library, but I am not able to figure out the hashes I have to provide in the proof parameter in the verify function of the library.
Let's say I have these hashes as leaf nodes:
[
{hash: 'b21bf46774e26d1371efa237de5882f526119eecaa45dbf... | common-pile/stackexchange_filtered |
how to fetch data in to parts using JSON.parse()
My code is working fine with limited data from API to google sheets. But when I try to run same code with large data (like above 10,000 records) it gives error (due to time limit exceed), the solution I am looking for is to get records in parts, 0 to 2000 then 2001 to 40... | common-pile/stackexchange_filtered |
How to test nested React components using Jest?
How to test nested React components using Jest?
BasicInfo.js
import React, { Component } from 'react';
import FormComponent from '@/components/FormComponent';
import Styles from './Style.scss';
import {basicInfoForm} from './BasicInfoForm'
class Basi... | common-pile/stackexchange_filtered |
How would you check if a char in Java is typeable?
The title pretty much says it all, how would I check if a char is typeable in java?
And what I mean by typeable is not only if it is a letter or digit, but also if it is an exclamation mark or blankspace etc.
I do not want things such as escape and backspace characters... | common-pile/stackexchange_filtered |
Python threading unexpectedly slower
I have decided to learn how multi-threading is done in Python, and I did a comparison to see what kind of performance gain I would get on a dual-core CPU. I found that my simple multi-threaded code actually runs slower than the sequential equivalent, and I cant figure out why.
The t... | common-pile/stackexchange_filtered |
Tangent map of constant map
I want to prove the well known result that for a map $f:X \to Y$ between smooth connected manifolds $X$ and $Y$ it follows that the tangent map $T_xf: T_xX \to T_{f(x)}Y$ is zero iff $f$ is a constant map.
I know how to prove this for derivations but now I want to prove this result using th... | common-pile/stackexchange_filtered |
Remove element from admin page editing part
I would like to remove few element in the admin page editing part.
Here a screen to the elements I want to remove.
Thank you !
can you edit your question to mention why and add some context? This is important as what you're asking removes critical parts of the editor that w... | common-pile/stackexchange_filtered |
Possible to only backup the Exchange .edb file?
I have an older 2008 R2 box running Exchange 2010 on it. Right now im using Windows Backup to backup the Exchange data but would like to know if im able to just backup the Exchange .edb file instead of the entire system? I really only care about the Exchange data on this ... | common-pile/stackexchange_filtered |
Using clojurescript to render Three.js scene on HTML page
I'm trying to implement the Creating a scene example for three.js in clojurescript.
I'm not doing the animation and just want to display the static scene (a green block).
The problem appears to be in this function that is called to render the scene.
(defn ^:... | common-pile/stackexchange_filtered |
Setting up Git-bash to web developing and terminal using
I have installed Git-bash but commands like: man, open,... don't work. I can't even create one new tab.
I have linux in dual boot but i want to use win7 because it's more practical. There is a way to set upo Git-bash to be like terminal in linux? with almost all ... | common-pile/stackexchange_filtered |
Setting Azure Redis SessionState provider for sub webconfig
My web app have two webconfig file like this
root
|
|-subsystem
|web.config
web.config
Almost system had config use azure session ok, but my sub system cannot store session to azure. always null
I had copy same connection setting for sub webconfig file, but ... | common-pile/stackexchange_filtered |
Dagger-2: Field not injected
My field for retrofit in this class is never injected into, it is still null when i run my code.
Here is my ServiceClass where I inject retrofit, have my api calls etc. I stripped it down for simplicity:
public class ServiceClass{
@Inject
Retrofit retrofit;
public ServiceClass... | common-pile/stackexchange_filtered |
Code compiles but prints unexpected "-nan"
Its supposed to take text and print a reading level, it seems to work except it only prints "-nan" after taking text input.
#include <cs50.h>
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <math.h>
int compute_Readability(string Text);
int compute_Letters(s... | common-pile/stackexchange_filtered |
Gitlab Runner cannot delete locked file with Flutter project
Been having this issue recently trying to simple build a flutter project in Gitlab
It fails even before getting to the first stage with this error that doesnt really say what the error is. It just exits with status 1
Running with gitlab-runner 16.10.0 (81ab07... | common-pile/stackexchange_filtered |
Homebrew Arduino using ATMEGA328P, ISP or ICSP?
I plan on creating a homebrew Arduino breakout board using the ATMEGA328P smd version. I'm geeting confused by the wealth of information out there as to whether I should be using ICSP or ISP to program it. It is a blank chip, aka no Arduino bootloader on it yet. I'd rathe... | common-pile/stackexchange_filtered |
How rewrite Longmore LJ in *Salt v Stratstone Specialist Ltd* (2015) without negator?
To improve English, I want try re-rewriting long sentences without negator because I understand "Don't you ever talk like that to me again", but not "Don't you never silence like that to me never".
Poole, Shaw-Mellors. Contract Law Co... | common-pile/stackexchange_filtered |
Laravel vue.js login 419 (unknown status)
I'm trying to perform a login request using axios ,the csrf is working fine ,tried adding it to the header and tried to post it with the data ,and the login process is working fine it returns the process succeed but also it fires an exception , 419 unknown status , i googled al... | common-pile/stackexchange_filtered |
How to solve the problem Support for the experimental syntax 'classProperties' isn't currently enabled
I have this error Support for the experimental syntax 'classProperties' isn't currently enabled when I try to run the react js application.
I am trying to increment the value inside a <span> when I click a `
Here is t... | common-pile/stackexchange_filtered |
AngularJs Editor which suppports latex markeup
I am looking for a WYSIWYG javascript/html editor(similar that to stackoverflow`s editor) which supports
basic features such as links, bold, italic, image upload etc.
a special format for code
latex support for math formulas
For angular I found:
http://textangular.com/
... | common-pile/stackexchange_filtered |
Prerequisites for Khovanov Homology
I have studied Undergraduate Abstract Algebra (including Category Theory) and Point Set Topology. I wish to attend a seminar series next month on Khovanov Homology which will introduce basics of Knot Theory and Homology Theory on the way.
Considering that, can anybody suggest me an ... | common-pile/stackexchange_filtered |
Swift: change tableview height on scroll
I have a VC as shown in the image
It has a UICollectionView on top, and a UITableView at the bottom.
CollectionView has 1:3 of the screen and TableView has 2:3 of the screen(set using equalHeight constraint).
I want to change the height of the UICollectionView when the tableView... | common-pile/stackexchange_filtered |
Spark SQLContext load multiple files
I want to download current and previous month json files only or last 10 day json files.
val jobNonProdTable = sqlContext.jsonFile(s"somepath/pdate=$year/[01-02]/*")
This doesn't seems to be working.
| common-pile/stackexchange_filtered |
Are questions about which is the license of a particular software on-topic?
I'd like to make a question about which is the corresponding license of a software who looks like open source software (its source code is accesible) but I cannot determine which exact license corresponds to it as I'm unable to find it, or even... | common-pile/stackexchange_filtered |
React - Jest - Test preventDefault Action
I don't know how to test key down event & prevent default. Test reached code but preventDefault has never been called: Received number of calls: 0
React Component - App.js
const onKeyDown = e => {
console.log("==== TEST REACHED HERE ====")
e.preventDefault(); // N... | common-pile/stackexchange_filtered |
How to correctly initialize a function in React?
tell me, please, how to solve the following problem correctly?
I have a certain component, there is a control above, when I click on it, setState is triggered. I need to call the function this.setScrollLeft () in which I set to the selected node (ref) in this case the cl... | common-pile/stackexchange_filtered |
using Jquery, replace html elements with own values
I have a table, has many rows. for example one of from rows(all rows are same):
<tr>
<td>
<input type="text" />
</td>
<td>
<textarea cols="40" rows="3" ></textarea>
</td>
<td>
<select>
//options
</select>... | common-pile/stackexchange_filtered |
Is it okay if program has Memory corruption while debugging, but runs fine in relase
I have a program which causes Memory corruption while debugging, but runs perfectly fine in release. To add strangeness, program fulfils its function before "crashing" (it saves data to a file). Can that mean Visual Studio simply doesn... | common-pile/stackexchange_filtered |
Novel in which aliens use transporter technology to copy humans and then torture them
I read a sci-fi novel a few years back, but I can't remember who it's by or what it's called.
In the story, humans have developed matter transporters so that humans can be teleported from place to place. However, a war with aliens has... | common-pile/stackexchange_filtered |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.