usna86-techbits.blogspot.com
my kingdom for a smile :-): URL-Safe Compressed and Enhanced UUID/GUID
http://usna86-techbits.blogspot.com/2014/08/url-safe-compressed-and-enhanced.html
My kingdom for a smile :-). Monday, August 4, 2014. URL-Safe Compressed and Enhanced UUID/GUID. In addition, all the selected base64 characters are URL-safe. This UUID : 7e47c34a-eebc-4387-b5a4-c6b558bdc407. Is compressed down to this: 35Hw0ruvEOHbWkxrVYvcQH. Long)(Math.random() * 4). 2) prefix) 4; / iterate thru the next 10 characters for (int i = 1; i. 6; } return result; } / compressLong() } / class KeyGen. Subscribe to: Post Comments (Atom). Southwest Missouri, United States. View my complete profile.
usna86-techbits.blogspot.com
my kingdom for a smile :-): August 2014
http://usna86-techbits.blogspot.com/2014_08_01_archive.html
My kingdom for a smile :-). Monday, August 4, 2014. URL-Safe Compressed and Enhanced UUID/GUID. In addition, all the selected base64 characters are URL-safe. This UUID : 7e47c34a-eebc-4387-b5a4-c6b558bdc407. Is compressed down to this: 35Hw0ruvEOHbWkxrVYvcQH. Long)(Math.random() * 4). 2) prefix) 4; / iterate thru the next 10 characters for (int i = 1; i. 6; } return result; } / compressLong() } / class KeyGen. Subscribe to: Posts (Atom). Southwest Missouri, United States. Married with four children.
usna86-techbits.blogspot.com
my kingdom for a smile :-): Agile Thoughts : Sprint Length
http://usna86-techbits.blogspot.com/2011/03/agile-thoughts-sprint-length.html
My kingdom for a smile :-). Sunday, March 6, 2011. Agile Thoughts : Sprint Length. Team maturity and work definition are key factors. There are many factors that can/should influence sprint length, such as delivery schedules, resource availability, customer requirements, need for feedback, etc., but two often overlooked and perhaps most important factors are team maturity and how well the requirements/work are defined. See also: agile thoughts : backlog preparation. I would say That a PMP Certification i...
usna86-techbits.blogspot.com
my kingdom for a smile :-): How to return a Location header from a Jersey REST service
http://usna86-techbits.blogspot.com/2013/02/how-to-return-location-header-from.html
My kingdom for a smile :-). Wednesday, February 27, 2013. How to return a Location header from a Jersey REST service. If you're following the Resource Oriented architectural style (ROA) for REST you're often interested in building and returning hyperlinks to your resources in your web service responses. In the case of an HTTP CREATE, in addition to returning an HTTP 201 response code, you're also going to want to return a hyperlink to the newly created resource in the Location header of the response.
usna86-techbits.blogspot.com
my kingdom for a smile :-): Windows Home Server to the rescue
http://usna86-techbits.blogspot.com/2011/03/windows-home-server-to-rescue.html
My kingdom for a smile :-). Saturday, March 5, 2011. Windows Home Server to the rescue. Restoring a PC to new hardware. Several months ago I built a Windows Home Server box partly to back up the family's PCs - one of which is an aging Windows XP machine that I built seven or eight years ago. As luck would have it the last remaining SCSI hard drive in that old XP box started to fail last week, corrupting the OS and causing the machine to fail to boot. 1 Restore the PC from WHS onto the new hardware. 5 Onc...
usna86-techbits.blogspot.com
my kingdom for a smile :-): Recipe for AspectJ 1.x, Jersey 2.x, Spring 3.x, Tomcat 7.x, Maven and AOP with Load Time Weaving
http://usna86-techbits.blogspot.com/2014/04/recipe-for-aspectj-1x-jersey-2x-spring.html
My kingdom for a smile :-). Saturday, April 26, 2014. Recipe for AspectJ 1.x, Jersey 2.x, Spring 3.x, Tomcat 7.x, Maven and AOP with Load Time Weaving. The Spring documentation with respect to Tomcat (6 and below), Spring and AOP (with and without AspectJ) is excellent. See the Spring docs here. For more information. Jersey adds a wrinkle to this because the Jersey web services are not Spring managed beans, so it's a little trickier to get AOP working for the service classes/methods. You DON'T need this ...
usna86-techbits.blogspot.com
my kingdom for a smile :-): Spring-loading and injecting external properties into beans
http://usna86-techbits.blogspot.com/2011/01/spring-loading-and-injecting-external.html
My kingdom for a smile :-). Wednesday, January 12, 2011. Spring-loading and injecting external properties into beans. Let's say you have a Spring managed bean that contains some properties that you would like to externalize from your application, say perhaps in a JBoss 'conf' folder properties file. Apparently you can do this via annotations in Spring 3, but it's also fairly straightforward in Spring 2.5:. From the context.xml file:. Property name="location" value="classpath:my app.properties"/. KeePass ...
usna86-techbits.blogspot.com
my kingdom for a smile :-): Increase quality and productivity with the Jersey Test Framework
http://usna86-techbits.blogspot.com/2013/03/increase-quality-and-productivity-with.html
My kingdom for a smile :-). Friday, March 1, 2013. Increase quality and productivity with the Jersey Test Framework. Note: This article applies to Jersey 1.x. If you're looking for information on how to use the Jersey Test Framework in Jersey 2 please see this more recent article. With the Jersey test framework developers can increase the quality of their software as well as their productivity without leaving the comfort of their favorite IDE. Public class MyResourceWebServiceTest extends JerseyTest { @O...
usna86-techbits.blogspot.com
my kingdom for a smile :-): Injecting ExtJS components via an html template
http://usna86-techbits.blogspot.com/2011/01/injecting-extjs-components-via-html.html
My kingdom for a smile :-). Monday, January 17, 2011. Injecting ExtJS components via an html template. Use Ajax to load an html page as a template for ExtJS and then plug ExtJS components into it. Plug in the ExtJS components. The following methods are from myScript.js. This method loads the html using an Ajax request:. This success handler puts the html text into an ExtJS XTemplate and then loads that into the body of this component (an ExtJS panel or window):. OnStructureLoaded : function(response, opt...
usna86-techbits.blogspot.com
my kingdom for a smile :-): Multiple content representations from a resource oriented RESTful web service
http://usna86-techbits.blogspot.com/2013/08/multiple-content-representations-from.html
My kingdom for a smile :-). Tuesday, August 6, 2013. Multiple content representations from a resource oriented RESTful web service. Here are a some thoughts on a few ways you can return multiple different representations of your resources from RESTful web services and still preserve the resource oriented nature of your architecture. First, by representational differences I'm not talking about the format (JSON vs. XML, etc.). I'm talking about content. Use projection via a query param. Now, what if a give...