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
<?php | |
/** | |
* Person class | |
* | |
* @author altayalp <[email protected]> | |
*/ | |
class Person | |
{ | |
private $name; |
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
-- Check scheduler status before: | |
show processlist; | |
-- If you can see "event_scheduler" to user column, event scheduler is on. Else you must activate it. | |
SET GLOBAL event_scheduler = ON; | |
-- If you want to off event scheduler following this query. |
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.awt.Dimension; | |
import javax.swing.JFrame; | |
/** | |
* Simple swing fully maximized window example. | |
* | |
* @author altayalp | |
*/ | |
public class FullMaximized { |
NewerOlder