This file contains 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
<?php | |
abstract class AbstractClass { // Could be an interface | |
public function concentreMethod() | |
{ | |
echo('I am a concrete method which will not be overwritten'); | |
} | |
public function otherConcentreMethod() | |
{ |
This file contains 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
➜ digital-toys-web-application git:(master) sh startDt.sh | |
2018-12-19 19:06:03.767:INFO::main: Logging initialized @1117ms | |
2018-12-19 19:06:03.773:INFO:oejr.Runner:main: Runner | |
WARNING: An illegal reflective access operation has occurred | |
WARNING: Illegal reflective access by org.eclipse.jetty.util.BufferUtil (file:/host/GitHub/digital-toys-web-application/jetty-runner.jar) to field java.nio.MappedByteBuffer.fd | |
WARNING: Please consider reporting this to the maintainers of org.eclipse.jetty.util.BufferUtil | |
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations | |
WARNING: All illegal access operations will be denied in a future release | |
2018-12-19 19:06:03.995:INFO:oejs.Server:main: jetty-9.3.7.v20160115 | |
2018-12-19 19:06:13.381:INFO:/:main: No Spring WebApplicationInitializer types detected on classpath |
This file contains 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
Jan 19, 2019 2:17:31 PM org.pentaho.reporting.libraries.base.boot.AbstractBoot start | |
INFO: LibSerializer 1.1.6.10682 started. | |
Jan 19, 2019 2:17:32 PM org.pentaho.reporting.libraries.base.boot.AbstractBoot start | |
INFO: LibBase 1.1.6.10682 started. | |
Jan 19, 2019 2:17:32 PM org.pentaho.reporting.libraries.base.boot.AbstractBoot start | |
INFO: LibLoader 1.1.6.10682 started. | |
Jan 19, 2019 2:17:32 PM org.pentaho.reporting.libraries.base.boot.AbstractBoot start | |
INFO: LibRepository 1.1.6.10682 started. | |
Jan 19, 2019 2:17:32 PM org.pentaho.reporting.libraries.base.boot.AbstractBoot start | |
INFO: LibFonts 1.1.6.10682 started. |
This file contains 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
for word in words: | |
timestamp_list.add(timestamps.find_time_stamp_with(word)) | |
for timestamp in timestamp_list: | |
list_of_short_videos.add(videos.extract_shorttime_at(timestamp)) | |
final_video = list_of_short_videos.glueAll() |
This file contains 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 PalindromeCheckerTest | |
{ | |
@Test | |
public void checkTruePalindrome() | |
{ | |
Boolean result = new PalindromeChecker().isPalindrome("abba"); | |
assertEquals("The true palindrome was not detected", result, true); | |
} | |
@Test |
This file contains 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
{ | |
"responses": [ | |
{ | |
"source": "miscellaneous", | |
"type": "single-word-subject", | |
"field": "subject", | |
"start": 0, | |
"end": 4, | |
"weight": 1, | |
"message": "This is a single word subject line. These tend to be vague. Will this help a recipient to decide what to do with this message?", |
This file contains 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
. |
This file contains 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
Scenario: I perform the login | |
When Perform login |
OlderNewer