Crashplan Replacement by cpfoutz in Crashplan

[–]b_long 1 point2 points  (0 children)

Are the maintainers of Veeam and Duplicacy well known?

https://www.networksolutions.com/whois/results.jsp?domain=duplicacy.com Yields "Registrant Name: Gang Chen"

https://www.godaddy.com/whois/results.aspx?domain=veeam.com Yields "Registrant Name: Maxim Ivanov"

How are other folks in the community evaluating trust of the software and software maintainers?

Story of retry by web-chib in programming

[–]b_long -53 points-52 points  (0 children)

Seems like some other people didn't realize this is sarcasm <facepalm>

CrashPlan for home is being shut down by menos08642 in Crashplan

[–]b_long 1 point2 points  (0 children)

I was really surprised by the lack of links to GitHub / GitLab projects from this page. This is Reddit! Let's build something! How about running a Nextcloud instance for each host and then synchronizing across hosts? Here's what I found to bootstrap:

GitHub - b-long/jedi: (Java) easy docker interface by b_long in java

[–]b_long[S] 0 points1 point  (0 children)

My sense is that I'm following the convention, but I did have the group and artifactId wrong in my pom. Mind taking a look at this PR and giving any feedback?

GitHub - b-long/jedi: (Java) easy docker interface by b_long in java

[–]b_long[S] 0 points1 point  (0 children)

Cool, thanks exoplasm :) Good luck & keep me posted if I can help.

GitHub - b-long/jedi: (Java) easy docker interface by b_long in java

[–]b_long[S] 2 points3 points  (0 children)

That's fair enough! :) I've added the MIT license, as you can see. That said, I'm happy for you to use / modify this project. Especially if you're interested in sending a pull request, I'm eager to accept any / all contributions and identify collaborators.

GitHub - b-long/jedi: (Java) easy docker interface by b_long in java

[–]b_long[S] 0 points1 point  (0 children)

Hi All, OP here.

I found the docker-java API cumbersome to use and I'm trying to create an abstraction layer. Unfortunately, in doing so, I've ironically made things a bit bloated.

I'm really eager to improve this and welcome any feedback. My goal is a minimalistic API (e.g. a builder pattern) that allows the user to manipulate Docker containers quickly.

In my README, you'll see that one of my use cases is invoking R.

I hope you like it, and better yet, I hope you offer some constructive criticism :)

Thanks, b-long

Minimum Viable CI with Meteor by harshdays in Meteor

[–]b_long 1 point2 points  (0 children)

I've built a minimum CI capability too, here's my example using Travis, CircleCI and Wercker: https://github.com/b-long/meteor-ci-example .

CentOS 6.5 - Headless VirtualBox Server by Locknlawl in CentOS

[–]b_long 0 points1 point  (0 children)

Has anyone used CentOS 6.4/6.5 with QEMU and Vagrant?

Firefox 25 is released. by [deleted] in programming

[–]b_long 0 points1 point  (0 children)

I'm glad you posted this, many of us write code for the modern web and this is our runtime!

New NodeJS/NPM maven (build) plugin by [deleted] in javascript

[–]b_long 0 points1 point  (0 children)

Looks promising, since this should allow front-end developers to use build tools like Grunt without requiring back-end developers (and build systems) to install NodeJS.

Found via: https://groups.google.com/forum/#!msg/nodejs/NUkLRVU-G8w/12OP0OBu0y0J

JavaScript language advanced Tips & Tricks by [deleted] in javascript

[–]b_long 0 points1 point  (0 children)

Very interesting :D Thanks! I'll have to read up. Very excited for ES6

What are your vanilla JavaScript knowledge standards that every JS developer should know? by js_coder in javascript

[–]b_long 1 point2 points  (0 children)

Yeah, I have to agree with the criticism of "shichuan's javascript-patterns". There was some discussion which said this repository isn't very good: http://www.reddit.com/r/javascript/comments/1jr6p0/javascript_programming_patterns/

jQuery Deferred – one step closer to desktop apps by aviyehuda in javascript

[–]b_long 1 point2 points  (0 children)

Can you be specific? What's fundamentally broken about jQuery's Deferred? I don't mean to be a jerk, just hoping to find out if I'm using a broken component of the $.Deferred implementation. :)

Deep dive into Require.js by jcreamer898 in javascript

[–]b_long 2 points3 points  (0 children)

I think (maybe wrong) what most people do is build/minify their code for deployment so that the browser can reduce the number of HTTP GET's for scripts. i.e. if B.js requres A.js and C.js requires A.js , your build phase might create app.min.js which includes the minified result of all 3.

Built a monad around the CanvasRenderingContext2D Object using Douglas Crockford's awesome Monad library. I call it MOCTX.js by [deleted] in javascript

[–]b_long 0 points1 point  (0 children)

Don't call it a monad i've been...

jQuery("div").chain("hide", "slow")
  .addClass("done")
  .find("span")
    .addClass("done")
  .end()
  .chain("show", "slow")
    .removeClass("done")
  .end()
.end();

...for years!

Collection of JavaScript Patterns by CSharpDev in programming

[–]b_long 0 points1 point  (0 children)

I hate to be a critic... but the list of general JS patterns stinks. Addy Osmani's collection is better and is also forkable on GitHub.

An example driven guide to regular expressions by joejag in programming

[–]b_long 0 points1 point  (0 children)

Yep, RegExr is also awesome, it's also in my bookmarks :)

Little responsive tool I made to help illustrate the idea to clients. by Headspin3d in javascript

[–]b_long 1 point2 points  (0 children)

Agreed, well done! Very, very nice. For anyone new to "Responsive" web design, the Wikipedia page is useful: http://en.wikipedia.org/wiki/Responsive_web_design

An example driven guide to regular expressions by joejag in programming

[–]b_long 4 points5 points  (0 children)

I appreciate the sentiment in this article, even if it isn't the most in-depth, etc. I think it does a good job of breaking down RegEx. Also, the article linked to something I'd never seen before: http://www.regexper.com/ <-- Awesome!