Kuan Yong, Gareth McSorley and I -- representing Product Management, Engineering, and Developer Relations, respectively -- were happy to present a YouTube API session at this year’s Google...
This Table of Contents is editable by all Silver members and above. What we want you to do is replace the entries in the Table of Contents below with links to articles that represent the entries.
<b>Linux Planet:</b> "Ubuntu developers invented Upstart as a replacement for the hoary old SysV init system, with the aim of meeting the complex demands of booting modern Linux systems. Upstart is being adopted by Fedora, Debian, and openSUSE. Akkana Peck introduces us to this Ubuntu success story."
This error prevents the system from upgrading to a newer version of Ubuntu, what is causing it?
W: Failed to fetch http://extras.ubuntu.com/ubuntu/dists/natty/main/source/Sources 404 Not Found
W: Failed to fetch http://extras.ubuntu.com/ubuntu/dists/natty/main/binary-amd64/Packages 404 Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.
Since I got the warning message that this release is not supported anymore, should I download and install Ubuntu 12.10 directly from Ubuntu's site instead?
How can I move a library inside a project's source tree and compiling static binaries? I want to use a particular tool that utilizes ANCIENT binaries without upgrading it's API usage. This way I can use the old libraries inside the single binary without wrecking the local host environment. I am on nix with netbeans/eclipse/code::blocks.
I don't have a problem reading, just looking for a starting point. Any thoughts?
The article introduces how to easily develop business solutions in RapidWebDev through developing a product management system with the special requirement step by step.
Over the last few releases, we've been rolling out incremental improvements to the robots API , based on the feedback from all of you developers. For those of...
All about SQL Indexes - Query Optimizer, Index, Unique Index, Clustered Index, Full Text Index, XML Index and SQL commands to create, delete, and rename SQL indexes.
Google Drive SDK: Sharing files and managing permissions
During this session we'll explain how to use the Google Drive SDK to manage permissions and sharing settings of files. We'll go through the various permission types, roles and values and show to easily embed the Google Drive sharing dialog in your app.
From:
GoogleDevelopers
Views:
0
0
ratings
Time:
00:00
More in
Science & Technology
If I take a program, and basically translate its source from some language to python, with some small changes, can I do a entirely my new lib or I have to make a "version" of the old one?
would this be a copy of the first or a new lib based in the ideas of the first?
OBS: Consider the original lib is using Apache License v2
Not sure if well explained, but I can't see for now how to make it more clear.
In symmetric multiprocessor (SMP) systems, each processor has a local cache. The memory system must guarantee cache coherence. False sharing occurs when threads on different processors modify variables that reside on the same cache line. Learn methods to detect and correct false sharing.
Google I/O recap If you missed the Day 1 keynote this year, it was all about the open web. There were some amazing demos from Mugtug, TweetDeck, Adobe...
Apps Script Office Hours - December 6, 2012
In this episode Eric ... - Talks about a recent blog post covering the UK Cabinet's use of Apps Script to generate Google Analytics reports. - Mentions the recent episode on triggers and the upcoming episodes covering Twillio integration and Charts Dashboards. - Answers various questions about using ScriptDb, including the storing of functions and linked objects. You can see the list of upcoming episodes here: developers.google.com
From:
GoogleDevelopers
Views:
19
3
ratings
Time:
17:23
More in
Science & Technology
To deliver our services, Google has had to develop sophisticated internal tools to process data more efficiently. We know that some of these tools could be useful to...
I recently converted an old application that was using XML files as the data store to use SQL instead. To avoid a lot of changes I basically created ActiveRecord style classes that inherited from the original business objects.
For example
SomeClassRecord :SomeClass
//ID Property
//Save method
I then used this new class in place of the other one, because of polymorphism I didn't need to change any methods that took SomeClass as a parameter.
Would this be considered 'Bad'? What would be a better alternative?