Posts

Showing posts from March, 2019

How to use Glimpse when API and WebServer are separated?

Image
0 I've looked at several tutorials for Glimpse (and it's alternatives) but they all seem to assume that everything is running as one "service". However in my case the application is split into two parts, two separate projects. I have the "API-part" (a Windows Service) handling most of the heavy logic, and this is the part which uses the EntityFramework to contact the database. And then I have the "Web-part" which handles some simple logic and serves all the pages. The problem is that since Web doesn't have anything to do with the sql-requests, which is what I'm interested in, this seems to be an impossible combination? Even if I install Glimpse on the API-part, I have no way of viewing what happens there since there's no way to access a Glimpse-config. Is there any

Television presenter

Image
American television presenter and personality, Oprah Winfrey A presenter is a person who introduces or hosts television programs (or segments thereof such as an infomercial advertiser). Nowadays, it is common for personalities in other fields to take on this role, but some people have made their name solely within the field of presenting, particularly within children's television series, to become television personalities. [1] [2] Contents 1 Roles 2 United States 3 See also 4 References Roles Some presenters may double as an actor, model, singer, comedian, etc. Others may be subject matter experts, such as scientists or politicians, serving as presenters for a programme about their field of expertise (for instance, David Attenborough). Some are celebrities who have made their name in one area, then leverage their fame to get involved in other areas. Examples of this latter group include British comedian Michael Palin who now presents progra

How to export a symbolic matrix to excel ?

Image
1 I want to calculate a matrix with symbolic entries and export the matrix to an excel file. Approach: syms x_1 y_1 A_sym = sym(zeros(2,2)); A_sym(1,1) = x_1; A_sym(2,1) = x_1 * y_1 A_sym(2,2) = y_1; I tried to use the xlswrite('test.xls',A_sym,'A1:C5') function but it is somehow not designed for symbolic expressions and I get the following error: Input data must be a numeric, cell, or logical array. Afterwards I tried to typecast the content of my matrix to char and export it again: B = char(A); xlswrite('test.xls',B,'A1:C5'); The result was that the function exported each character into a single excel cell which leads to the problem that the symbolic variables containing more than one char are not in one single excel cell but are divided into many