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://en.wikipedia.org/wiki/JPEG_File_Interchange_Format | |
http://dev.exiv2.org/projects/exiv2/wiki/The_Metadata_in_JPEG_files | |
http://paulbourke.net/dataformats/bitmaps/ |
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
точно мережі | |
точно мені не вистачає адміністрування юнікс систем | |
дуже часто треба ПХП | |
лінійка JavaScript від сервера до клієнта | |
мені не вистачає реально Java EE | |
багатопоточність | |
робота з базами | |
XML + JSON | |
автоматичне і мануальне тестування | |
continuous integration |
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
String url = "http://my-site.com/text.txt"; | |
String fileName = "/path/to/file/to/save/text.txt"; | |
URL website = new URL(url); | |
ReadableByteChannel rbc = Channels.newChannel(website.openStream()); | |
FileOutputStream fos = new FileOutputStream(fileName); | |
fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE); | |
fos.close(); | |
rbc.close(); |
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
<build> | |
<plugins> | |
<plugin> | |
<!-- Build an executable JAR --> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-jar-plugin</artifactId> | |
<version>3.0.2</version> | |
<configuration> | |
<archive> | |
<manifest> |
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
// script.js | |
(function(exports){ | |
// public function | |
// can be accessed outside of this file | |
exports.publicFunction = function(param1, param2){ | |
}; | |
// private 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
<html> | |
<head> | |
<script src="https://connect.facebook.net/en_US/sdk.js"></script> | |
</head> | |
<body> | |
<script type="text/javascript"> | |
var PAGE_ID = 'page_id'; | |
var PAGE_ACCESS_TOKEN = 'access_tooken_to_page'; | |
window.fbAsyncInit = function() { | |
FB.init({ |
NewerOlder