```
import java.text.Format;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
public class GetDate
{
public static void main(String[] args)
{
Format f = new SimpleDateFormat("yyyy-MM-dd");
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
https://en.wikipedia.org/wiki/Giau_Pass |
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
"He's sensation but he doesn't know it keep him on as a property man" - Charlie Chaplin(The Circus film) | |
"Failure is not an option, it's a requirement." -Dom Mazetti | |
"If you cannot find peace within yourself, you will never find it anywhere else." - Marvin Gaye | |
Before you start, be clear about what you want your reader to do after you end | |
“We realize the importance of our voices only when we are silenced.” Malala Yousafzai |
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
<!-- Button trigger modal --> | |
<button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal"> | |
Launch demo modal | |
</button> | |
<!-- Modal --> | |
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> | |
<div class="modal-dialog"> | |
<div class="modal-content"> | |
<div class="modal-header"> |
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 startDate = moment("2017-12-11"); | |
var endDate = moment("2017-12-12"); | |
var date = moment("2017-12-11"); | |
if (startDate <= date && date <= endDate) { | |
alert("Yes"); | |
} else { | |
alert("No! :("); | |
} |
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
https://github.com/alisson-acioli/csvtojson |
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
Believes that the code should be as beautiful as the design. |
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 max = -1; | |
$("li").each(function() { | |
var h = $(this).height(); | |
max = h > max ? h : max; | |
}); | |
alert(max); |