Roman Bartke

Results 22 comments of Roman Bartke

@Backhage To get [Authorize(Roles = "Administrator")] attribute to work properly in 2.1 I had to do the following in Startup.cs:ConfigureServices(): ``` services.AddIdentity() .AddEntityFrameworkStores() .AddDefaultUI() .AddDefaultTokenProviders(); ``` (cf. https://github.com/aspnet/Identity/issues/1813)

@Welkie I don't think roles are deprecated. In ASP.NET Core 2.1 they simply realize that not every application needs roles and separated them. The problem here is to switch the...

The files are ok, both `unzip -t` and `od -t x1 ...` shows all 8 bit bytes correctly. I am able to unzil the file, too. Here is a transcript...

When I compare the `vd` ouputs of the preinstalled `mdl105` with the transfered `mdl106` I can see the byte size difference also, but do not know how to convert from...

> > > There are several potential problems. > > First, the .exe files stored on your host computer may not have all bits preserved. Presumably, the files came from...

`ITS` (`make EMULATOR=klh10`) built under my `Debian 8.7 jessie` in a VM without problems. Under `Ubuntu 18.10 cosmic` (VM on the same host) it hangs on different times. First with...

Has anyone got STINK to work on TOPS-20? I got it compiled (taken from ITS mudsys; stink.2) after changed the first lines to: ``` TITLE TSTINKING ODOR .SYMTAB 10000. ITS==0...

OUT and LINK are unused labels in STINK.2. When I remove both of them (the labels, not the instructions) I get a version without assembly warnings: ``` $cd TOPS20: $324...

I could solve the problem with OUT and EXIT undefined with a missing closing conditional bracket in lines 1842 and 2990 of https://github.com/PDP-10/muddle/blob/master/%3Cmdl.int%3E/stink.mid.1 Got this: ``` $324 MIDAS.324 *stink.out_stink.mid TSTINKING...

I use FTP too. As a test program I have built pi.exe from http://web.archive.org/web/20120617125257/http://panda.com/tops-20/pi.mid.txt First transfered it from host PC to TOPS-20: ``` # ftp 192.168.1.110 Verbindung mit 192.168.1.110 wurde...