This file contains 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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
div{color:white;font-weight:bold;height:30px;width:97px;text-align:center;line-height:30px; | |
background: linear-gradient(180deg,#dd4b39,#d14836); | |
border: 1px solid transparent; | |
text-shadow: 0 1px rgba(0,0,0,0.1); | |
text-transform: uppercase; | |
border-radius: 2px; | |
cursor: default; |
This file contains 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
input { border:1px solid grey; border-radius:2px; padding:2px 10px; } | |
input:link {color:red;} /* unvisited link */ | |
input:visited {color:lime;} /* visited link */ | |
input:hover {color:orange;} /* mouse over link */ | |
input:active {color:blue;} /* selected link */ |
This file contains 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
input { border:1px solid grey; border-radius:2px; padding:2px 10px; } | |
input:link {color:red;} /* unvisited link */ | |
input:visited {color:lime;} /* visited link */ | |
input:hover {color:orange;} /* mouse over link */ | |
input:active {color:blue;} /* selected link */ |
This file contains 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
# HTTP protocol works! | |
nas4free: ufs3 # fetch -T 60 -v http://ftp.freebsd.org/pub/FreeBSD/releases/amd64/amd64/9.2-RELEASE/base.txz | |
looking up ftp.freebsd.org | |
connecting to ftp.freebsd.org:80 | |
requesting http://ftp.freebsd.org/pub/FreeBSD/releases/amd64/amd64/9.2-RELEASE/base.txz | |
local size / mtime: 67671040 / 1380284398 | |
remote size / mtime: 67671964 / 1380284398 | |
base.txz 100% of 64 MB 451 kBps 02m26s | |
nas4free: ufs3 # |
This file contains 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 javax.imageio.ImageIO; | |
import javax.swing.*; | |
import javax.swing.event.InternalFrameEvent; | |
import javax.swing.plaf.basic.BasicInternalFrameUI; | |
import java.awt.*; | |
import java.awt.event.MouseEvent; | |
import java.awt.event.MouseListener; | |
import java.awt.event.MouseMotionListener; | |
public class PhoneWindow { |
This file contains 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 selenium.webdrivers; | |
import org.openqa.selenium.Capabilities; | |
import org.openqa.selenium.ie.InternetExplorerDriver; | |
import org.openqa.selenium.ie.InternetExplorerDriverService; | |
import org.openqa.selenium.remote.Response; | |
import java.util.Map; | |
/** |
This file contains 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
var PartnerDetail = (function ($) { | |
"use strict"; | |
var _partnerId = -1; | |
var getPartnerId = function () { | |
return _partnerId; | |
}; |
This file contains 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 org.springframework.beans.factory.annotation.Value; | |
import org.springframework.boot.SpringApplication; | |
import org.springframework.boot.autoconfigure.SpringBootApplication; | |
import org.springframework.context.annotation.Bean; | |
import javax.servlet.Filter; | |
import java.net.URI; | |
import static hello.HeaderOverrideFilter.buildForwardedHeadersFilter; |
This file contains 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 sun.net.spi.nameservice.NameService; | |
import java.lang.reflect.AccessibleObject; | |
import java.lang.reflect.Field; | |
import java.net.InetAddress; | |
import java.security.AccessController; | |
import java.security.PrivilegedAction; | |
import java.util.List; |
This file contains 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
Empty contextPath | |
null | |
java.lang.NoSuchMethodError: hudson.model.Messages.ExternalJob_DisplayName()Ljava/lang/String; | |
at hudson.model.ExternalJob$DescriptorImpl.getDisplayName(ExternalJob.java:132) | |
at hudson.ExtensionComponent.compareTo(ExtensionComponent.java:97) | |
at hudson.ExtensionComponent.compareTo(ExtensionComponent.java:42) | |
at java.util.ComparableTimSort.binarySort(ComparableTimSort.java:232) | |
at java.util.ComparableTimSort.sort(ComparableTimSort.java:176) | |
at java.util.ComparableTimSort.sort(ComparableTimSort.java:146) | |
at java.util.Arrays.sort(Arrays.java:472) |
OlderNewer