Ensure you understand the difference between doc literal rpc format:
The URLs may look like: Doc Literal: https://mydomain.com/WebService?wsdl
RPC: https://mydomain.com/WebService?wsdl=WebService.wsdl
The contents will look like:
Ensure you understand the difference between doc literal rpc format:
The URLs may look like: Doc Literal: https://mydomain.com/WebService?wsdl
RPC: https://mydomain.com/WebService?wsdl=WebService.wsdl
The contents will look like:
| Here is a reference to the part of the video where the slides are listed: | |
| https://www.youtube.com/watch?v=SrKj4hYic5A&feature=youtu.be&t=28m | |
| Here are the references: | |
| SMITH - Reflection and Semantics in Lisp - 1983 | |
| http://www-public.it-sudparis.eu/~gibson/Teaching/CSC7322/ReadingMaterial/Smith84.pdf | |
| WAND & FRIEDMAN - The Mystery of the Tower in Lisp - 1986 | |
| http://www.cs.indiana.edu/pub/techreports/TR196.pdf |
| Here is the intro link: | |
| http://swannodette.github.io/2013/09/15/source-maps/ | |
| Note that there are seven things to check in the project.clj | |
| 1. Clojurescript dependency version [org.clojure/clojurescript "0.0-1889"] | |
| 2. :id "advanced" | |
| 3. :optimizations :advanced | |
| 4. :pretty-print false | |
| 5. :output-dir "out" | |
| 6. :output-to "main.js" |
| #!/usr/bin/env perl | |
| use strict; | |
| use warnings; | |
| #my $text = "\t \t"; | |
| #my $text = "\t\t \t"; | |
| #my $text = "\t\t \t\t \t"; | |
| my $text = "\t\t \t\t \t"; |
| package complexGC; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| public class ComplexGCThreadedDemo { | |
| private static final int TEN_SECONDS = 10000; | |
| private static final int NUM_THREADS = 1000; |