git remote show origin
git remote set-url origin git://new.url.here
Life is a dream for the wise, a game for the fool, a comedy for the rich, a tragedy for the poor. Sholom Aleichem
Device compatibility
<
meta
name
=
"viewport"
content
=
"width=device-width, initial-scale=1.0"
>
Language and character encode
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<
div
class
=
"container"
>
<
div
class
=
"row"
>
<
div
class
=
"col-xs-6"
>col-xs-6</
div
>
<
div
class
=
"col-xs-6"
>col-xs-6</
div
>
</
div
>
</
div
>
Fonts
https://www.myfonts.com/topwebfonts/
https://www.google.com/fonts
https://www.youtube.com/watch?v=vUn9sBStMLA
$( "#dataTable tbody tr" ).on( "click", function() {
console.log( $( this ).text() );
});
String str = "blabla http://www.mywebsite.com blabla";
String regex = "((https?:\\/\\/)?(www.)?(([a-zA-Z0-9-]){2,}\\.){1,4}([a-zA-Z]){2,6}(\\/([a-zA-Z-_/.0-9#:+?%=&;,]*)?)?)";
Matcher m = Pattern.compile(regex).matcher(str);
if (m.find()) {
String url = m.group(); //value "http://www.mywebsite.com"
}
try {
sc2 = new Scanner(new File("src/main/resources/text.txt"));
while (sc2.hasNextLine()) {
String line = sc2.nextLine();
String clientString = StringUtils.substringBetween(line, "(", ")");
System.out.println( i+ " "+clientString);
i++;
}
} catch (FileNotFoundException e) {
}
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
</dependency>