GData Objective c Client deprecated - iphone

On the Link it is mentioned that gdata client for objective c is deprecated. Does anyone know what is the alternative way to upload videos to youtube??

The GData library is not deprecated, only the old versions listed on the download page are.
As the summary on the first download says:
Visit the Source Checkout page and use the svn command shown
Click on the Source tab towards the top of the page and you will find the latest version, which has a lot of changes since the last download that they provide (1.12.0)

The Link point to the download of the ready-made zips. These zip files are deprecated
The source is updated. Last commit is from August 6: see the changes

Related

Unable to find openxml sdk productivity tool

I had the openxml sdk productivity tool on my machine but it got uninstalled. Now I cannot seem to find the setup anywhere on Microsoft's site.
has it been discontinued?
DocXToSource
If you go to Microsoft's OpenXML SDK page on github, near the bottom there is a link inside the Related Tools section, to DocxToSource and in the comments it says:
This is a tool designed to be a replacement for the old OpenXML SDK Productivity Tool.
I have not tried it yet, but the screenshots on the home page look encouraging.
A note in the top paragraph of the project says: This is still a work in progress.
I found it here:
https://github.com/dotnet/Open-XML-SDK/releases/tag/v2.5
(OpenXMLSDKToolV25.msi file apparently added to Github a few months after the original post.)
:o)

Wordpress download plugin with older file versions

I'm looking for a way to offer downloads of files that change a lott. I like to have one file item in the list, but also offer the 'older' downloads. A good example is the way filehippo offers files. You can click CCleaner, but then your also offered the older versions. So if you need those, they are easily found. And old files don't clutter the general list.
http://filehippo.com/download_ccleaner
I couldn't find a plugin that advertises such a feature.
Any suggestions?
did you try Wordpress Download Manager?
I haven't used it much, but you can add categories to uploads to organize them. So for your problem, you could just make sure you use the File Manager after installing the plugin, and assign categories to each upload, then list groups of them you want to display. Make sure you put the version in the file name and you should be able to keep it organized.
See more on their information page. You can even make packages of downloads, etc. Hope it helps.
Below steps helps me download any version of the plugin
Go to plugin page on WordPress site ex: https://wordpress.org/plugins/download-manager/
Open any plugin screenshot/image. It will open link straight to image ex: https://ps.w.org/file-manager-advanced/assets/screenshot-1.png?rev=1821394
Change above URL and go to 1 folder before assets which will allow you to browse directory, go to tags folder (ex: https://ps.w.org/download-manager/tags/).
From there you will be able to see and download any version of the plugin.
Only works for plugins that are in WP store.

How to add mailcore framework to our iphone project?

I tried to add mailcore framework to my project which is existing in my library but it's not getting added into it,can any one pls help me to solve this issue.
Thanks in advance.
One way is to use reMail. remail uses mailcore, and since its acquisition by google, is open source.
Another way is to actually build mailcore.
GETTING STARTED
The best way to start learning MailCore is by reading through
documentation intro (in index.html) and the the included example
projects. To run the example projects:
Copy MailCore.framework to your ~/Library/Frameworks folder.
In each example project, add ~/Library/Frameworks/MailCore.framework to the list of Linked
Frameworks.
Build it!
The documentation isn't as detailed as I'd like. Sorry about that! If
something isn't clear try reading the source included or contact me.
CONTACT INFO
MailCore by Matt Ronge http://www.mronge.com mronge#mronge.com
LICENSE
Licensed under BSD, see LICENSE.txt for more information.
Based on LibEtPan and work done by Dinh Viet Hoa.
From the Getting Started documentation on the project:
IPHONE USE
MailCore has an included iPhone
target, but it requires some
additional compiled binaries (OpenSSL
and CyrusSSL). I am unable to
currently provide these, however the
company Remail is offering the
binaries and a compiled copy of
MailCore for the iPhone. Contact
Remail for more information:
mailcore#remail.com
It seems like you'd need to get those before building against the iPhone target.
After reading the instructions he doesn't say to add the MailCore framework. Just the library. Try it that way.

callback dock demo in Miglayout

can anyone suggest where i can get a hold of the source code for the callback dock demo application in Miglayout site. such a tutorial would also be ok. thanks.
There are quite a few broken links to where the source used to be. Now the demos are distributed with the MiG Layout source.
Go to http://www.miglayout.com/
Follow the link under MiGLayout Downloads to the Downloads Folder.
Choose the latest version, and download the jar that includes "sources" in the name. For instance, miglayout-3.7.2-sources.jar
Expand the jar file and locate the folder called demo, which includes a Java file for each of the demos.
Near the bottom of the MiG Layout page there is also a link to their support forums that look fairly active.

How to add GData.framework in my iPhone project?

I'm just giving it a shot to learn objective C and Cocoa and play
aound with the Google APIs.
I am trying to follow the instructions on the main page to include the
framework within my application but I'm not having much luck.
Would someone be able to provide some instuctions with a bit more
detail?
I would greatly appreciate it.
I've added the GData.xcodeproj under my main application and added a
direct dependency to GData under Target->myApp
I keep getting the following error:
cd "/Users/ankushgupta/Xcode Projects/Google Test"
/System/Library/PrivateFrameworks/DevToolsCore.framework/Resources/
pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -strip-debug-
symbols -resolve-src-symlinks /Users/ankushgupta/Xcode\ Projects/Google\
Test/build/Release/GData.framework /Users/ankushgupta/Xcode\ Projects/Google
\ Test/build/Release/Google\ Test.app/Contents/Frameworks
pbxcp: GData.framework: No such file or directory
I'm kind of lost and I really need to get this setup so I can learn
the API and do some real coding :(
Can anyone help me with this?
Thanx in advance...
You need to download the Objective-C Google API source code from
http://code.google.com/p/gdata-objectivec-client/
and compile it from the included xCode project. The included documentation explains in detail how to either link statically, include framework or reference the Google API code directly from your project.
I choose to include all the source code I need directly in my project by reference to the original Google files. Include the source files by dragging them into you xCode project.
I wouldn't recommend the Google API's for learning to program the iPhone. It would be complicating the learning process unnecessarily.