View DataHandler.java
This file contains 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
package org.dedunumax.gist | |
import java.io.FileInputStream; | |
import java.io.FileOutputStream; | |
import java.io.IOException; | |
import java.io.ObjectInputStream; | |
import java.io.ObjectOutputStream; | |
import java.util.List; | |
public class DataHandler { |
View terminal-color-scheme.xml
This file contains 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
<gconfentryfile> | |
<entrylist base="/apps/gnome-terminal"> | |
<entry> | |
<key>global/active_encodings</key> | |
<schema_key>/schemas/apps/gnome-terminal/global/active_encodings</schema_key> | |
<value> | |
<list type="string"> | |
<value> | |
<string>UTF-8</string> | |
</value> |
View ImageCutter.java
This file contains 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
package org.dedunumax.imagecutter; | |
import java.awt.image.BufferedImage; | |
import java.io.File; | |
import java.io.IOException; | |
import javax.imageio.ImageIO; | |
public class ImageCutter { | |
public static void main(String[] args) throws IOException { |
View Dedunu.bf
This file contains 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
+++++ +++++ | |
[ | |
> +++++ ++ | |
> +++++ +++++ | |
> +++++ +++++ + | |
<<< - | |
] | |
> -- . | |
> + . | |
- . |
View service-context.xml
This file contains 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
<?xml version='1.0' encoding='UTF-8'?> | |
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'> | |
<!-- | |
Licensed to the Apache Software Foundation (ASF) under one or more | |
contributor license agreements. See the NOTICE file distributed with | |
this work for additional information regarding copyright ownership. | |
The ASF licenses this file to You under the Apache License, Version 2.0 | |
(the "License"); you may not use this file except in compliance with | |
the License. You may obtain a copy of the License at | |
View size.get.desc.xml
This file contains 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
<webscript> | |
<shortname>File Size</shortname> | |
<description>Returns the file size of the given nodeRef</description> | |
<url>/size?nodeRef={RefForNode}</url> | |
<authentication>user</authentication> | |
<format default="html">extension</format> | |
<family>File Size Utilities</family> | |
</webscript> |
View size.get.html
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Check file size</title> | |
</head> | |
<body> | |
<div> |
View FileSizeWebScript.java
This file contains 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
package org.dedunu.alfresco; | |
import java.util.HashMap; | |
import java.util.List; | |
import java.util.Map; | |
import org.alfresco.model.ContentModel; | |
import org.alfresco.service.cmr.repository.ChildAssociationRef; | |
import org.alfresco.service.cmr.repository.ContentData; | |
import org.alfresco.service.cmr.repository.NodeRef; |
View kdtree-sample.js
This file contains 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
/* | |
* You can download geo.txt from - https://github.com/Adslot/node-puzzle/blob/master/01-geo-lookup/data/geo.txt | |
*/ | |
var fs = require('fs'); | |
var kd = require('kdtree'); | |
var kdtree = new kd.KDTree(3); | |
//var kdtree = new kd.KDTree(4); | |
View .gitignore Alfresco
This file contains 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
########################## | |
## Alfresco | |
########################## | |
**/alf_data_dev | |
**/solr_home | |
**/solr.log* | |
**/share.log* | |
**/alfresco.log* | |
########################## |
OlderNewer