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
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 Mathieu 'p01' Henri <http://www.p01.org/releases/> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
.focused { | |
background: #abcdef; | |
} | |
</style> | |
<script src="http://code.jquery.com/jquery-latest.js"></script> | |
</head> |
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
// ==UserScript== | |
// @name GitHub - Show pull request numbers | |
// @match https://github.com/*/*/pulls | |
// @match https://github.com/*/*/pulls/* | |
// ==/UserScript== | |
[].slice.call( document.querySelectorAll( ".listings h3" ) ).forEach(function( elem ) { | |
var anchor = elem.getElementsByTagName( "a" )[ 0 ], | |
id = anchor.href.match( /(\d+)$/ )[ 0 ], | |
span = document.createElement( "span" ), |
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
// ==UserScript== | |
// @name GitHub - Add links to Trac for jQuery UI | |
// @match https://github.com/jquery/jquery-ui/* | |
// ==/UserScript== | |
function findAndReplace(searchText, replacement, searchNode) { | |
if (!searchText || typeof replacement === 'undefined') { | |
// Throw error here if you want... | |
return; | |
} |
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
(function( $ ) { | |
module( "autocomplete: events" ); | |
var data = [ "Clojure", "COBOL", "ColdFusion", "Java", "JavaScript", "Scala", "Scheme" ]; | |
$.each([ | |
{ | |
type: "input", | |
selector: "#autocomplete", |
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
test: Modernizr.mq( "only screen and (max-device-width: 480px)" ) || | |
( Modernizr.mq( "only screen and (min-device-width: 480px) and (max-device-width: 800px)" ) && !Modernizr.mq( "only screen and (min-device-width: 768px)" ) ) |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" | |
> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>org.jboss.as.quickstarts</groupId> | |
<artifactId>jboss-as-kitchensink-html5-mobile</artifactId> | |
<version>1.0.0-SNAPSHOT</version> | |
<packaging>pom</packaging> |
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
... | |
<div data-role="content"> | |
<img src="img/aerogear_icon_64px.png" class="mobileicon"/> | |
<p>You have successfully deployed a Java EE 6 web application.</p> | |
<h3>Your application can run on:</h3> | |
... |
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
The declared package "org.jboss.as.quickstarts.html5_mobile.util" does not match the expected package "test1.test1.util" | |
JSONPRequestFilter.java /test1/src/main/java/test1/test1/util line 17 Java Problem |
OlderNewer