Posts

Showing posts from April 14, 2019

Can't connect to .Net Core API Server from remote device

Image
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box; } 0 I have a web core api server and I'm trying to connect to it from my phone, but it just says connection failed every time I try. Is it possible that the IIS Express Server doesn't make my IP address available for remote devices? I've done this once using Java and it worked perfectly fine, I don't understand why it won't work here. public class Program { public static void Main(string args) { BuildWebHost(args).Run(); } public static IWebHost BuildWebHost(string args) => WebHost.CreateDefaultBuilder(args) .UseUrls("http://localhost:8080", "

Find the symmetric subsets of $B = {1,2,3,4}$

Image
0 0 $begingroup$ I came across this weird question in a question paper : $B =lbrace1,2,3,4rbrace . text{ A set } Ssubseteq Btimes B text{ is called symmetric set iff, for all x,y } in S \ qquadqquadqquadqquadqquadqquad (x,y) in S Rightarrow (y,x) in S $ . Find the number of symmetric sets of B. At first , I thought the answer is $4.quad[(1,1),(2,2),(3,3),(4,4,)]$ . Now the question begs if an empty set " $emptyset$ " can be included to the list? What is the answer? combinatorics elementary-set-theory share | cite | improve this question edited Feb 2 at 22:23 Maria Mazur