uip homepage down? need uip documentation - ethernet

does anybody know what happend to http://www.sics.se/~adam/uip/index.php/Main_Page?
the complete sics.se server appears to be down
i desperately need the uip documentation...

Use this: http://74.125.113.132/search?q=cache:zqLU33voPQYJ:www.sics.se/~adam/uip/index.php/Main_Page
Or this: http://web.archive.org/web/20080730074245/http://www.sics.se/~adam/uip/index.php/Main_Page

I was able to find this too: http://www.sics.se/~adam/old-uip/documentation.html

The documentation PDF can be found in one of my repositories: https://github.com/jsz/WiShield/blob/master/uip-1.0-documentation.pdf

Related

HQL changing year/month/date into year-month-date

I have tried with DATE_FORMAT(original_date,'%Y-%m-%d'), and it's not working. Anyone know the answer quick? Searching google hasn't really been helpful.
from_unixtime(unix_timestamp('2015/01/01' ,'yyyy/MM/dd'), 'yyyy-MM-dd')
That works!

Error about graph API

When I used this link: http://graph.facebook.com/807470072639300/photos/?limit=1&offset=3, It works OK But when I used http://graph.facebook.com/807470072639300/photos/, It doesn't work. Please help me to find out the reason. Many thanks for you help
This seems like a bug to me. You can report this at https://developers.facebook.com/bugs/

Using instagram filters from an open source library

GPUIMage helped alot but exact result like instagram is not there. Found a new library but Not able to figure out how to use this. Any suggestions ?
https://github.com/binhdna/Instagram-Filters
Check this git.. code is provided..so this will help you the most..
https://github.com/OmidH/Filtrr
Hope it Help to you :)

iOS: Foursquare shout or creating event

I am working with foursquare a for the first time, having hard time with this: Is there any API from the foursquare that supports function to allow shout out? If there is can someone tell me the link. I am really stuck with this stuff..
there is a good example in github for this,hope that helps you. :
https://github.com/Constantine-Fry/Foursquare-iOS-API
This is latest and working FSQDemo works with iOS5 and Xcode4.2 tested. Please read Readme.md first, you need to create your application and put your clientid as mentioned in it.
When you run the application you can get check in and before you do that you have to click on obtain access token.
According to this A shout is Foursquare’s version of a status update or a tweet and from this forum discussion it is passing shout as parameter to url. So there may/must be a way from this sample as it allows check in.
Hope this helps.
Got it.. Thanks with this > https://github.com/baztokyo/foursquare-ios-api/blob/master/README.md

Location or Alternatives for Zends getRequest()->isPost()

i was wondering about where Zends functionality comes from when inside of a controller i call
$this->getRequest()->isPost()
It works, but i do not find where this "isPost()" function comes from.
I just noticed it because i don't have intellisense for that.
Question is:
Is this merely some fallback function that "newbie users" use apart from a better alternative?
Or is it perfectly valid using it?
Thanks :)
It is the official way to go, you can use it. Check the source code of Zend_Controller_Request_Http::isPost() to see what it really is doing, if you'd like :)