select * from apigoogleposts where googleid = '114965985827593281466' order by pdate desc limit 0,100
Free Speech in the Era of Its Technological Amplification
0 plusses - 0 comments - 0 shares | Read in G+ These guys understand and support API creation workflow.
They have abstracted it to the simplest possible steps and built amazing tools to support it.
Well done
http://apiary.io/ 2 plusses - 0 comments - 2 shares | Read in G+ @canjs
http://goo.gl/MznLo Updated "Cellar-CanJS-Bootstrapped" - CRUD with Slim REST server hooked up :-)
0 plusses - 0 comments - 0 shares | Read in G+ @canjs I love your library.
http://goo.gl/MznLo my first complete CRUD with REST server hooked up :-) "Cellar-CanJS-Bootstrapped"
0 plusses - 0 comments - 0 shares | Read in G+ Can't wait for these guys to ship :)
1 plusses - 0 comments - 1 shares | Read in G+ The HUAWEI E5331 works really well with Cell C Data SIM.
I am surprised that it is as fast as the Cell C high speed modem (black).
The bonus is that it does not drain your laptop battery while on the move.
2 plusses - 2 comments - 3 shares | Read in G+ CanJS way vs the JS way:
I like the declarative style of making constructor objects
It brings back some OOP qualities to JS without loosing the functional benefits
:)
// CanJS way
var MyObject = can.Construct(
{
init: function() {this.value = 0},
increment: function(inc) {this.value += typeof inc === 'number' ? inc : 1},
getValue: function() {console.log(this.value)}
}
);
myInstance = new MyObject();
myInstance.increment();
console.log(myInstance.getValue()); // 1
myInstance.increment(2);
console.log(myInstance.getValue()); // 3
// ------------------------------------------------------------------------
// Javascript Way
// Create myObject. It has a value and an increment
// method. The increment method takes an optional
// parameter. If the argument is not a number, then 1
// is used as the default.
var myObject = {
value: 0,
increment: function (inc) {
this.value += typeof inc === 'number' ? inc : 1;
}
};
myObject.increment( );
console.log(myObject.value); // 1
myObject.increment(2);
console.log(myObject.value); // 3
// Create the same myObject but hide "value"
// Initialize myObject by calling a function that returns an object literal
// This is called a closure
var myObject = (function () {
var value = 0;
return {
increment: function (inc) {
value += typeof inc === 'number' ? inc : 1;
},
getValue: function () {
return value;
}
};
}( ));
myObject.increment( );
console.log(myObject.getValue()); // 1
myObject.increment(2);
console.log(myObject.getValue()); // 3
// ------------------------------------------------------------------------
0 plusses - 0 comments - 0 shares | Read in G+ I like Stypi for Code Q&A and collab.
Stypi makes it easy to collaborate on documents online. Here are three ways for you to get the most out of it:
1. Share Your Documents
Make a document available to anyone by sharing its URL. You can also make a document private and only provide access to your collaborators.
2. Stay Organized
Use the filetree to create folders, access recently viewed documents, and see what's been shared with you.
3. Never Lose Your Work
Play back the history of your document like a movie to see how it evolved or to retrieve a previous version.
1 plusses - 2 comments - 0 shares | Read in G+ I recently started using Ubuntu 12.04 on my Macbook Air.
I love the development experience, but it has its "rabbit holes" - as you probably know, if you have tried it.
Here is one:
I am using PieCrust to render documentation.
http://bolt80.com/piecrust/doc/5-min/At the end of the "5min" setup there is a lovely ubuntu "rabbit hole".
"Got the hang of it? Add chef to your PATH and start fresh:"
Don't follow the thousands of outdated blog posts that will tell you to edit:
1. ~/.profile
2. ~/.bash_profile
3. ~/.bashrc
https://help.ubuntu.com/community/EnvironmentVariablesIt will leave your Ubuntu 12.04 looping in the login screen - even if you type in the correct password.
Create a file ".pam_environment" in your home folder.
Add your path to "chef" in this file - as a single line.
PATH DEFAULT=${PATH}:var/www/PieCrust/bin
OR - if you have a simlink in your "home" folder for "www"
PATH DEFAULT=${PATH}:~/www/PieCrust/bin
This way your machine won't need TLC for hours and you can happily do:
$ chef
and see:
The PieCrust chef manages your website.
Usage:
chef [options]
chef [options] <command> [options] [args]
Options:
-h, --help show this help message and exit
--version show the program version and exit
Commands:
bake Bakes your PieCrust website into a bunch of static HTML
files.
categories Gets the list of categories used in the website.
find Find all pages, posts and templates in the website, with
optional filtering features.
help Gets help on chef.
import Imports content from another CMS into PieCrust.
init Creates a new empty PieCrust website.
plugins Gets the list of plugins currently loaded, or install new
ones.
prepare Helps with the creation of pages and posts.
purge Purges the website's cache directory.
root Gets the root directory of the current website.
serve Serves your PieCrust website using a tiny development web
server.
showconfig Prints part of, or the entirety of, the website's
configuration.
stats Gets some information about the current website.
tags Gets the list of tags used in the website.
themes Manages themes for your PieCrust website.
upload Uploads your PieCrust website to a given FTP server.
Additional help topics:
about-import
0 plusses - 0 comments - 0 shares | Read in G+ I am selling my
17" MacBook Pro (SandyBridge) 4Gb RAM and 750Gb HDD
Perfect condition :-)
R18,000
0 plusses - 0 comments - 0 shares | Read in G+ Here is a great Bootstrap theming app and at the same time an excellent JS MVC example.
1 plusses - 0 comments - 0 shares | Read in G+ A Google Samsung - ChromeBook for Christmas ;-)
2 plusses - 2 comments - 0 shares | Read in G+ I like the combination of PHP Application exposing RESTful services and Dojo managing presentation and interaction.
Do you use Dojo? What is your favorite backend for a green fields project?
I am partial to Play Framework and the TypeSafe stack for the application and services layer too, but I am not sure how version 2 fares in production.
Calling Dojo ninjas... what is your preference and experience?
0 plusses - 0 comments - 0 shares | Read in G+ Well done CellC - your service in Bryanston is now slower and less reliable than the internet 20 years ago.
0 plusses - 0 comments - 0 shares | Read in G+ CellC please help!
0 plusses - 2 comments - 0 shares | Read in G+ After a working day CellC is still in trouble
0 plusses - 2 comments - 0 shares | Read in G+ CellC had a big weekend. I am not sure what their problems are but it is serious. Soon we will be at kb/s like in the analog modem days :-(
0 plusses - 0 comments - 0 shares | Read in G+ Thank you Addy :-)
0 plusses - 0 comments - 0 shares | Read in G+ CellC Data - 1000% variance in performance this weekend
Date Download Upload Latency ServerName
2012-09-16 17:36 1334 159 63 Sandton
2012-09-16 17:35 1001 129 592 Sandton
2012-09-16 15:49 441 138 514 Sandton
2012-09-16 15:48 1638 307 78 Sandton
2012-09-16 15:47 421 51 90 Sandton
2012-09-16 13:16 608 136 98 Sandton
2012-09-16 11:34 729 79 Rosebank
2012-09-16 11:33 1114 1196 151 Rosebank
0 plusses - 0 comments - 0 shares | Read in G+ I really appreciate elegant solutions :-)
0 plusses - 0 comments - 0 shares | Read in G+ Portal 2 Crashing Remedy - (Steam Support Reply) It Works :-)
In order to correct the crashing in Portal 2 please do the following:
1. Exit Steam.
2. Navigate to your Portal 2 bin folder (~Users\[username]\Library\Application Support\Steam\SteamApps\common\Portal 2\bin\)
Note: If you are using Lion please do the following to access your Steam folder:
- Click "Go" in the menu bar
- Click "Go to Folder..."
- Type "~/Library/Application Support/Steam"
- Click "Go"
This will take you directly to the folder.
3. Locate the libsteam.dylib file and drag it to your Trash Can.
4. Start up Steam, launch Portal 2, and try to begin a level.
The game should load without crashing.
1 plusses - 0 comments - 0 shares | Read in G+ Can't wait for this to go mainstream :-)
1 plusses - 0 comments - 0 shares | Read in G+ Thank you "Steam" for breaking Portal 2 on OS X.
NOW PLEASE FIX IT!
0 plusses - 0 comments - 0 shares | Read in G+ I don't use Automator on OS X often, but today it really helped.
Convert large PDF file (many pages) into individual images (PNG 300DPI).
Here is how:
Drag 3 Automator actions into a Workflow and start it up: MAGIC!
0 plusses - 0 comments - 0 shares | Read in G+ Google Chrome on Ubuntu Linux really sucks :-(
3 plusses - 14 comments - 0 shares | Read in G+ IT CRASHES AFTER ENTERING YOUR GITHUB CREDENTIALS ON IPAD 1.
HOW DO YOU GET A REFUND?
0 plusses - 4 comments - 0 shares | Read in G+ This is the world's first open source HTML5 SIP client entirely written in javascript for integration in social networks (FaceBook, Twitter, Google+), online games, e-commerce websites... No extension, plugin or gateway is needed. The media stack rely on WebRTC.
The client can be used to connect to any SIP or IMS network from your preferred browser to make and receive audio/video calls and instant messages.
3 plusses - 0 comments - 1 shares | Read in G+ The Handover of Java (Mac) to Oracle
"Apple dropped Java from the default installation of OS X 10.7 Lion after the company announced in 2010 that it would deprecate the software's release for the Mac platform."
0 plusses - 0 comments - 0 shares | Read in G+ "Write client and server components in the same language (JavaScript), using the same framework."
Now that is a promise many would like to see fulfilled :-)
Nice - automation, examples, docs, guides ... enough to get started :-) Thanks Yahoo !
http://developer.yahoo.com/blogs/ydn/posts/2012/04/yahoo’s-mojito-is-now-open-source/
2 plusses - 2 comments - 1 shares | Read in G+ Nothing is more dangerous than an idea if it's the only one you have.
Emil-Auguste Chartier, Propos sur la religion, 1938
0 plusses - 1 comments - 1 shares | Read in G+ People tend to interpret Scrum within the context of their current project management methodologies.
They apply Scrum rules and practices without fully understanding the underlying principles of self-organization, emergence, and visibility and the inspection/adaptation cycle.
They don’t understand that Scrum involves a paradigm shift from control to empowerment, from contracts to collaboration, and from documentation to code.
http://cl.ly/FW8n 0 plusses - 0 comments - 0 shares | Read in G+ I am trying to find Szymon Wrozynski in Polland - can anyone help?
0 plusses - 0 comments - 0 shares | Read in G+ Search API in action :-)
0 plusses - 0 comments - 0 shares | Read in G+ IN SEARH OF THE PERFECT CLIENT STACK
It's interesting to see some of the RIA thinkers attempts to recover what they had with Flex.
There is a pattern emerging:
1. Let's NOT get stuck with a single supplier again
2. How do we make a MVC client with UI components - answer Sencha
3. But because of (1) Ignore Sencha in case it becomes another Adobe
4. Realizing no one else combines all the Fat Client features they were used to in Flex
5. Combining frameworks that do not fit or have strange overlaps
6. Please god - let's not compile anything ever again
Example:
Combining Backbone.js with JQuery Mobile to get MVC and visual components with a strange features overlap (who will do persistence and data management)
The Issues they are trying to find a "STACK" solution for:
1. Templates (extra bonus borrowed from back end web frameworks)
2. MVC in the client (Backbone.js is ahead in the race for MVC)
3. Re-useable UI components (Bootstrap is ahead for desktop but weak for mobile)
4. API standard for the backend (RESTful is emerging ahead of JSON-RPC and XML-RPC)
What is your favorite combination and Why?
:-)
0 plusses - 0 comments - 1 shares | Read in G+ We get really intense electric storms in Johannesburg.
One just passed over. It's exhilarating and fresh when it's passed :-)
2 plusses - 3 comments - 1 shares | Read in G+ "GREAT :-)
"We are excited to announce a reduction in Amazon EC2, Amazon RDS, and Amazon ElastiCache prices. Reserved Instance prices will decrease by up to 37% for Amazon EC2 and by up to 42% for Amazon RDS across all regions. On-Demand prices for Amazon EC2, Amazon RDS, and Amazon ElastiCache will drop by up to 10%. We are also introducing volume discount tiers for Amazon EC2, so customers who purchase a large number of Reserved Instances will benefit from additional discounts. Today’s price drop represents the 19th price drop for AWS, and we are delighted to continue to pass along savings to you as we innovate and drive down our costs."
0 plusses - 3 comments - 1 shares | Read in G+ Thanks Google+
You delete your own post to a thread - you still get notifications and email from it
You block the person who started the thread - you still get notifications and mail
You mute the post - it says it no longer exists - you still get notifications and mail
What the FUCK ????
1 plusses - 2 comments - 0 shares | Read in G+ If you ever used iScaffold to generate a CodeIgniter project, have you considered adding a RESTful API to it?
The link below shows you the result of using
soapbox.io to do it for you.
0 plusses - 0 comments - 0 shares | Read in G+ @ JOZI JUG
0 plusses - 0 comments - 0 shares | Read in G+ WOW what a wild week @#%&*
0 plusses - 0 comments - 0 shares | Read in G+ If you are a great HTML5 CSS3 designer who understands "Responsive Design", let's chat :-)
Please be in Johannesburg.
1 plusses - 2 comments - 0 shares | Read in G+ Are you a "play framework" expert?
0 plusses - 17 comments - 0 shares | Read in G+ You send us the schema. We do the REST :-)
1 plusses - 4 comments - 0 shares | Read in G+ I love everything about early mornings - except getting up.
1 plusses - 0 comments - 0 shares | Read in G+ "Our first product and service is: Adding RESTful API's to any existing MySQL DB. You send us the Schema and we send you a REST app in return"
http://twitter.com/soapboxio 0 plusses - 0 comments - 0 shares | Read in G+ Vote please!
Does this tag line work for you?
"You send us the Schema. We do the REST"
:-)
2 plusses - 0 comments - 0 shares | Read in G+ What is the best payoff line?
"You send us the Schema and we do the REST"
or
"Send us the Schema and be RESTful"
Any other suggestions?
0 plusses - 5 comments - 0 shares | Read in G+ "Give us the Schema and we do the REST :-) "
What does the payoff line mean to you?
0 plusses - 0 comments - 0 shares | Read in G+ Finally - Thank the Gods (at oracle?)
1 plusses - 0 comments - 2 shares | Read in G+ Talk JSON to your MySQL database - would that be cool?
What if all you needed to do is upload your schema to a web site and you would get a tested RESTful server back in return - would that be useful to you?
5 plusses - 4 comments - 1 shares | Read in G+ RESHARE:
Reshared text:
RESTful database access.
Have you ever wished you can call any database using RESTful access? You know JSON in JSON out.... wouldn't that be lovely?
0 plusses - 0 comments - 0 shares | Read in G+ RESTful database access.
Have you ever wished you can call any database using RESTful access? You know JSON in JSON out.... wouldn't that be lovely?
0 plusses - 5 comments - 1 shares | Read in G+ THE ABC'S OF UNIX /usr/share/games/fortune/songspoems
A is for awk, which runs like a snail, and
B is for biff, which reads all your mail.
C is for cc, as hackers recall, while
D is for dd, the command that does all.
E is for emacs, which rebinds your keys, and F is for fsck, which rebuilds your trees.
G is for grep, a clever detective, while
H is for halt, which may seem defective.
I is for indent, which rarely amuses, and
J is for join, which nobody uses.
K is for kill, which makes you the boss, while
L is for lex, which is missing from DOS.
M is for more, from which less was begot, and
N is for nice, which it really is not.
O is for od, which prints out things nice, while
P is for passwd, which reads in strings twice.
Q is for quota, a Berkeleytype fable, and
R is for ranlib, for sorting ar table.
S is for spell, which attempts to belittle, while
T is for true, which does very little.
U is for uniq, which is used after sort, and
V is for vi, which is hard to abort.
W is for whoami, which tells you your name, while X is, well, X, of dubious fame.
Y is for yes, which makes an impression, and
Z is for zcat, which handles compression.
2 plusses - 0 comments - 8 shares | Read in G+ Well done, Apple!
I am already an App Publisher but can't publish an Ebook for FREE because I am an App Publisher :-(
So let's say I want to publish a EBook for my App - how do I give it to my customers for FREE?
The following error(s) occurred:
The iTunes Store account entered is already being used for an iTunes Connect account that distributes Apps. To continue with this application, you must enter a different iTunes account.
AND - it gets better - Neither can I publish an Ebook for Sale - WTF are these people thinking?
2 plusses - 7 comments - 0 shares | Read in G+ Know when to say NO
0 plusses - 0 comments - 0 shares | Read in G+ Finally Bootstrap is Responsive to Mobile :-) Well done guys!
1 plusses - 0 comments - 0 shares | Read in G+ Very nice - it really improved - I still recommend you run it in 32Bit mode :-)
0 plusses - 0 comments - 0 shares | Read in G+ The
soapbox.io team have asked me to do research in their target market (Advertising Agencies and Digital Design Businesses)
They hope to offer systems to help digital agencies or digital departments in the following areas:
Digital Asset Management
Product Development Workflow
Quality Management
Individual Performance Management
Group Performance Management
Business Automation
Finance
In order to establish the needs of the potential target market we are having meetings and sending out the following questionnaire.
These are the kind of questions I ask. If you want to let the team know of any other needs businesses like yours have, please feel free to do so.
The questions below are also here in a Q&A forum
Questions:
• What would make your business really fly?
• What hurts?
• What is impossible right now - but if it were possible - it would change everything?
• How do you know your products are effective?
• Do you maintain the products you build?
• What development services do you offer in-house?
• How are you managing version control?
• How are you doing deployment?
• Do your products easily integrate and expand?
• Are your front and back ends interwoven?
• What do you do for mobile?
• What do you do for desktop/laptop?
• What would the ideal backend look like for you?
• Do you have metrics in your systems or do you rely on extenal party?
• Where do you host your solutions?
• Do you provide API's
• How do you do project documentation?
• Are your best practices automated or policy driven?
Please share your ideas?
Regards,
Andre Venter
0 plusses - 0 comments - 1 shares | Read in G+ How do you make software that clearly express the nature of the business?
But without significant investment in programming?
Is software creation by configuration the answer? What do you use to satisfy you business needs for software in this way?
0 plusses - 0 comments - 0 shares | Read in G+ Do you agree: "If you could get the (client) boss(es) to understand JUST ONE THING what would it be? It would be that software development is not a commodity."
But isn't it already well on it's way?
What products do you use that allow you to create software solutions for your boss or client, without the "messy" development cycles?
0 plusses - 0 comments - 0 shares | Read in G+ Are you developing apps/sites today?
Where is the PAIN?
What will make it all BETTER? -- even if you think its impossible to achieve :-)
0 plusses - 15 comments - 0 shares | Read in G+ 1801 - Joseph Marie Jacquard uses punch cards to instruct a loom to weave "hello, world" into a tapestry. Redditers of the time are not impressed due to the lack of tail call recursion, concurrency, or proper capitalization. 1842 - Ada Lovelace writes the first program.
http://pulse.me/s/4g5Uf 1 plusses - 0 comments - 0 shares | Read in G+ RESHARE:Reshared text:
Have you worked with Google AppEngine/Java?
+Cheers is looking for an AppEngine/Java developer to help us build the backend for our mobile application targeted at posting things you love,
chee.rs. We built the app as a hybrid web/native application, so getting HTML down to the client efficiently is an important part of the job. There's also a lot of orchestration of interaction with external services like Facebook, Twitter, and Foursquare.
The app is currently in a very vibrant private beta, but we're going to be opening it up to the public soon.
We work remotely and have people in California and Calgary, Alberta. If you know someone who might be a good fit for this, please reshare!
0 plusses - 0 comments - 0 shares | Read in G+ RESHARE:
Reshared text:
really should go to gym but it closes way to early.
0 plusses - 1 comments - 0 shares | Read in G+ "Lean Startup" - If you are trying to follow the Lean Startup principles -
http://theleanstartup.com/principles in your business development, we have a lot in common.
I have just seen a new startup make all the mistakes the Lean Startup approach warns against.
I would really like to exchange "lessons learned"
Let's chat :-)
0 plusses - 12 comments - 1 shares | Read in G+ fuelphp -- is somewhere between CodeIgniter and Symfony. It's great to see such innovative efforts in the PHP community :-)
1 plusses - 0 comments - 0 shares | Read in G+ If you are using Google’s Closure, please ping me :-)
I would love to know the scale of the applications built using Google’s Closure Tools, Framework, Templates, Plovr, etc.
0 plusses - 2 comments - 0 shares | Read in G+ Happy holidays everyone :-)
2 plusses - 2 comments - 0 shares | Read in G+ RESHARE:
Reshared text:
TweetDeck get major overhaul, moves from Adobe AIR to HTML5. Tips from Twitter on how to get started with the re-designed completely web-based framework version of TweetDeck.
0 plusses - 2 comments - 1 shares | Read in G+ Sandton is suffering "shopping mania"
0 plusses - 0 comments - 0 shares | Read in G+ It's 1pm. You're still in bed, having already muttered some lame excuse to your boss as to why you aren't in to work today, chugged a liter of water, ...
http://pulse.me/s/3MAu0 0 plusses - 0 comments - 0 shares | Read in G+ How was your week?
0 plusses - 7 comments - 0 shares | Read in G+ Part of Bob Scheme is "BareVM" – a C++ implementation of the Bob virtual machine. After completing the Bob implementation in Python (including a VM), it was important for me to also re-implement the VM part in a lower language like C and C++, for a number of reasons:
http://pulse.me/s/3FCpf 0 plusses - 0 comments - 0 shares | Read in G+ If you have any decently modern Android phone, everything you do is being recorded by hidden software lurking inside. It even circumvents web encrypti...
http://pulse.me/s/3DsqQ 1 plusses - 2 comments - 0 shares | Read in G+ What a lovely day :-)
1 plusses - 0 comments - 0 shares | Read in G+