Skip to content

Apache and PHP Notes

Restart apache with command line:/etc/init.d/apache2 restart(Apache 7.x:  sudo systemctl restart apache2) php.ini locaction/etc/php5/apache2(Apache 7.x :  /etc/php/7.2/apache2 Apache error log location/etc/php5/apache2/php_errors.log Apache configuration file location/etc/apache2/apache2.conf

Metronome – Java Source Code

Download images required for the metronome here. import java.awt.BorderLayout;import java.awt.Color;import java.awt.ComponentOrientation;import java.awt.Dimension;import java.awt.EventQueue;import java.awt.FlowLayout;import java.awt.Font;import java.awt.Graphics;import java.awt.Graphics2D;import java.awt.GridLayout;import java.awt.Rectangle;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.awt.event.KeyAdapter;import java.awt.event.KeyEvent;import java.awt.event.MouseAdapter;import java.awt.event.MouseEvent;import… Read More »Metronome – Java Source Code