The World Wide Web is by default open and public facing without much regard for organisational privacy and security. Similarly, many of the platforms currently available cannot insure privacy and security, due to the way they function as centralised, singular and public facing websites which allow for all who wish to create an account. Occasionally these websites allow organisations to create groups and for users to associate with that group, but this does not ensure that internal information is not shared with other users, and doesn't ensure that the platform's company or hackers might not steal internal information (this [would be solved] by offering the platform as a self-hosted, decentralised and distributable server solution designed for installation by a person with no server knowledge)
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
$ -> | |
composer= composer or {} | |
composer.locationservices= | |
showPosition: (position) -> | |
document.geoclocation=[ | |
position.coords.latitude | |
position.coords.longitude | |
] | |
getlocation: -> | |
if navigator.geolocation |
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
class Routes extends Polarlicht3/HTTPRoutesManager | |
public f Main<> | |
@RegisterRoute <String "/", new Polarlicht3/Examples/Controllers/Welcome>; | |
@RegisterRoute <String "/signin", new Polarlicht3/Controllers/Auth/Signin>; | |
@RegisterRoute <String "/register", new Polarlicht3/Controllers/Auth/Register>; | |
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
<IfModule mod_rewrite.c> | |
<IfModule mod_negotiation.c> | |
Options -MultiViews | |
</IfModule> | |
RewriteEngine On | |
RewriteBase /laravel51/public/ | |
# change above to your site i.e., RewriteBase /whatever/public/ | |
# Redirect Trailing Slashes... |
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/r0adkll/Slidr | |
https://github.com/liaohuqiu/android-Ultra-Pull-To-Refresh | |
https://github.com/umano/AndroidSlidingUpPanel | |
https://github.com/DanielMartinus/konfetti | |
https://github.com/vsvankhede/easyfonts | |
https://github.com/JoanZapata/android-pdfview | |
https://github.com/flavioarfaria/KenBurnsView | |
https://github.com/felipecsl/GifImageView | |
https://github.com/hdodenhof/CircleImageView | |
https://github.com/tasomaniac/EmailAutoCompleteTextView |
1 Substitution Algo 1 Transposition Algo
Combine for CRWA
C = Cyphertext M = Plaintext message K = Key E = Encrypt Function
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
f Main <String[] args> { | |
yield new \GeoChat\GeoServices\Coord < | |
\FloatUtils\Float _latitude, | |
\FloatUtils\Float _longitude | |
>; | |
f isContainedInPolygon <\GeoChat\GeoServices\Polygon _polygon>{ | |
// Check Contraints | |
\var rectangularCheck = Reduce <_polygon.points.asArray, Int> (_point, i) => { | |
\var latCheck = (_point.latitude < @_latitude); | |
\var longCheck = (_point.longitude < @_longitude) |
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
{ | |
"status": "ok" | |
} |
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
+ Message inherits \MySQL\DAO\Model { | |
String tables = "messages"; | |
String msgContents = null; | |
String msgOrigin = null; | |
String msgRecipient = null; | |
Boolean isFirstSave = true; | |
public f constructor < | |
String _msgContents, |
OlderNewer