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
| var B = require('./B'); | |
| console.log("hello"); |
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
| /******************************************************************************* | |
| Copyright 2012 Benjamin Fagin | |
| Licensed under the Apache License, Version 2.0 (the "License"); | |
| you may not use this file except in compliance with the License. | |
| You may obtain a copy of the License at | |
| http://www.apache.org/licenses/LICENSE-2.0 | |
| Unless required by applicable law or agreed to in writing, software |
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
| public class NestedClassesExample { | |
| public static void main(String args[]) { | |
| Child child = new Child(); | |
| child.print(); | |
| } | |
| public static class ParentA { | |
| public void printA() { |
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
| javascript:(function()%7B(function%20()%20%7Bvar%20jsCode%20%3D%20document.createElement('script')%3BjsCode.setAttribute('src'%2C%20'https%3A%2F%2Fraw.github.com%2Fgist%2F3769415%2Fslcal.js')%3Bdocument.body.appendChild(jsCode)%3B%7D())%7D)() |
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
| module Jekyll | |
| class LessCssFile < StaticFile | |
| def write(dest) | |
| # do nothing | |
| end | |
| end | |
| class LessJsGenerator < Generator | |
| safe true |
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
| public interface ContextAware<T> { | |
| void beforeMethod(AtomicReference<T> context); | |
| } |
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 redis.clients.jedis.Jedis; | |
| import redis.clients.jedis.JedisPool; | |
| public class RedisResource extends TryWithResource<Jedis> { | |
| private final JedisPool pool; | |
| public RedisResource(JedisPool pool) { | |
| this.pool = pool; | |
| } |
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
| registerStudent(student, new HandlerChain<RegistrationStep>() | |
| .on(RegistrationStep.NEW_STUDENT, new FlexibleHandler() { | |
| void handle(NewRegistrant registrant) { | |
| System.out.println(registrant.info()); | |
| } | |
| }) | |
| .on(RegistrationStep.USER_EXISTS, new FlexibleHandler() { | |
| void handle(NewRegistrant registrant, UserContainer existingUser) { | |
| System.out.println(registrant.info()); | |
| System.out.println(existingUser.info()); |
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
| git checkout $1 | |
| git pull origin $1 | |
| git tag $1.final | |
| git checkout master | |
| git branch -d $1 | |
| git push origin --tags :$1 |
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
| public enum API { | |
| @Deprecated Version1, | |
| Version2( | |
| add(Feature.BLUE_ICONS) | |
| ), | |
| Version3( | |
| parent(Version2), |
OlderNewer