yfel + opensource 1422
Graysky Plugins For Eclipse
2 days ago by yfel
"LogWatcher adds a view to Eclipse that allows log files to be monitored for changes, similar to the Unix tail utility."
eclipse
plugins
java
logging
debugging
tools
geek
technology
software
opensource
2 days ago by yfel
overtone/byte-spec
4 days ago by yfel
"A declarative DSL for reading and writing binary file formats
This library implements a small DSL that is used to describe binary serialization formats. It was written to support reading and writing SuperCollider synthesizer definition files for Project Overtone, but it can be used for many binary file formats, network packets, etc..."
clojure
parsing
fileformats
geek
technology
software
programming
dsl
opensource
libs
This library implements a small DSL that is used to describe binary serialization formats. It was written to support reading and writing SuperCollider synthesizer definition files for Project Overtone, but it can be used for many binary file formats, network packets, etc..."
4 days ago by yfel
krukow/clj-ds
8 days ago by yfel
"Clojure's data structures modified for use outside of Clojure"
java
clojure
functional
programming
concurrency
algorithms
geek
technology
software
opensource
libs
8 days ago by yfel
Log JDBC operations with Log4jdbc - Java Code Geeks
11 days ago by yfel
adds log4j loggers for various levels of info about JDBC operations
java
logging
sql
query
visualization
statistics
geek
technology
programming
opensource
libs
11 days ago by yfel
The Architecture of Open Source Applications
12 days ago by yfel
"Architects look at thousands of buildings during their training, and study critiques of those buildings written by masters. In contrast, most software developers only ever get to know a handful of large programs well—usually programs they wrote themselves—and never study the great programs of history. As a result, they repeat one another's mistakes rather than building on one another's successes.
Our goal is to change that. In these two books, the authors of four dozen open source applications explain how their software is structured, and why. What are each program's major components? How do they interact? And what did their builders learn during their development? In answering these questions, the contributors to these books provide unique insights into how they think."
books
architecture
opensource
programming
software
geek
technology
howto
reference
Our goal is to change that. In these two books, the authors of four dozen open source applications explain how their software is structured, and why. What are each program's major components? How do they interact? And what did their builders learn during their development? In answering these questions, the contributors to these books provide unique insights into how they think."
12 days ago by yfel
bpython interpreter
12 days ago by yfel
a better repl, kinda like IPython
python
repl
shell
hci
programming
language
tools
geek
technology
software
opensource
color
12 days ago by yfel
malcolmsparks/clj-logging-config
15 days ago by yfel
"A logging facility in Clojure is provided by the clojure.tools.logging module. This searches the JVM classpath for one of the various logging frameworks to delegate logging statements to.
While this is very useful, logging in Java has always been complicated to configure correctly. Fortunately, the two major logging 'back-ends' in Java (log4j and 'java.util.logging') support programmatic configuration so it is easy to replace the configuration file mechanisms with something that is easier and more flexible for Clojure programmers.
This library supports easy configuration via Clojure rather than Java properties files and XML. It is the author's belief that these confusing configuration formats reflect the static nature of the Java language itself and that Clojure should not inherit such complexity."
clojure
logging
programming
libs
api
java
geek
technology
software
opensource
While this is very useful, logging in Java has always been complicated to configure correctly. Fortunately, the two major logging 'back-ends' in Java (log4j and 'java.util.logging') support programmatic configuration so it is easy to replace the configuration file mechanisms with something that is easier and more flexible for Clojure programmers.
This library supports easy configuration via Clojure rather than Java properties files and XML. It is the author's belief that these confusing configuration formats reflect the static nature of the Java language itself and that Clojure should not inherit such complexity."
15 days ago by yfel
git playback
19 days ago by yfel
"So what exactly is git-playback? It's a bash script that goes through all commits in the current branch of repository and creates a slideshow using the specified files. "
git
versioning
visualization
slides
tools
presentation
education
geek
technology
software
programming
opensource
19 days ago by yfel
*JS : Low-Level JavaScript
20 days ago by yfel
"*JS is a typed dialect of JavaScript that offers a C-like type system with manual memory management. It compiles to JavaScript and lets you write memory-efficient and GC pause-free code less painfully, in short, *JS is the bastard child of JavaScript and C. *JS is early research prototype work, so don't expect anything rock solid just yet. The research goal here is to explore low-level statically typed features in a high-level dynamically typed language. Think of it as inline assembly in C, or the unsafe keyword in C#. It's not pretty, but it gets the job done."
javascript
compiler
c/++
programming
geek
technology
software
opensource
performance
20 days ago by yfel
Chris Granger - Overtone and ClojureScript
21 days ago by yfel
he livecodes a noir app and cljs client which controls overtone
clojure
clojurescript
music
video
livecoding
javascript
web
development
synthesizer
geek
technology
software
programming
opensource
howto
jquery
overtone
21 days ago by yfel
| CommonCrawl
23 days ago by yfel
nonprofit open web index you can crunch with your own hadoop on EC2 instances
opensource
research
statistics
web
hadoop
datamining
visualization
geek
technology
software
programming
database
23 days ago by yfel
Pallet, DevOps for the JVM
24 days ago by yfel
"Pallet is platform for agile and programmatic automation of infrastructure in the cloud, on server racks or directly on virtual machines. Pallet provides cloud provider and operating system independence, and allows for an unprecedented level of customization."
devops
jvm
cloud
cluster
sysadmin
clojure
libs
tools
geek
technology
software
opensource
programming
24 days ago by yfel
Mocha - the fun, simple, flexible JavaScript test framework
25 days ago by yfel
"Mocha is a feature-rich JavaScript test framework running on node and the browser, making asynchronous testing simple and fun. Mocha tests run serially, allowing for flexible and accurate reporting, while mapping uncaught exceptions to the correct test cases. "
javascript
testing
tools
libs
browser
node.js
geek
technology
software
opensource
async
coffeescript
25 days ago by yfel
Gmvault: gmail backup
26 days ago by yfel
"Backup and restore your gmail account at will.
Liberate your emails and never lose that part of your life."
backup
email
tools
geek
technology
software
opensource
google
Liberate your emails and never lose that part of your life."
26 days ago by yfel
ParFunk: How to write hybrid CPU/GPU programs with Haskell
28 days ago by yfel
"What’s better than programming a GPU with a high-level, Haskell-embedded DSL (domain-specific-language)? Well, perhaps writing portable CPU/GPU programs that utilize both pieces of silicon—with dynamic load-balancing between them—would fit the bill.
This is one of the heterogeneous programming scenarios supported by our new meta-par packages. A draft paper can be found here, which explains the mechanism for building parallel schedulers out of "mix-in" components. In this post, however, we will skip over that and take a look at CPU/GPU programming specifically."
gpu
haskell
functional
programming
parallelism
performance
geek
technology
software
howto
opensource
This is one of the heterogeneous programming scenarios supported by our new meta-par packages. A draft paper can be found here, which explains the mechanism for building parallel schedulers out of "mix-in" components. In this post, however, we will skip over that and take a look at CPU/GPU programming specifically."
28 days ago by yfel
Fixie.js is an open source tool that that automatically adds filler content to HTML documents.
4 weeks ago by yfel
"Adding lorem ipsum text to HTML documents involves copy-pasting, manual editing, and increasingly unwieldy code.
By interpreting your semantic HTML5 tags, Fixie will automagically add the right type of content in the right places. Headings, paragraphs, links, images, sections... trust me, it's all there. That way you can focus on your design, instead of finding the right filler content."
javascript
html
web
development
tools
generator
geek
technology
software
opensource
By interpreting your semantic HTML5 tags, Fixie will automagically add the right type of content in the right places. Headings, paragraphs, links, images, sections... trust me, it's all there. That way you can focus on your design, instead of finding the right filler content."
4 weeks ago by yfel
Querydsl
4 weeks ago by yfel
""""
Querydsl is a framework which enables the construction of type-safe SQL-like queries for multiple backends including JPA, JDO and SQL in Java.
Instead of writing queries as inline strings or externalizing them into XML files they are constructed via a fluent API.
- Code completion in IDE (all properties, methods and operations can be expanded in your favorite Java IDE)
- Almost no syntactically invalid queries allowed (type-safe on all levels)
- Domain types and properties can be referenced safely (no Strings involved!)
- Adopts better to refactoring changes in domain types
- Incremental query definition is easier
"""
java
sql
database
query
language
dsl
geek
technology
software
programming
opensource
libs
api
Querydsl is a framework which enables the construction of type-safe SQL-like queries for multiple backends including JPA, JDO and SQL in Java.
Instead of writing queries as inline strings or externalizing them into XML files they are constructed via a fluent API.
- Code completion in IDE (all properties, methods and operations can be expanded in your favorite Java IDE)
- Almost no syntactically invalid queries allowed (type-safe on all levels)
- Domain types and properties can be referenced safely (no Strings involved!)
- Adopts better to refactoring changes in domain types
- Incremental query definition is easier
"""
4 weeks ago by yfel
Java EE 6 and Glassfish on a BeagleBoard xM Embedded System
4 weeks ago by yfel
*very* embedded glassfish
java
glassfish
embedded
software
geek
technology
programming
howto
opensource
4 weeks ago by yfel
Vagrant - Virtualized development for the masses.
5 weeks ago by yfel
"Virtualized development made easy.
Create and configure lightweight, reproducible, and portable development environments."
deployment
virtualization
development
ruby
programming
geek
technology
software
tools
devtools
opensource
porting
Create and configure lightweight, reproducible, and portable development environments."
5 weeks ago by yfel
frenchy64/typed-clojure
5 weeks ago by yfel
"Clojure with a type system, as a library."
looks a bit haskelly
clojure
typetheory
functional
programming
haskell
geek
technology
software
opensource
libs
looks a bit haskelly
5 weeks ago by yfel
Laconic DOM Library
5 weeks ago by yfel
javascript DSL for synthesizing DOM elements. probably slower than html though.
html
browser
javascript
dsl
libs
geek
technology
software
opensource
5 weeks ago by yfel
brehaut/necessary-evil
5 weeks ago by yfel
"necessary-evil is an implementation of XML-RPC built on top of the ring http library for Clojure. XML-RPC is a bit nasty, but it is the basis of a number of other standards such as certain blogging APIs and Ping Back."
clojure
xml
rpc
standards
lisp
functional
programming
network
geek
technology
software
opensource
libs
jvm
5 weeks ago by yfel
JavaEE Examples
5 weeks ago by yfel
TomEE: Apache Tomcat with EE example projects
apache
java
web
development
examples
geek
technology
software
programming
opensource
howto
5 weeks ago by yfel
jlongster/dcpu-lisp
6 weeks ago by yfel
"LCPU is a simple Lisp-like language that compiles to optimized DCPU-16 assembly code. It is a very restricted subset of Lisp. There is no GC, and thus no data structures or run-time closures."
games
lisp
0x10c
functional
assembly
programming
geek
technology
software
opensource
humour
6 weeks ago by yfel
sqlkorma
6 weeks ago by yfel
clojure DSL for SQL and entities
clojure
database
dsl
sql
api
programming
functional
geek
technology
software
opensource
libs
6 weeks ago by yfel
spock - the enterprise ready specification framework - Google Project Hosting
6 weeks ago by yfel
"Spock is a testing and specification framework for Java and Groovy applications. What makes it stand out from the crowd is its beautiful and highly expressive specification language. Thanks to its JUnit runner, Spock is compatible with most IDEs, build tools, and continuous integration servers. Spock is inspired from JUnit, jMock, RSpec, Groovy, Scala, Vulcans, and other fascinating life forms."
java
groovy
testing
tools
dsl
geek
technology
programming
scripts
opensource
6 weeks ago by yfel
GRC | Flexible One-Time Password MetaSystem
6 weeks ago by yfel
nice paper-based one-time pad system
security
crypto
opensource
tools
software
geek
technology
programming
6 weeks ago by yfel
javatari
6 weeks ago by yfel
"A multiplayer Atari 2600 emulator written in pure Java with no external libs."
atari
games
java
emulator
opensource
geek
technology
software
programming
nostalgia
retro
6 weeks ago by yfel
Home · sonyericssondev/ApkAnalyser Wiki
6 weeks ago by yfel
"ApkAnalyser is a static, virtual analysis tool for examining and validating the development work of your Android™ app. It's a complete tool chain which supports modification of the binary application with more printouts. You are then able to repack, install, run and verify the result from logcat. ApkAnalyser also supports resource analysis, and you can decode XML, look up resource references and detect potential issues in your app."
android
tools
devtools
development
programming
visualization
verification
staticassurance
geek
technology
software
reverseengineering
opensource
java
xml
6 weeks ago by yfel
Twinside/Juicy.Pixels
6 weeks ago by yfel
"This library provide saving & loading of different picture formats for the Haskell language. The aim of the library is to be as lightweight as possible, you ask it to load an image, and it'l dump you a big Vector full of juicy pixels. Or squared pixels, or whatever, as long as they're unboxed."
haskell
libs
images
graphics
programming
functional
geek
technology
software
opensource
fileformats
6 weeks ago by yfel
Find java class files in JAR or ZIP library with JarScan and JarScan Online
6 weeks ago by yfel
"Use JarScan when you are having problems finding a class that you need in order to compile your project."
java
tools
cli
libs
programming
geek
technology
software
opensource
6 weeks ago by yfel
GaloisInc (Galois, Inc.)
8 weeks ago by yfel
Galois' github repo
haskell
functional
programming
opensource
tools
libs
geek
technology
software
8 weeks ago by yfel
How to GitHub: Fork, Branch, Track, Squash and Pull Request - Gun.io
9 weeks ago by yfel
guide to the technical and social aspects of open source development on github
git
howto
tips
programming
tutorial
opensource
social
geek
technology
9 weeks ago by yfel
Shrinkwrap - JBoss Community
9 weeks ago by yfel
"Shrinkwrap provides a simple mechanism to assemble archives like JARs, WARs, and EARs with a friendly, fluent API."
java
testing
packaging
tools
libs
opensource
geek
technology
software
9 weeks ago by yfel
dexmaker - Programmatic code generation for Android. - Google Project Hosting
10 weeks ago by yfel
"A Java-language API for doing compile time or runtime code generation targeting the Dalvik VM. Unlike cglib or ASM, this library creates Dalvik .dex files instead of Java .class files."
dalvik
android
programming
metaprogramming
java
geek
technology
software
opensource
libs
tools
10 weeks ago by yfel
Code Generation Library - Code Generation Library
10 weeks ago by yfel
"cglib is a powerful, high performance and quality Code Generation Library, It is used to extend JAVA classes and implements interfaces at runtime."
java
programming
metaprogramming
libs
tools
jvm
geek
technology
software
opensource
10 weeks ago by yfel
juven/maven-bash-completion
10 weeks ago by yfel
"Maven by default does not distribute with a Bash auto completion script, only a very simple guide is provided. This script gives you more to help your daily Maven build."
java
maven
bash
unix
shell
scripts
tools
opensource
geek
technology
software
cli
programming
10 weeks ago by yfel
gource - software version control visualization - Google Project Hosting
10 weeks ago by yfel
"Software projects are displayed by Gource as an animated tree with the root directory of the project at its centre. Directories appear as branches with files as leaves. Developers can be seen working on the tree at the times they contributed to the project."
versioning
visualization
git
svn
bzr
hg
tools
opengl
geek
technology
software
opensource
10 weeks ago by yfel
PMD - Welcome to PMD
11 weeks ago by yfel
IDE- and Maven-integrated linter for Java and related tech
java
programming
tools
staticassurance
geek
technology
software
opensource
maven
ide
plugins
11 weeks ago by yfel
gre/playpainter
11 weeks ago by yfel
"playpainter is a multi-user real-time "Paint"-like web experiment made with Play 2 framework and relying on HTML Canvas and WebSocket."
java
javascript
canvas
html5
websockets
async
geek
technology
software
programming
opensource
live
11 weeks ago by yfel
JUNG - Java Universal Network/Graph Framework
11 weeks ago by yfel
"JUNG — the Java Universal Network/Graph Framework--is a software library that provides a common and extendible language for the modeling, analysis, and visualization of data that can be represented as a graph or network. It is written in Java, which allows JUNG-based applications to make use of the extensive built-in capabilities of the Java API, as well as those of other existing third-party Java libraries.
The JUNG architecture is designed to support a variety of representations of entities and their relations, such as directed and undirected graphs, multi-modal graphs, graphs with parallel edges, and hypergraphs. It provides a mechanism for annotating graphs, entities, and relations with metadata. This facilitates the creation of analytic tools for complex data sets that can examine the relations between entities as well as the metadata attached to each entity and relation."
network
graphtheory
java
libs
tools
visualization
mathematics
programming
geek
technology
software
opensource
The JUNG architecture is designed to support a variety of representations of entities and their relations, such as directed and undirected graphs, multi-modal graphs, graphs with parallel edges, and hypergraphs. It provides a mechanism for annotating graphs, entities, and relations with metadata. This facilitates the creation of analytic tools for complex data sets that can examine the relations between entities as well as the metadata attached to each entity and relation."
11 weeks ago by yfel
make-open-easy - One project lives in different repositories - Google Project Hosting
11 weeks ago by yfel
"MOE lets one project be developed in different repositories. Internal development can proceed as it always has, and then changes can be migrated to or from the public repository. It includes a scrubber that can transmogrify code as it goes out or comes in."
tools
versioning
opensource
programming
geek
technology
software
privacy
11 weeks ago by yfel
GluonJ
12 weeks ago by yfel
"GluonJ is a simple aspect-oriented programming (AOP) system for Java. Its unique feature is that the language provide AOP functionality by very simple extensions to object-oriented programming (OOP) constructs. GluonJ does not provide popular pointcut-advice. It instead provides revisers and within methods, which is a simple extension to predicate dispatch."
aspects
programming
java
tools
language
geek
technology
software
opensource
libs
functional
12 weeks ago by yfel
JD | Java Decompiler
12 weeks ago by yfel
"The “Java Decompiler project” aims to develop tools in order to decompile and analyze Java 5 “byte code” and the later versions.
JD-Core is a library that reconstructs Java source code from one or more “.class” files. JD-Core may be used to recover lost source code and explore the source of Java runtime libraries. New features of Java 5, such as annotations, generics or type “enum”, are supported. JD-GUI and JD-Eclipse include JD-Core library.
JD-GUI is a standalone graphical utility that displays Java source codes of “.class” files. You can browse the reconstructed source code with the JD-GUI for instant access to methods and fields.
JD-Eclipse is a plug-in for the Eclipse platform. It allows you to display all the Java sources during your debugging process, even if you do not have them all."
java
programming
tools
eclipse
plugins
compler
geek
technology
software
opensource
c/c++
JD-Core is a library that reconstructs Java source code from one or more “.class” files. JD-Core may be used to recover lost source code and explore the source of Java runtime libraries. New features of Java 5, such as annotations, generics or type “enum”, are supported. JD-GUI and JD-Eclipse include JD-Core library.
JD-GUI is a standalone graphical utility that displays Java source codes of “.class” files. You can browse the reconstructed source code with the JD-GUI for instant access to methods and fields.
JD-Eclipse is a plug-in for the Eclipse platform. It allows you to display all the Java sources during your debugging process, even if you do not have them all."
12 weeks ago by yfel
pepelsbey/shower
12 weeks ago by yfel
nice javascripty slideshow tool
html5
presentation
javascript
slides
tools
geek
technology
software
opensource
12 weeks ago by yfel
<XmlUnit/>
12 weeks ago by yfel
lib for Java & .NET to semantically compare XML files
xml
comparison
tools
libs
java
dotnet
testing
geek
technology
software
opensource
12 weeks ago by yfel
Apache JMeter - Apache JMeter™
12 weeks ago by yfel
"The Apache JMeter™ desktop application is open source software, a 100% pure Java application designed to load test functional behavior and measure performance. It was originally designed for testing Web Applications but has since expanded to other test functions."
java
web
server
performance
statistics
testing
scalability
geek
technology
tools
opensource
http
12 weeks ago by yfel
diprocd - Distributed Process Control Daemon
february 2012 by yfel
"A DIstributed PROcess Control Daemon to manage your processes across VMs."
virtualization
linux
distributed
cluster
management
tools
geek
technology
software
unix
opensource
february 2012 by yfel
Initializr - Start an HTML5 Boilerplate project in 15 seconds!
february 2012 by yfel
"Initializr is an HTML5 templates generator to help you getting started with a new project based on HTML5 Boilerplate. It generates for you a clean customizable template with just what you need to start!"
html5
generator
template
tools
webdesign
geek
technology
software
opensource
html
february 2012 by yfel
Sick Beard - Internet PVR for your TV Shows
january 2012 by yfel
"Sick Beard is a PVR for newsgroup users (with limited torrent support). It watches for new episodes of your favorite shows and when they are posted it downloads them, sorts and renames them, and optionally generates metadata for them."
tv
usenet
torrents
geek
technology
software
tools
piracy
forums
web
opensource
python
january 2012 by yfel
terminal-ide - A full command line based Java / Android develpment kit, that runs on Android devices. - Google Project Hosting
january 2012 by yfel
"A full command line based Java / Android develpment kit, that runs on Android devices."
android
java
programming
tools
geek
technology
software
mobile
unix
vi
opensource
january 2012 by yfel
Bit Twiddling Hacks
january 2012 by yfel
a variety of low level bitwise tricks
programming
c/c++
performance
optimization
howto
tips
geek
technology
software
opensource
january 2012 by yfel
iosched - Google I/O App for Android - Google Project Hosting
january 2012 by yfel
complicated and fancy demo of modern android UI stuff; also gives conference info
android
conference
apps
google
opensource
examples
mobile
phone
tablet
geek
technology
software
january 2012 by yfel
lethargicpanda/mrtips - GitHub
january 2012 by yfel
"MrTips is a 2-Class library that easily enables you to display help [Tips & Tricks] in your Android app."
android
tips
libs
howto
opensource
ui
geek
technology
software
mobile
phone
january 2012 by yfel
OpenIntents
january 2012 by yfel
lists of reusable libs & components for android
android
libs
programming
geek
technology
software
opensource
tools
apps
mobile
phone
january 2012 by yfel
kaeppler/calculon - GitHub
january 2012 by yfel
Calculon is a testing DSL for Google Android. It allows you to write functional story based tests.
android
testing
tools
libs
functional
geek
technology
software
debugging
mobile
phone
opensource
january 2012 by yfel
android-query - Simpler Coding for Android - Google Project Hosting
january 2012 by yfel
a jquery-like library for android
android
jquery
ui
programming
libs
geek
technology
software
opensource
january 2012 by yfel
kaeppler/droid-fu - GitHub
january 2012 by yfel
pretty nice looking android utility library
android
libs
tools
geek
technology
software
opensource
mobile
phone
programming
january 2012 by yfel
android-playground - Android sample applications and projects - Google Project Hosting
january 2012 by yfel
PinnedHeaderListView, SwipeyTabs, & GridLayoutCompat
android
ui
howto
tips
mobile
phone
geek
technology
programming
examples
opensource
january 2012 by yfel
Color Thief
january 2012 by yfel
"A script for grabbing the dominant color or color palette from an image. Uses Javascript and the canvas tag to make it happen."
color
javascript
tools
opensource
images
graphics
geek
technology
software
january 2012 by yfel
ChainsDD's Profile - GitHub
january 2012 by yfel
author of android su-binary and Superuser
android
apps
software
geek
technology
tools
mobile
phone
security
hacks
opensource
january 2012 by yfel
#reviewth.is @github
january 2012 by yfel
"git commit -m ‘I just fixed that one really annoying bug. #reviewthis @jwelshiv @tonydewan fake@supermatter.com’
GitHub gives us almost everything we need to do code reviews. Commit, file and line level comments, comment notifications, plus everything else that makes the GitHub experience great. The only thing missing is an easy way to initiate a review. If I want my code to be reviewed, I’ve got to go to GitHub, get the URL (and any other info), then compose an email to everyone I want to review it."
git
programming
review
tools
geek
technology
software
opensource
versioning
GitHub gives us almost everything we need to do code reviews. Commit, file and line level comments, comment notifications, plus everything else that makes the GitHub experience great. The only thing missing is an easy way to initiate a review. If I want my code to be reviewed, I’ve got to go to GitHub, get the URL (and any other info), then compose an email to everyone I want to review it."
january 2012 by yfel
Using tab pages - Vim Tips Wiki
january 2012 by yfel
:set switchbuf=usetab
vim
howto
tips
wiki
geek
technology
software
reference
editor
tools
opensource
january 2012 by yfel
Android Threads, Handlers and AsyncTask - Tutorial
december 2011 by yfel
"This tutorial describes the usage of Threads, Handlers and AsyncTask in your application. It also covers how to handle the application lifecycle together with threads. It also describes Traceview to trace an application for performance problems. It is based on Eclipse 3.7, Java 1.6 and Android 2.3.3 (Gingerbread).
"
android
programming
concurrency
parallelism
geek
technology
software
howto
opensource
mobile
phone
"
december 2011 by yfel
sickill/bitpocket - GitHub
december 2011 by yfel
"bitpocket is a small but smart script that does 2-way directory synchronization. It uses rsync to do efficient data transfer and tracks local file creation/removal to avoid known rsync problem when doing 2-way syncing with deletion.
bitpocket can use any server which you have ssh access to for its central storage. If you have gigabytes of free disk space on your hosting server you can finally make use of it."
backup
tools
geek
technology
software
opensource
storage
ssh
security
unix
bitpocket can use any server which you have ssh access to for its central storage. If you have gigabytes of free disk space on your hosting server you can finally make use of it."
december 2011 by yfel
ADBFS a FUSE Filesystem for Android Debug Bridge | Collectskin
december 2011 by yfel
"ADBFS a FUSE Filesystem for Android Debug Bridge"
filesystems
android
mobile
phone
linux
geek
technology
software
opensource
tools
december 2011 by yfel
mleone/broadcast - GitHub
december 2011 by yfel
"Broadcast is an embedded web application for remote Android device management."
android
ruby
remote
sensors
security
tools
web
server
geek
technology
opensource
mobile
phone
december 2011 by yfel
Android Drawables Explorer
december 2011 by yfel
explore the standard android system drawables
android
reference
images
geek
technology
programming
software
opensource
tools
search
december 2011 by yfel
Waffles
december 2011 by yfel
"Waffles seeks to be the world's most comprehensive collection of command-line tools for machine learning and data mining. Our native tools have minimal dependencies (no interpreter, VM, or runtime environment is necessary), and build cross-platform. If you have a useful data mining tool that meets these criteria, we want it in Waffles."
datamining
ai
opensource
tools
geek
technology
software
database
visualization
statistics
december 2011 by yfel
Stabyourself.net - Mari0
december 2011 by yfel
"A complete from scratch recreation of Super Mario Bros. with a focus on perfectly imitating the feel the 1985 classic gave us. Then give Mario a portal gun, add puzzle game mechanics from Portal and there you go. And if that wasn't crazy enough, play 4-player coop, with everyone having their own Portal gun!"
games
nostalgia
mashup
lua
sdl
graphics
geek
technology
software
opensource
december 2011 by yfel
WhisperSystems/TextSecure - GitHub
december 2011 by yfel
"A secure text messaging application for Android. "
android
security
crypto
software
geek
technology
tools
opensource
java
december 2011 by yfel
ActionBarSherlock - Home
december 2011 by yfel
"ActionBarSherlock is an extension of the compatibility library designed to facilitate the use of the action bar design pattern across all versions of Android with a single API.
The library will automatically use the native action bar when available or will automatically wrap a custom implementation around your layouts. This allows you to easily develop an application with an action bar for every version of Android back through 1.6."
android
ui
libs
geek
technology
mobile
phone
software
opensource
The library will automatically use the native action bar when available or will automatically wrap a custom implementation around your layouts. This allows you to easily develop an application with an action bar for every version of Android back through 1.6."
december 2011 by yfel
AdAway - Apps on Android Market
december 2011 by yfel
"AdAway is the open source ad blocker for Android using the hosts file."
android
apps
mobile
phone
advertising
geek
technology
software
tools
hacks
opensource
december 2011 by yfel
sickill/stderred - GitHub
december 2011 by yfel
"stderred hooks on write() function from libc in order to colorize all stderr output that goes to terminal thus making it distinguishable from stdout. Basically it wraps text that goes to file with descriptor "2" with proper escape codes making text red.
"
console
linux
shell
visualization
hacks
geek
technology
software
programming
opensource
"
december 2011 by yfel
zacharyvoase/humanhash - GitHub
december 2011 by yfel
"humanhash provides human-readable representations of digests."
algorithms
crypto
libs
python
geek
technology
software
programming
opensource
tools
visualization
december 2011 by yfel
Unlicense.org » Unlicense Yourself: Set Your Code Free
december 2011 by yfel
"The Unlicense is a template for disclaiming copyright interest in software you've written; in other words, it is a template for dedicating your software to the public domain. It combines a copyright waiver patterned after the very successful public domain SQLite project with the no-warranty statement from the widely-used MIT/X11 license.
"
copyright
opensource
software
law
programming
business
geek
technology
"
december 2011 by yfel
raganwald/Katy - GitHub
december 2011 by yfel
"aty makes writing fluent CoffeeScript easy by providing the .K and .T combinators for CoffeeScript objects."
coffeescript
javascript
functional
programming
libs
geek
technology
software
opensource
december 2011 by yfel
The Durable Document Store You Didn't Know You Had, But Did — giant robots smashing into other giant robots
december 2011 by yfel
"As it turns out, PostgreSQL has a number of ways of storing loosely structured data — documents — in a column on a table." including json and xml, with server-side xpath
database
json
xml
geek
technology
software
opensource
tools
query
search
december 2011 by yfel
related tags
0x10c ⊕ 3d ⊕ 8bit ⊕ accessibility ⊕ activism ⊕ advertising ⊕ agda ⊕ ai ⊕ ajax ⊕ ajaz ⊕ alcohol ⊕ algebra ⊕ algorithms ⊕ alife ⊕ amarok ⊕ amazon ⊕ amd64 ⊕ android ⊕ animation ⊕ anonymity ⊕ antivirus ⊕ apache ⊕ api ⊕ appengine ⊕ apple ⊕ apps ⊕ aprilfools ⊕ architecture ⊕ arduino ⊕ arrows ⊕ art ⊕ aspects ⊕ assembly ⊕ astronomy ⊕ async ⊕ atari ⊕ audio ⊕ augmented ⊕ automotive ⊕ awk ⊕ backup ⊕ bands ⊕ banking ⊕ bash ⊕ basic ⊕ bbs ⊕ benchmark ⊕ biology ⊕ blog ⊕ blogging ⊕ blogs ⊕ bluetooth ⊕ books ⊕ boost ⊕ boxee ⊕ browser ⊕ bsd ⊕ bugs ⊕ business ⊕ bzr ⊕ c# ⊕ c/++ ⊕ c/c++ ⊕ cache ⊕ cad ⊕ cairo ⊕ calendar ⊕ camera ⊕ canada ⊕ canvas ⊕ cartoons ⊕ categorytheory ⊕ censorship ⊕ chat ⊕ chemistry ⊕ china ⊕ cli ⊕ clocks ⊕ clojure ⊕ clojurescript ⊕ clones ⊕ clothing ⊕ cloud ⊕ cluster ⊕ cmyk ⊕ cocoa ⊕ codecs ⊕ coffeescript ⊕ cogsci ⊕ collectivism ⊕ color ⊕ combinatorics ⊕ communication ⊕ comparison ⊕ compatibility ⊕ competition ⊕ compiler ⊕ compler ⊕ complexity ⊕ compression ⊕ compsci ⊕ concurrency ⊕ conference ⊕ console ⊕ consulting ⊕ controls ⊕ conversion ⊕ copyfight ⊕ copyright ⊕ crazy ⊕ creativecommons ⊕ crossplatform ⊕ crypto ⊕ css ⊕ culture ⊕ currency ⊕ cygwin ⊕ dalvik ⊕ database ⊕ datamining ⊕ datasheets ⊕ debian ⊕ debug ⊕ debugging ⊕ del.icio.us ⊕ demo ⊕ democrat ⊕ deployment ⊕ design ⊕ desmoines ⊕ deutsch ⊕ development ⊕ devops ⊕ devtools ⊕ dhcp ⊕ diff ⊕ directx ⊕ display ⊕ distributed ⊕ django ⊕ dns ⊕ docbook ⊕ documentary ⊕ documentation ⊕ dotnet ⊕ drivers ⊕ dsl ⊕ dystopia ⊕ eclipse ⊕ economics ⊕ editor ⊕ education ⊕ electromechanical ⊕ electronics ⊕ emacs ⊕ email ⊕ embedded ⊕ emergency ⊕ employment ⊕ emulator ⊕ energy ⊕ engineering ⊕ english ⊕ environment ⊕ erlang ⊕ esports ⊕ essay ⊕ essays ⊕ evolution ⊕ evolutionaryalgorithms ⊕ example ⊕ examples ⊕ exercise ⊕ facebook ⊕ fail ⊕ faq ⊕ fiction ⊕ fileformats ⊕ filesystems ⊕ finance ⊕ financial ⊕ firefox ⊕ firewire ⊕ firmware ⊕ flash ⊕ flight ⊕ floatingpoint ⊕ folksonomy ⊕ fonts ⊕ food ⊕ forumns ⊕ forums ⊕ fractals ⊕ framework ⊕ friends ⊕ functional ⊕ furniture ⊕ futurism ⊕ gadgets ⊕ games ⊕ gaming ⊕ gcc ⊕ geek ⊕ generator ⊕ generic ⊕ genetic ⊕ geography ⊕ geometry ⊕ gifts ⊕ gimp ⊕ git ⊕ glassfish ⊕ gnome ⊕ gnu ⊕ google ⊕ government ⊕ gps ⊕ gpu ⊕ graphics ⊕ graphtheory ⊕ groovy ⊕ gtd ⊕ gtk ⊕ gui ⊕ hacker ⊕ hacking ⊕ hacks ⊕ hadoop ⊕ hardware ⊕ hashing ⊕ haskell ⊕ hci ⊕ hdtv ⊕ health ⊕ hg ⊕ highavailability ⊕ history ⊕ home ⊕ homeautomation ⊕ hosting ⊕ howto ⊕ html ⊕ html5 ⊕ http ⊕ humour ⊕ i18n ⊕ ibm ⊕ ide ⊕ identity ⊕ im ⊕ images ⊕ infrared ⊕ inkscape ⊕ instruments ⊕ interview ⊕ iOS ⊕ iowa ⊕ ip ⊕ iphone ⊕ ipod ⊕ irc ⊕ java ⊕ javascript ⊕ joomla ⊕ jpeg ⊕ jquery ⊕ json ⊕ jvm ⊕ kde ⊕ kernel ⊕ keyboard ⊕ lan ⊕ language ⊕ laptop ⊕ latex ⊕ law ⊕ libertarian ⊕ libs ⊕ license.apache2.0 ⊕ license.artistic ⊕ license.bsd ⊕ license.cc ⊕ license.commercial ⊕ license.gpl ⊕ license.lgpl ⊕ license.mit ⊕ license.mpl ⊕ license.publicdomain ⊕ license.wtfpl ⊕ license.zlib ⊕ lifehacks ⊕ linux ⊕ lisp ⊕ lists ⊕ literate ⊕ live ⊕ livecd ⊕ livecoding ⊕ llvm ⊕ location ⊕ logging ⊕ logs ⊕ lsits ⊕ lua ⊕ lug ⊕ mail ⊕ maintenance ⊕ make ⊕ malware ⊕ management ⊕ maps ⊕ markets ⊕ markup ⊕ mashup ⊕ mashups ⊕ math ⊕ mathematics ⊕ mathml ⊕ matlab ⊕ maven ⊕ measurement ⊕ mechanical ⊕ memcached ⊕ memory ⊕ metaprogramming ⊕ microformats ⊕ microsoft ⊕ migration ⊕ mobile ⊕ monads ⊕ monetary ⊕ money ⊕ mouse ⊕ movies ⊕ multicore ⊕ multihead ⊕ multitouch ⊕ music ⊕ musicblogs ⊕ musicdownloads ⊕ mysql ⊕ native ⊕ ncurses ⊕ netherlands ⊕ netlabels ⊕ network ⊕ networks ⊕ neural ⊕ news ⊕ nintendo ⊕ node.js ⊕ nomography ⊕ nonprofit ⊕ nosql ⊕ nostalgia ⊕ notification ⊕ novelty ⊕ numerical ⊕ nvidia ⊕ ocaml ⊕ office ⊕ oo ⊕ opencv ⊕ opengl ⊕ opensource ⊖ optical ⊕ optimization ⊕ orgs ⊕ orm ⊕ os ⊕ osx ⊕ overclocking ⊕ overtone ⊕ p2p ⊕ packaging ⊕ papers ⊕ parallelism ⊕ parsing ⊕ patches ⊕ patents ⊕ pdf ⊕ pdf-format ⊕ peoria ⊕ perforce ⊕ performance ⊕ perl ⊕ philosophy ⊕ phone ⊕ photography ⊕ php ⊕ physics ⊕ piracy ⊕ plugin ⊕ plugins ⊕ png ⊕ podcast ⊕ politics ⊕ porting ⊕ postgesql ⊕ postscript ⊕ presentation ⊕ print ⊕ printing ⊕ privacy ⊕ productivity ⊕ profiling ⊕ programming ⊕ projector ⊕ protocol ⊕ proxy ⊕ psychology ⊕ punditry ⊕ python ⊕ qt ⊕ quantum ⊕ query ⊕ quotes ⊕ r ⊕ radical ⊕ radio ⊕ rails ⊕ random ⊕ raytracing ⊕ reactive ⊕ realtime ⊕ recipe ⊕ refactoring ⊕ reference ⊕ regex ⊕ religion ⊕ remote ⊕ remoting ⊕ repair ⊕ repl ⊕ republican ⊕ research ⊕ retarded ⊕ retro ⊕ reverseengineering ⊕ review ⊕ reviews ⊕ rfid ⊕ robots ⊕ router ⊕ rpc ⊕ rss ⊕ ruby ⊕ running ⊕ samba ⊕ scala ⊕ scalability ⊕ scaling ⊕ schematics ⊕ scheme ⊕ science ⊕ scm ⊕ scripts ⊕ sdl ⊕ search ⊕ security ⊕ semanticweb ⊕ sensors ⊕ server ⊕ service ⊕ sf ⊕ shell ⊕ shopping ⊕ signals ⊕ simulation ⊕ singularity ⊕ sleep ⊕ slides ⊕ social ⊕ sociology ⊕ soft ⊕ software ⊕ solaris ⊕ sound ⊕ space ⊕ spam ⊕ speech ⊕ spimes ⊕ spoken ⊕ sql ⊕ ssh ⊕ standards ⊕ starcraft ⊕ startup ⊕ starwars ⊕ staticassurance ⊕ statistics ⊕ steganography ⊕ stl ⊕ stm ⊕ storage ⊕ strategy ⊕ stream ⊕ streaming ⊕ support ⊕ surveillance ⊕ svg ⊕ svn ⊕ synthesizer ⊕ sysadmin ⊕ tablet ⊕ tagging ⊕ tcp ⊕ technology ⊕ template ⊕ templates ⊕ testing ⊕ themes ⊕ theory ⊕ thermodynamics ⊕ thinclient ⊕ tiff ⊕ time ⊕ tips ⊕ tool ⊕ tools ⊕ torrents ⊕ toys ⊕ translation ⊕ transportation ⊕ travel ⊕ tutorial ⊕ tv ⊕ typetheory ⊕ typography ⊕ ubuntu ⊕ ui ⊕ unicode ⊕ unis ⊕ unix ⊕ usb ⊕ usenet ⊕ verification ⊕ versioning ⊕ vi ⊕ video ⊕ videos ⊕ vim ⊕ virtualization ⊕ vision ⊕ vista ⊕ visualization ⊕ vnc ⊕ voice ⊕ voip ⊕ volumetric ⊕ want ⊕ wearable ⊕ weather ⊕ web ⊕ webdesign ⊕ websockets ⊕ weird ⊕ wifi ⊕ wii ⊕ wiki ⊕ windows ⊕ wireless ⊕ wordpress ⊕ writing ⊕ wtf ⊕ wx ⊕ xen ⊕ xkcd ⊕ xmas ⊕ xml ⊕ xmonad ⊕ xorg ⊕ zfs ⊕Copy this bookmark: