blog.johnruiz.com blog.johnruiz.com

blog.johnruiz.com

John Ruiz, Software Engineer

Sometimes, there is code. You have to compile the code.

http://blog.johnruiz.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR BLOG.JOHNRUIZ.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

April

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Wednesday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.4 out of 5 with 7 reviews
5 star
2
4 star
3
3 star
0
2 star
0
1 star
2

Hey there! Start your review of blog.johnruiz.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.6 seconds

FAVICON PREVIEW

  • blog.johnruiz.com

    16x16

  • blog.johnruiz.com

    32x32

CONTACTS AT BLOG.JOHNRUIZ.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
John Ruiz, Software Engineer | blog.johnruiz.com Reviews
<META>
DESCRIPTION
Sometimes, there is code. You have to compile the code.
<META>
KEYWORDS
1 search this blog
2 posts
3 get link
4 facebook
5 twitter
6 pinterest
7 google
8 email
9 other apps
10 instructions
CONTENT
Page content here
KEYWORDS ON
PAGE
search this blog,posts,get link,facebook,twitter,pinterest,google,email,other apps,instructions,post a comment,8 comments,the script,32 comments,6 comments,4 comments,using system;,namespace rabbitssltest,21 comments,3 comments,more posts,john ruiz,july 1
SERVER
GSE
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

John Ruiz, Software Engineer | blog.johnruiz.com Reviews

https://blog.johnruiz.com

Sometimes, there is code. You have to compile the code.

INTERNAL PAGES

blog.johnruiz.com blog.johnruiz.com
1

John Ruiz, Software Engineer: December 2013

http://blog.johnruiz.com/2013_12_01_archive.html

John Ruiz, Software Engineer. Sometimes, there is code. You have to compile the code. Tuesday, December 17, 2013. Configure a FIPS 140-2 Compliant Java Provider on RedHat/CentOS/Fedora. If you're using any form of cryptography in Java, you might be aware of NIST FIPS 140-2, which lays out what you can and cannot use on federal information processing systems. Oracle documentation, true to form, only gets you 80% of the way there. Here's their technical notes on FIPS 140 compliance. Anyway, in the picture ...

2

John Ruiz, Software Engineer: Invalid provider type specified when accessing X509Certificate2.PrivateKey

http://blog.johnruiz.com/2012/01/invalid-provider-type-specified-when.html

John Ruiz, Software Engineer. Sometimes, there is code. You have to compile the code. Tuesday, January 10, 2012. Invalid provider type specified when accessing X509Certificate2.PrivateKey. Today, I was attempting to digitally sign a byte array with my private key so that I could produce an event on the event bus and a consumer could ensure that the message came from me and was not modified while in transit. Public byte[] SignData(byte[] data). CertStore.Open(OpenFlags.ReadOnly);. It turns out that by usi...

3

John Ruiz, Software Engineer: Installing CouchDB 1.2 on CentOS 6

http://blog.johnruiz.com/2012/04/installing-couchdb-12-on-centos-6.html

John Ruiz, Software Engineer. Sometimes, there is code. You have to compile the code. Thursday, April 12, 2012. Installing CouchDB 1.2 on CentOS 6. CouchDB has a really great idea behind it. Whether or not CouchDB delivers on it, I've been wanting to discover for a while. Only way to do that is kick the tires, so I started the process of figuring out how to install it. CouchDB runs on erlang, so you need to install erlang from the EPEL. Now you can install erlang:. Sudo yum install erlang. Under the [htt...

4

John Ruiz, Software Engineer: January 2012

http://blog.johnruiz.com/2012_01_01_archive.html

John Ruiz, Software Engineer. Sometimes, there is code. You have to compile the code. Tuesday, January 10, 2012. Invalid provider type specified when accessing X509Certificate2.PrivateKey. Today, I was attempting to digitally sign a byte array with my private key so that I could produce an event on the event bus and a consumer could ensure that the message came from me and was not modified while in transit. Public byte[] SignData(byte[] data). CertStore.Open(OpenFlags.ReadOnly);. It turns out that by usi...

5

John Ruiz, Software Engineer: Windows does not always honor DNS order

http://blog.johnruiz.com/2011/12/windows-does-not-always-honor-dns-order.html

John Ruiz, Software Engineer. Sometimes, there is code. You have to compile the code. Wednesday, December 21, 2011. Windows does not always honor DNS order. I was having a problem where some internal server names would become unresolvable after being resolvable. After becoming tired of flushing the dns resolver cache, I finally opened wireshark to see what was going on. To my surprise, windows was using my secondary DNS (8.8.8.8) instead of my primary, internal DNS! And then click OK. Menu, point to New.

UPGRADE TO PREMIUM TO VIEW 11 MORE

TOTAL PAGES IN THIS WEBSITE

16

LINKS TO THIS WEBSITE

gettingcirrius.com gettingcirrius.com

Getting Cirrius: Calculating Similarity (Part 1): Cosine Similarity

http://www.gettingcirrius.com/2010/12/calculating-similarity-part-1-cosine.html

Meandering thoughts about technology and management. Sunday, December 5, 2010. Calculating Similarity (Part 1): Cosine Similarity. Dot Product, 2010). Cosine similarity is literally the angular difference between two vectors. Cosine Similarity is expressed by the formula:. Cosine Similarity, 2010). For those of you allergic that don't speak "mad mathematician" (like me), to calculate the cosine similarity, we need to:. Take the dot product of vectors A and B. Calculate the magnitude of Vector A. In the c...

gettingcirrius.com gettingcirrius.com

Getting Cirrius: What I'm Reading

http://www.gettingcirrius.com/p/what-im-reading.html

Meandering thoughts about technology and management. I spend a lot of time reading (that's probably an understatement). Right now my current interests in computing span a number of subjects: architecture, alternative languages on the JVM, Ruby, Node.js, CoffeeScript, the Apache Hadoop ecosystem, NoSQL, State Machines, Complex Event Processing, Rules Engines, and Event-Driven Architectures. Getting Started with Google Guava. 40 out of 5.0. 25 out of 5.0. I have to first say that the I was mislead by the t...

gettingcirrius.com gettingcirrius.com

Getting Cirrius: November 2013

http://www.gettingcirrius.com/2013_11_01_archive.html

Meandering thoughts about technology and management. Sunday, November 17, 2013. Configure IPTables with Ansible. If you need to configure IPTables on the fly using Ansible, this is a really quick way to do it (and requires no extra dependencies). This mechanism relies on the lineinfile. Module, which allows you to idempotently add/verify/remove lines of text inside a file. I then use with items. And list all of the protocols and ports I want available on the box. Subscribe to: Posts (Atom). In my last po...

gettingcirrius.com gettingcirrius.com

Getting Cirrius: June 2014

http://www.gettingcirrius.com/2014_06_01_archive.html

Meandering thoughts about technology and management. Thursday, June 19, 2014. I will no longer be using Blogger as my platform. There are some things to like about the platform, but more and more I find it to be suboptimal, particularly for developers who want to post code. I won't be closing the site down, but I do plan to not write any more content within Blogger. You can view my new blog at http:/ rclayton.silvrback.com. Friday, June 13, 2014. Enable JMX on Amazon EC2. 1 Unblock RMI and JMX Ports.

gettingcirrius.com gettingcirrius.com

Getting Cirrius: October 2012

http://www.gettingcirrius.com/2012_10_01_archive.html

Meandering thoughts about technology and management. Friday, October 12, 2012. Convert Lat, Lon to MGRS (vice versa) in Java. Need to convert between MGRS and Latitude, Longitude pairs in Java. There are a couple of libraries out there, but they have unfriendly open source licenses (no redistribute unless your project is same license, requires commercial license in production, etc.). On the other hand, the World Wind project has a very nice license: NASA Open Source Agreement v1.3. 2 Attribute the code.

gettingcirrius.com gettingcirrius.com

Getting Cirrius: February 2013

http://www.gettingcirrius.com/2013_02_01_archive.html

Meandering thoughts about technology and management. Sunday, February 10, 2013. Integrating Spring Security with Dropwizard. Dropwizard is a great framework for streamlining Java web apps (I'd argue any app) for deployment in a production environment. It's an answer to the complexity of Java Web and Application Containers, which tend to be overkill for 90% of your use-cases. In our JAX-RS controllers. To use our set of extensions, follow the instructions below:. ROLE USER, ROLE ADMIN". Initialize your Sp...

gettingcirrius.com gettingcirrius.com

Getting Cirrius: Enable JMX on Amazon EC2

http://www.gettingcirrius.com/2014/06/enable-jmx-on-amazon-ec2.html

Meandering thoughts about technology and management. Friday, June 13, 2014. Enable JMX on Amazon EC2. I ran into an issue this last week enabling JMX for a Java process on an Amazon EC2 instance. After a couple of hours researching (and finding a couple of answers on StackOverflow), I wanted to share a complete answer to how this is done. 1 Unblock RMI and JMX Ports. 2 Resolve the Public DNS Name of your EC2 Instance. 3 Prefer the IPv4 Stack. Finally, the last issue we ran into was the JMX server binding...

gettingcirrius.com gettingcirrius.com

Getting Cirrius: June 2012

http://www.gettingcirrius.com/2012_06_01_archive.html

Meandering thoughts about technology and management. Sunday, June 10, 2012. Securing Node.js and Express with SSL Client-Authentication. In the course of my work using Node.js, I did some research on implementing securing Node.js. There are a couple of decent articles on the subject, and of course a number of frameworks that performed this work, but nothing I read or evaluated really quite fit my needs:. In my case, I preferred certificate-based (SSL). Remain as unobtrusive as possible. The first step to...

gettingcirrius.com gettingcirrius.com

Getting Cirrius: Moving to Silvrback

http://www.gettingcirrius.com/2014/06/moving-to-silvrback.html

Meandering thoughts about technology and management. Thursday, June 19, 2014. I will no longer be using Blogger as my platform. There are some things to like about the platform, but more and more I find it to be suboptimal, particularly for developers who want to post code. I won't be closing the site down, but I do plan to not write any more content within Blogger. You can view my new blog at http:/ rclayton.silvrback.com. Note: Only a member of this blog may post a comment. Feel Free To Share. Dot Prod...

UPGRADE TO PREMIUM TO VIEW 7 MORE

TOTAL LINKS TO THIS WEBSITE

16

OTHER SITES

blog.johnrod.com blog.johnrod.com

My real estate blog - Everything you wanted to know about real estate in one place

2338 N Loop 1604 W, Suite 120. San Antonio, TX. As the holidays approach, don’t overwhelm your disposal. November 21st, 2011. Thanksgiving is just around the corner which usually means plenty of cooking in preparation for Thursdayâ s  festivities. Yet,  where do you dispose of this refuge in a quick, convenient fashion? The first thing that comes to mind would be the disposal in the sink. After all thatâ s what itâ s there for, right? Second, try not to overburden your disposal unit.  Roto-Rooters...

blog.johnrohde.eu blog.johnrohde.eu

John Rohde Jensen

Saturday, November 22, 2014. Finally we get to the real meat. How do I actually create that bloody web site? As mentioned before, I've chosen to go with Google's AppEngine because it's free, hosted by default and easy to get started with. That doesn't mean we don't have to work for it, but the work mostly makes sense and the learning curve manageable. Udacity gives you a big bang course on the whole stack with its ' Web Development. The web server webapp2. Itself is a standard component so feel free to r...

blog.johnrooksby.org blog.johnrooksby.org

John Rooksby

HCI Talks at Glasgow. I organise the GIST talks (i.e. the HCI talks) at Glasgow. We’ve had some great speakers at Glasgow over the past 12 months - even if I do say so myself! Here’s a list of who spoke during 2014-15 academic year:. GIST Seminar (Automotive UI / Mobile HCI) (11 September, 2014). Using degraded MP3 quality to encourage a health improving walking pace: BeatClearWalker (18 September, 2014). Economic Models of Search (02 October, 2014). Video - Ms. Male Character. Situated Social Media Use:...

blog.johnrosephotography.co.uk blog.johnrosephotography.co.uk

John Rose Photography - The Power Behind A Picture

Salisbury’s answer to Ascot was good (to firm! Posted on August 3, 2015. Big hats, small hats, fascinators, flowers feathers and a multitude of colors styles and designs. Ladies night at Salisbury Racecourse. Is always a very well attended an amazingly colorful affair, and this year was no exception. With 7 races  the going was Good to Firm which mad for some great results. We are always delighted to cover this glamorous event for Salisbury Life Magazine. This years overall winner was the lovely Gabr...

blog.johnroy.com blog.johnroy.com

Philosophy of the Byte

Philosophy of the Byte. Sunday, July 13, 2014. Quality emails from recruiters. Wednesday, June 4, 2014. The Upside of Yahoo Bugs. I don't have to endure those godawful trashy ads. ;-). Saturday, February 8, 2014. How not to fix a car. Car key is jammed in the ignition. Engine won't start. We've had ongoing problems with the VATS for the last year or so. This is a common problem in these cars. Obviously that problem has progressed to jamming the key in the barrel. Http:/ www.youtube.com/watch? So it turns...

blog.johnruiz.com blog.johnruiz.com

John Ruiz, Software Engineer

Skip to main content. John Ruiz, Software Engineer. Sometimes, there is code. You have to compile the code. Installing openvpn 2.3 on CentOS 7. October 03, 2014. Those of you who run CentOS probably know that the openvpn server package isnt available in the base distribution, nor in the CentOS Plus repositories.  When you peruse the openvpn.net website, they recommend using RepoForge builds. Go get the latest source tarball from the openvpn downloads page. Sudo yum install openssl-de…. December 17, 2013.

blog.johnruth.me blog.johnruth.me

Ciência Notícia

Mundo tem 2,5 milhões de novos casos de HIV por ano, diz estudo. PE tem 4.250 novos casos de dengue e chikungunya em uma semana. Mais de 5 mil pessoas irão participar de testes para vacina contra o HIV. Junho de 2016 foi o mais quente desde 1880, diz agência dos EUA. Pesquisa estabelece relação entre problemas linfáticos e chikungunya. Flórida investiga possível caso de transmissão local de zika nos EUA. SUS deve adotar uso preventivo de pílula anti-HIV para pessoas em risco. And WP Dev Shed.

blog.johnryding.com blog.johnryding.com

John Ryding | Blog

Python: Check if Import/Dependency is Available at Runtime. At work, we have an internal python package that is written to accomodate synchronous AND asyncronous HTTP requests with the requests and tornado packages respectively. However, a nuanced detail about this is that we don’t install either of these dependencies when consumers install and use our package. Https:/ gist.github.com/strife25/432c8354d293d1ad4713. Now, our developers can have their programs fail fast and fix this problem quickly! Proble...

blog.johns-guide-service.com blog.johns-guide-service.com

Operations Automation Default Page

If you see this page it means that Apache Domain Service for this domain is. Or there's no such Apache Domain Service registered in Operations Automation. For more information please contact your service provider. This page is autogenerated by Operations Automation.

blog.johnsacotte.com blog.johnsacotte.com

johnsacotte.com

The domain "johnsacotte.com" is parked with Advanced Access.

blog.johnsawyer.info blog.johnsawyer.info

John Sawyer's WEB Log

John Sawyer's WEB Log. News, Views and Ideas. Get updates by email. Sunday, 20 December 2009. Language – Part 2. 169; John Sawyer – December 2009. 8220;They delivered the windows to the building site next door today, Dad. They couldn’t have been heavy, just one bloke on his own.”. 8220;Did I already tell you? 8220;Geeze, Sue, tell me about it. That reminds me of the day I was walking past the place at the end of our lane. You know the two storey concrete joint with the roller doors? 8220;Yes you did, Nic...