This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def im_drawbox(window, color='r', class_name='', score=0.0): | |
| """ | |
| Add a detection window (bounding box) into the current plot image. | |
| window: tuple-like of length 4 (xmin, ymin, xmax, ymax) | |
| """ | |
| import matplotlib.pyplot as plt | |
| xmin, ymin, xmax, ymax = window | |
| coords = (ymin, xmin), ymax - ymin, xmax - xmin | |
| currentAxis = plt.gca() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2014-09-28 11:59:00 +0900 | |
| ./configure | |
| --with-features=huge | |
| --enable-multibyte | |
| --with-macarchs=x86_64 | |
| --enable-perlinterp | |
| --enable-rubyinterp | |
| --enable-tclinterp | |
| --with-ruby-command=/System/Library/Frameworks/Ruby.framework/Versions/Current/usr/bin/ruby |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.springframework.issues; | |
| import static org.hamcrest.Matchers.*; | |
| import static org.junit.Assert.*; | |
| import java.net.SocketTimeoutException; | |
| import org.apache.http.conn.ConnectTimeoutException; | |
| import org.junit.Test; | |
| import org.springframework.http.client.HttpComponentsClientHttpRequestFactory; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <style> | |
| /* from http://sanographix.github.io/css3-countdown/demo/ */ | |
| dl.discharge .number-wrapper { | |
| margin: 5px; | |
| height: 100%; | |
| font-size: 68px; | |
| -moz-box-shadow: 0 5px 8px #000000; | |
| -webkit-box-shadow: 0 5px 8px #000000; | |
| box-shadow: 0 5px 8px #000000; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import static org.hamcrest.CoreMatchers.*; | |
| import static org.junit.Assert.*; | |
| import java.net.URI; | |
| import org.junit.Test; | |
| import org.springframework.web.util.UriComponentsBuilder; | |
| public class URIComponentsCannotHandleRelativeUri { |
NewerOlder