How do you share code between projects/solutions in Visual Studio?
I have two solutions which have some common code, so I'd like to extract it out and share it between them. Furthermore, I'd like to be able to release that library independently because it might be us...
- Modified
- 2 Dec at 15:52
Why should I prefer to use member initialization lists?
I'm partial to using member initialization lists with my constructors... but I've long since forgotten the reasons behind this... Do you use member initialization lists in your constructors? If so, ...
- Modified
- 5 Jul at 23:16
Linq to Entities - SQL "IN" clause
In T-SQL you could have a query like: ``` SELECT * FROM Users WHERE User_Rights IN ("Admin", "User", "Limited") ``` How would you replicate that in a LINQ to Entities query? Is it even possible?
- Modified
- 30 Dec at 06:28
Retrieve column names from java.sql.ResultSet
With `java.sql.ResultSet` is there a way to get a column's name as a `String` by using the column's index? I had a look through the API doc but I can't find anything.
Is it better to use C void arguments "void foo(void)" or not "void foo()"?
What is better: `void foo()` or `void foo(void)`? With void it looks ugly and inconsistent, but I've been told that it is good. Is this true? Edit: I know some old compilers do weird things, but if I...
How to use JUnit to test asynchronous processes
How do you test methods that fire asynchronous processes with JUnit? I don't know how to make my test wait for the process to end (it is not exactly a unit test, it is more like an integration test a...
- Modified
- 21 Mar at 13:31
Convert NSDate to NSString
How do I convert, `NSDate` to `NSString` so that only the year in format is output to the string?
- Modified
- 7 Nov at 13:57
Serving favicon.ico in ASP.NET MVC
What is the final/best recommendation for how to serve favicon.ico in ASP.NET MVC? I am currently doing the following: - Adding an entry to the of my RegisterRoutes method:``` routes.IgnoreRoute("f...
- Modified
- 25 Feb at 00:5
How to generate XML file dynamically using PHP?
I have to generate a xml file dynamically at runtime. Please help me in generating the below XML file dynamically using PHP. ``` <?xml version="1.0" encoding="UTF-8"?> <xml> <track> <path>song1...
How to cache data in a MVC application
I have read lots of information about page caching and partial page caching in a MVC application. However, I would like to know how you would cache data. In my scenario I will be using LINQ to Entiti...
- Modified
- 5 Dec at 13:53
Build was configured to prefer settings repositories over project repositories but repository 'maven' was added by build file 'build.gradle'
I want to add jitpack.io as a repository in my gradle file. This is my gradle root file: ``` buildscript { repositories { google() mavenCentral() } dependencies { c...
Visual Studio Code PHP Intelephense Keep Showing Not Necessary Error
After the latest update of PHP Intelephense that I get today, the intelephense keep showing an error for an undefined symbol for my route (and other class too), there is no error like this before and ...
- Modified
- 3 Dec at 03:42
Invalid hook call. Hooks can only be called inside of the body of a function component
I want to show some records in a table using React but I got this error: > Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the foll...
- Modified
- 15 Sep at 20:14
docker entrypoint running bash script gets "permission denied"
I'm trying to dockerize my node.js app. When the container is built I want it to run a `git clone` and then start the node server. Therefore I put these operations in a .sh script. And run the script ...
How do I download a file with Angular2 or greater
I have a WebApi / MVC app for which I am developing an angular2 client (to replace MVC). I am having some troubles understanding how Angular saves a file. The request is ok (works fine with MVC, and ...
- Modified
- 5 Jul at 10:34
How can a divider line be added in an Android RecyclerView?
I am developing an android application where I am using `RecyclerView`. I need to add a in `RecyclerView`. I tried to add - ``` recyclerView.addItemDecoration(new DividerItemDecoration(getActi...
- Modified
- 9 Feb at 12:24
How to set a fixed width column with CSS flexbox
I want the red box to be only 25 em wide when it's in the side-by-side view - I'm trying to achieve this by setting the CSS inside this media query: ``` @media all and (min-width: 811px) {...} ``` to...
PageSpeed Insights 99/100 because of Google Analytics - How can I cache GA?
I'm on a quest to reach 100/100 on PageSpeed and i'm almost there. I'm trying to find a good solution to cache Google Analytics. Here is the message I get: Leverage browser caching Setting an exp...
- Modified
- 18 Feb at 09:4
Adding space/padding to a UILabel
I have a `UILabel` where I want to add space in the top and in the bottom. With the minimum height in constraints, I've modified it to: ![Enter image description here](https://i.stack.imgur.com/ccEWr....
How to return the current timestamp with Moment.js?
Folks, I am trying to understand the MomentJS API. What is the appropriate way to get the current time on the machine? ``` var CurrentDate = moment(); ``` vs ``` var CurrentDate = moment().forma...
- Modified
- 7 Aug at 17:44
pandas GroupBy columns with NaN (missing) values
I have a DataFrame with many missing values in columns which I wish to groupby: ``` import pandas as pd import numpy as np df = pd.DataFrame({'a': ['1', '2', '3'], 'b': ['4', np.NaN, '6']}) In [4]: ...
- Modified
- 29 May at 17:27
DISABLE the Horizontal Scroll
Ok for some reason my webpage scrolls from left to right and shows a lot of ugly space. I have searched for results but they just made the scrollbar That's now what I want, I want to physically ...
Microsoft Web API: How do you do a Server.MapPath?
Since isn't , you cannot do something like this: ``` var a = Request.MapPath("~"); ``` nor this ``` var b = Server.MapPath("~"); ``` because these are under the `System.Web` namespace, not the ...
- Modified
- 9 Feb at 01:8
Keyboard shortcuts are not active in Visual Studio with Resharper installed
I have 2012 + 7.1.1000.900 + 4.7.44 installed. The problem is that are active since Resharper was installed. For example: I can still rename via 'Refactor > Rename'. But shorcut + does nothing. I...
- Modified
- 10 Dec at 15:3
Standardize data columns in R
I have a dataset called `spam` which contains 58 columns and approximately 3500 rows of data related to spam messages. I plan on running some linear regression on this dataset in the future, but I'd...
- Modified
- 13 May at 09:23