It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
if sphinx does not require database then how to store string or text in index of sphinx ?
From Sphinx website:
Sphinx lets you either batch index and search data stored in an SQL
database, NoSQL storage, or just files quickly and easily — or index
and search data on the fly, working with Sphinx pretty much as with a
database server.
Non-SQL storage indexing. Data can also be streamed to batch indexer
in a simple XML format called XMLpipe, or inserted directly into an
incremental RT index.
So yes it works without database... How? You can probably read the doc... Did you search?
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Can an application call Glass to take pictures? I only see "Sharing" when a user takes a picture and wants to share it manually; is there a way applications can call Glass camera and take a picture?
Case:
Say, a user says they want a timeline of his daily activities, so they set an interval of time: "30 minutes"; the application would then call Glass camera every 30m, take a picture and store it for a timeline.
There is no direct control of the hardware through the Mirror API. Feel free to file a feature request in our issue tracker.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Is there a place where I can view the list of standard locality/ sub-locality of Singapore?
I'm working on a web app that tag places to small regions in Singapore e.g. Downtown, Sentosa island. Singapore is a small country but it's a big city. This was already done by another developer whom I cannot contact now (perhaps the small regions were created manually and it's not possible at all using Google Maps API?)
I borrow some code from here but no sub-locality is shown so I wonder what's wrong. Perhaps, there is no sub-locality at all for Singapore, under Google Maps' view.
The Geonames geographical database is available for download free of charge under a creative commons attribution license. The SN.zip file has the data for Singapore.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
In backbone.js, my understanding of communication with the server to retrieve data is cloudy at best... My current confusion is:
When you use a Collection you can fetch a set of data from the
database through the Model and filter out unwanted results. My concern
with this is that in an instance where the unfiltered results ends up
being millions of results long, this would slow things down.
I know this must not be the case of how it functions because others use backbone.js and I haven't seen this complaint before.
QUESTION:
Through backbone.js, when you fetch a set of objects where does it communicate to and how do you pass variables to specify filters for the method? For example, call to a get method that could take a user_id to return objects with the associated user_id.
If this is not the correct approach please let me know.
Explanation of how backbone.js communicates with the server, what type of interface it expects to communicate. Examples would also be very helpful.
Any help is greatly appreciated.
In the documentation there's a bit where you can pass in jQuery options. In those options you can set the "data" parameter, which is passed in as query parameters or as form parameters, depending on if it's a POST or GET.
jQuery.ajax options can also be passed directly as fetch options,
so to fetch a specific page of a paginated collection:
Documents.fetch({data: {page: 3}})
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I was wondering if you could help me - with PHP, I would like to have a system where after going through a like-gate, the customer uploads a file (I'm fine with doing this) and once they have done that the application will write a post on the users wall to tell them.
As a second stage to this, when in the admin tool for the app, the administrator puts a comment against the image that person has uploaded, we'd like the comment to go onto the customers wall - and this might be a week after.
Any help gratefully appreciated :)
You will want to use the Graph API http://developers.facebook.com/docs/reference/api/
You will need permissions from the user: http://developers.facebook.com/docs/reference/api/permissions/ Specifically publish_stream.
Posting to someone's wall is easy. From me/posts HTTP Post the correct parameters. See the post section of http://developers.facebook.com/docs/reference/api/user/
You can try it out here: http://developers.facebook.com/tools/explorer
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am using ColdFusion 9.1.2 and jQuery 1.6.2 and SQL Server 2008.
I am creating a web site that has a ton of dates in it. I want to spit out those dates into a full page calendar for the entire month and have users be able to scroll through each month.
I haven't heard of a ColdFusion events calendar feature. I am not looking for the jQuery datepicker thing.
What is a free and easy calendar solution for ColdFusion?
I have had the best luck with FullCalendar. It is a jQuery plugin which you can find here. Also, Raymond Camden has blogged an example using it with ColdFusion which you can find here
I was just looking for something similar yesterday - the best that I found was John Mason's Event Calendar on riaforge. It's the mostly recently updated and somewhat modern looking one compared to Ben Nadel's or any of the others on riaforge.
If you end up developing your own, please please please open source it. There's a big need for a modern CF calendar.
You could give Ben Nadel's Kinky Calendar a try:
http://www.bennadel.com/projects/kinky-calendar.htm