Skip to content

Instantly share code, notes, and snippets.

View pvpshoot's full-sized avatar
🍎

Mike Sinyakov pvpshoot

🍎
  • Rostelecom IT
  • Ulyanovsk
View GitHub Profile
2016-04-25 16:43:55,302 DEBUG [http-bio-8080-exec-16] : Opening JPA EntityManager in OpenEntityManagerInViewFilter
2016-04-25 16:43:55,302 DEBUG [http-bio-8080-exec-16] : Checking match of request : '/do_login'; against '/build/**'
2016-04-25 16:43:55,302 DEBUG [http-bio-8080-exec-16] : Checking match of request : '/do_login'; against '/login'
2016-04-25 16:43:55,302 DEBUG [http-bio-8080-exec-16] : Checking match of request : '/do_login'; against '/frame'
2016-04-25 16:43:55,302 DEBUG [http-bio-8080-exec-16] : /do_login at position 1 of 12 in additional filter chain; firing Filter: 'SecurityContextPersistenceFilter'
2016-04-25 16:43:55,302 DEBUG [http-bio-8080-exec-16] : HttpSession returned null object for SPRING_SECURITY_CONTEXT
2016-04-25 16:43:55,302 DEBUG [http-bio-8080-exec-16] : No SecurityContext was available from the HttpSession: org.apache.catalina.session.StandardSessionFacade@6272bffc. A new one will be created.
2016-04-25 16:43:55,302 DEBUG [http-bio-8080-exec-16] : /do_login at position 2 of 12
@pvpshoot
pvpshoot / SassMeister-input-HTML.html
Created July 29, 2015 12:58
Generated by SassMeister.com.
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<div class="star-rating">
<div class="star-rating__wrap">
<input class="star-rating__input" id="star-rating-5" type="radio" name="rating" value="5">
<label class="star-rating__ico fa fa-star-o fa-lg" for="star-rating-5" title="5 out of 5 stars"></label>
<input class="star-rating__input" id="star-rating-4" type="radio" name="rating" value="4">
<label class="star-rating__ico fa fa-star-o fa-lg" for="star-rating-4" title="4 out of 5 stars"></label>
<input class="star-rating__input" id="star-rating-3" type="radio" name="rating" value="3">
<label class="star-rating__ico fa fa-star-o fa-lg" for="star-rating-3" title="3 out of 5 stars"></label>
<input class="star-rating__input" id="star-rating-2" type="radio" name="rating" value="2">
$(document).ready(function () {
$('.humburger').on('click', function () {
if (!$(this).hasClass('in')) {
$(this).addClass('in');
$('.main-nav').addClass('in');
}
else{
$(this).removeClass('in');
$('.main-nav').removeClass('in');
$tile-len: 50
$tile-color: $nav1-col,$nav2-col,$nav3-col,$nav4-col,$nav5-col,$nav6-col,$nav7-col
@for $i from 1 through $tile-len
&:nth-child(#{$i})
.big-block
background: nth($tile-color, $i % length($tile-color) +1)
&:hover
background-color: lighten(nth($tile-color, $i % length($tile-color) +1), 2%)