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
| require 'chunky_png' | |
| original = ChunkyPNG::Image.from_file "original.png" | |
| target = ChunkyPNG::Image.new(original.width + (355 * 3), original.height) | |
| break_columns = [100, 310 + 100, 620 + 100] | |
| target_x = 0 | |
| (0...original.width).each do |x| |
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
| Anders Bengtsson | |
| David Wennergren | |
| Martin Svalin | |
| Joakim Ekberg | |
| Brian Riddle | |
| Jonas Forsberg | |
| Richard Johansson | |
| Henrik Nyh | |
| Teddy Zetterlund | |
| Joakim Kolsjö |
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
| Index: facebook-java-api/src/main/java/com/google/code/facebookapi/ExtensibleClient.java | |
| =================================================================== | |
| --- facebook-java-api/src/main/java/com/google/code/facebookapi/ExtensibleClient.java (revision 854) | |
| +++ facebook-java-api/src/main/java/com/google/code/facebookapi/ExtensibleClient.java (arbetskopia) | |
| @@ -11,9 +11,7 @@ | |
| import java.io.OutputStream; | |
| import java.io.Reader; | |
| import java.io.StringWriter; | |
| -import java.net.HttpURLConnection; | |
| -import java.net.MalformedURLException; |