duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
| https://help.github.com/en/github/managing-packages-with-github-packages/about-github-packages#supported-clients-and-formats |
| https://hillside.net/patterns/patterns-catalog |
| // I also forgot where I'd copied from, probably from some thread of StackOverflow | |
| public interface IService | |
| { | |
| string Description { get; } | |
| } | |
| public class ServiceA : IService | |
| { | |
| public string Description { get; set; } = "I am Service A, created through DI"; |
| // copy from somewhere from internet which I lost the source.... | |
| public static class NHibernateExtensions | |
| { | |
| public static IServiceCollection AddNHibernate(this IServiceCollection services, string connectionString) | |
| { | |
| var mapper = new ModelMapper(); | |
| mapper.AddMappings(typeof(NHibernateExtensions).Assembly.ExportedTypes); | |
| HbmMapping domainMapping = mapper.CompileMappingForAllExplicitlyAddedEntities(); | |
| #$urlArray = @() # paste array of url | |
| $files = @() | |
| foreach($path in $urlArray) | |
| { | |
| $file = Split-Path $path -leaf | |
| $tuppleFile = @($file, $path) | |
| $files += $tuppleFile | |
| } | |
| Write-Output $files.Count |
| /* open up chrome dev tools (Menu > More tools > Developer tools) | |
| * go to network tab, refresh the page, wait for images to load (on some sites you may have to scroll down to the images for them to start loading) | |
| * right click/ctrl click on any entry in the network log, select Copy > Copy All as HAR | |
| * open up JS console and enter: var har = [paste] | |
| * (pasting could take a while if there's a lot of requests) | |
| * paste the following JS code into the console | |
| * copy the output, paste into a text file | |
| * open up a terminal in same directory as text file, then: wget -i [that file] | |
| */ |