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 IQueryable : IEnumerable { | |
Type ElementType { get; } | |
Expression Expression { get; } | |
IQueryProvider Provider { get; } | |
} | |
public interface IQueryable<T> : IEnumerable<T>, IQueryable, IEnumerable { | |
} |
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 java.io.BufferedReader; | |
import java.io.InputStreamReader; | |
import java.math.*; | |
public class Main { | |
// StringUtils#strip(String str, String stripChars) From ApacheCommons | |
public static String stripStart(String str, String stripChars) { | |
int strLen; | |
if (str == null || (strLen = str.length()) == 0) { | |
return str; |
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 java.io.BufferedReader; | |
import java.io.InputStreamReader; | |
import java.math.*; | |
public class Main { | |
// StringUtils#strip(String str, String stripChars) From ApacheCommons | |
public static String stripStart(String str, String stripChars) { | |
int strLen; | |
if (str == null || (strLen = str.length()) == 0) { | |
return str; |
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
/* | |
* CostEstmator | |
* JOIN順序を返す | |
*/ | |
var _ = require('lodash'); | |
var stats = [ | |
{ | |
viewname: "product", | |
columnsize: |
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
/* | |
* CostEstmator | |
* JOIN順序を返す | |
*/ | |
var _ = require('lodash'); | |
var stats = [ | |
{ | |
viewname: "product", | |
columnsize: |
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
/* | |
* CostEstmator | |
* JOIN順序を返す | |
*/ | |
var _ = require('lodash'); | |
var stats = [ | |
{ | |
id: "p", | |
viewname: "product", |
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
private void method(ArrayList<String> arg){ | |
arg = new ArrayList<String>(); | |
arg.add("PHP"); | |
} | |
ArrayList<String> list = new ArrayList<String>(); | |
list.add("Java"); | |
method(list); | |
System.out.println(list); // [Java] |
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
private void method(ArrayList<String> arg){ | |
arg = new ArrayList<String>(); | |
arg.add("PHP"); | |
} | |
ArrayList<String> list = new ArrayList<String>(); | |
list.add("Java"); | |
method(list); | |
System.out.println(list); // [Java] |
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
private void method(ArrayList<String> arg){ | |
arg = new ArrayList<String>(); | |
arg.add("PHP"); | |
} | |
ArrayList<String> list = new ArrayList<String>(); | |
list.add("Java"); | |
method(list); | |
System.out.println(list); // [Java] |
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
Dir::glob("./*.scss").each { |filename| | |
filename.slice!(".scss") | |
system("sass-convert #{filename}.scss #{filename}.sass") | |
system("rm ./#{filename}.scss") | |
puts ("converted #{filename}.scss to #{filename}.sass") | |
} |
OlderNewer