IT Nursery
I’m wondering whether to use matrix or query parameters in my URLs. I found an older discussion to that topic not satisfying. Examples URL with query params: http://some.where/thing?paramA=1&paramB=6542 URL...
  • June 2, 2022
  • 0 Comments
Does anyone have suggestions for detecting URLs in a set of strings? arrayOfStrings.forEach(function(string){ // detect URLs in strings and do something swell, // like creating elements with links. });...
  • May 31, 2022
  • 0 Comments
IT Nursery
Given a URL like the following, how can I parse the value of the query parameters? For example, in this case I want the value of some_key . /some_path?some_key=some_value'...
  • May 30, 2022
  • 0 Comments
IT Nursery
In Java, you can load all kinds of resources using the same API but with different URL protocols: file:///tmp.txt http://127.0.0.1:8080/a.properties jar:http://www.foo.com/bar/baz.jar!/COM/foo/Quux.class This nicely decouples the actual loading of the...
  • May 29, 2022
  • 0 Comments