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
#!/bin/bash | |
if [ "$1" = "clean" ]; then | |
find . \ | |
! -name update.sh \ | |
! -name atom-python.patch \ | |
! -name PKGBUILD \ | |
-type f -delete | |
find . ! -name . -type d -exec rm -r {} + | |
exit 0 |
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
/* | |
Compiling | |
Windows: | |
g++ test.cpp -o test -std=gnu++11 -lfltk -lfltk_images -lole32 -luuid -lcomctl32 -lwsock32 -lgdi32 -lcomdlg32 | |
*/ | |
#include <FL/Fl.H> | |
#include <FL/Fl_Window.H> | |
#include <FL/Fl_Button.H> |
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
public class LatLong { | |
private double latitude; | |
private double longitude; | |
public LatLong() { | |
super(); | |
} | |
public LatLong(double latitude, double longitude) { | |
super(); |
NewerOlder