Сообщения

Greplin: your personal search for all social services

From the incubator Y Combinator was another interesting startup: personal search engine Greplin . The idea is to index all personal information that you provide to social services: Facebook, Twitter, Dropbox, Evernote, LinkedIn, Gmail, Google Docs, Google Calendar, Google Voice, etc. — and then provide the search according to your personal archive. The system works very simply: specify the passwords for the services (use secure authentication OAuth and other APIs, so that system cannot see your password) — and after a few minutes of indexing you get for personal use ascetic search line in Google style. It is a familiar idea for those who had used a desktop search engine that indexes all documents on the hard disk, including e-mail, IM logs and other personal information. Same here, but only online, because now, more personal information is stored online, not on your home PC. If a man is, so to say, rapid online life, often he doesn't remember what exactly the serv

Create a mobile web app monitoring of transporation minimal effort

Изображение
the Backstory After the appearance of a topic about the app for Android OS that allows you to monitor the work of public transport of Saint-Petersburg, I came up with the idea to create a convenient and versatile method of access to this information as possible with more devices. The idea to create an app for each platform dropped immediately — it will take a lot of time and I have no way to test their programs on all those devices. Therefore, it was selected a web application running in the browser. This opens up the possibility of its operation in most mobile OS that has a browser with JavaScript support. Thus, we get a rather big list: Android, iPhone, iPad and other iOS devices, Maemo, Windows phone 7, webOS, MeeGo, Moblin... and so on (in theory). Still remain a regular, non-touch phones, which are usually used OperaMini. It will try to adapt the interface of the same application. The result is this: spbtransport.ru The Android app SPB Transport UPD 1. some time a

Mobile First! Conference: creating mobile applications

Изображение
The main objective of the conference is to identify the most effective practices possible to make money developing mobile applications and services for both product and outsourcing companies, as well as provide participants the opportunity to discuss the creation and promotion of mobile software. Among the items of discussion as there are success stories of specific developers, and the differences between outsourcing and product companies. Despite the fact that none of the topics did not address questions of direct programming mobile apps developers will be interested to see other aspects of product creation, range of subjects and applications, promotion, audience targeting, interaction with customers VIA mobile, marketing and so on. The program of the conference: Alexander Krakovetskiy, DevRain Solutions. Experience of the game Undead Carnage for WP7 . Dmitry Ryzhkov, Paragon Software. mobile Digital publishing: a platform for medianeytralnomu content.

Barcamp Krasnodar + South Russia 4: note tomorrow is the 18th anniversary of Runet

Изображение
April 7, 2012 , ie tomorrow, Kuban will be fourth BarCamp Krasnodar + South of Russia , where participants will be able not only to see the presentation at Krasnodar IT Park , but to celebrate Day of the Runet . On the event's website has already registered almost 1000 people. According to tradition really come protsetov 50%, i.e. about 500 people . The main feature of the non-conference (BarCamp) is the opportunity of informal communication with any person attending the event. Therefore, the number of participants is so important and worthy of mention. The organizers determine the purpose of the fourth BarCamp, as the maintenance and development originated in the southern region of the IT community. The first two BarCamp, obviously, participated in the origin directly, and the third took delivery. It is important that since the first BarCamp in Krasnodar (February 2010) local enthusiasts gather more and more decent guys. The scale of the event and its leve

Google has launched an experimental service Google Correlate

Изображение
It turns out that the user requests may very well be correlated with, for example, the speed of the spread of influenza. That is, the frequency of requests associated with the same flu, can match with the speed of growth in the number of diseases flu. If such a correlation is to display on the graph, there is almost complete coincidence. This was spotted somewhere in the end of 2008, when Google launched the service Google Flu Trends . The service tracked the number of user requests associated with the flu, and compared such data with the speed of the spread of the disease. It turned out that on the basis of these data it is possible to predict the probability of occurrence of the beginning of a flu epidemic in a particular region or even to predict the development of epidemics, and for quite a long time. of Course, scientists of different areas are interested in this service, and developers corporations few years presented new service , which allows to track dependencies

Online conference with the leading experts PostgreSQL

July 30 the company is organizing an online conference "Questions to leading experts PostgreSQL" . Anyone can ask a question related to the implementation, operation, development PostgreSQL, the world-renowned PostgreSQL experts, leading developers and leaders in the PostgreSQL community. / > The participants of the conference: * Bruce Momjian ( Bruce Momjian ) , coordinator of the development of PostgreSQL, the leader of community PostgreSQL, the expert of the company of EnterpriseDB. * Maxim Boguk , senior database administrator of companies Rambler and masterkhost, a renowned expert on PostgreSQL. * Fedor Sigaev , the developer of a subsystem of full-text search, systems of indexing GiST, GIN, and many additional modules, one of core members of the PostgreSQL Global Development Group. * Oleg Bartunov , one of the key members of the PostgreSQL Global Development Group, the developer of a subsystem of full-text search, systems of indexing GiST, GIN, t

PostgreSQL. User data in the session

Recently, I had an interesting challenge in storing some data in the session work with the database PostgreSQL (TTL = life time of a single connection to the database). The original question was... Is it possible that instead of this design: the some_procedure1(user_id, param1, ... , paramN); ... some_procedureX(user_id, param1, ... , paramN); use this: the set_user(id); some_procedure1(param1, ... , paramN); .... some_procedureX(param1, ... , paramN); i.e. to use some kind of global variable within the session to store the user ID value, which will be available to all procedures in the database. Digging on Google, asked around on the forum, I found not even one solution, and as many as 3! Than with you and share... the First option. Using a temporary table. As stated in documentation , quote: PostgreSQL instead requires each session to issue its own CREATE TEMPORARY TABLE command for each temporary table to be used. for each session we need to re-create the