(After cloning the wiki locally)
-
Add images to an
images
directory (or subdirectory below it) in your wiki repo. -
In wiki page markup embed an image with this link format:
[[/images/path/to/image.ext|ALT TEXT]]
Param( | |
[Parameter(mandatory)] | |
[string]$source, | |
[Parameter(mandatory)] | |
[string]$dest, | |
[string]$format = "yyyy-MM-dd", | |
[bool]$dryrun = $False | |
) | |
$shell = New-Object -ComObject Shell.Application |
<UserLang name="Gradle" ext="gradle" udlVersion="2.1"> | |
<Settings> | |
<Global caseIgnored="yes" allowFoldOfComments="no" foldCompact="no" forcePureLC="0" decimalSeparator="0" /> | |
<Prefix Keywords1="no" Keywords2="no" Keywords3="no" Keywords4="no" Keywords5="no" Keywords6="no" Keywords7="no" Keywords8="no" /> | |
</Settings> | |
<KeywordLists> | |
<Keywords name="Comments">03/* 04*/ 00// 01 02</Keywords> | |
<Keywords name="Numbers, prefix1"></Keywords> | |
<Keywords name="Numbers, prefix2"></Keywords> | |
<Keywords name="Numbers, extras1"></Keywords> |
body, p | |
{ | |
color: #EFEFAF; | |
background-color: #404040; | |
} | |
code, pre | |
{ | |
color: #8ACCCF; | |
font-weight: 700; |
(After cloning the wiki locally)
Add images to an images
directory (or subdirectory below it) in your wiki repo.
In wiki page markup embed an image with this link format:
[[/images/path/to/image.ext|ALT TEXT]]
# -*- Conf -*- | |
[color] | |
branch = auto | |
diff = auto | |
status = auto | |
showbranch = auto | |
ui = true | |
# color.branch | |
# A boolean to enable/disable color in the output of git-branch(1). May be set to always, false (or |
import java.io.*; | |
import java.util.*; | |
import java.text.*; | |
import java.math.*; | |
import java.util.regex.*; | |
public class SubSequenceTest { | |
public static void main(String[] args) { | |
Scanner in = new Scanner(System.in); |
/** | |
* TT 2017-10-20 | |
* | |
* solution for "Super Reduced String" | |
* https://www.hackerrank.com/challenges/reduced-string | |
* | |
* similar "brute force" ways: | |
* | |
* with stringbuilder | |
* https://github.com/ebolat/HackerRank/blob/master/Algorithms/Strings/Super%20Reduced%20String/Solution.java |
import java.io.*; | |
import java.util.*; | |
import java.text.*; | |
import java.math.*; | |
import java.util.regex.*; | |
public class PangramCheck { | |
public static void main(String args[] ) throws Exception { | |
/* Enter your code here. Read input from STDIN. Print output to STDOUT */ | |
// Output "pangram" or "not pangram" depending if input sentence contains |