Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I am mostly a backend guy and was assigned a task for a school project to build a simple interface out of a JSON object. Preferable a table that displays two nested values coming back from the JSON. Is there any easy way to build this with a GUI tool? The output can be in PHP or JS.
Thank you
You question is unclear, but I think you are asking if there are any pre-built HTML/CSS UIs. The answer is that there are many, and they are often referred to as "UI Frameworks" or "HTML/CSS Framworks".
The most common HTML/CSS frameworks are Bootstrap & Foundation, but my personal favorite is Semantic UI.
Each framework has its own unique features and bugs, but in most cases it comes down to personal preference.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I would like my users to able to chat with one another.
I currently use angularjs as the front-end and PHP in the back-end.
any ideas?
You should be looking at different languages for this. Node.js, MongoDB and Redis is a good start.
Also, just expecting people to give you code with such a vague request is not really in line with the spirit of things here. There are plenty of good examples online and a simple Google search would give you results like this https://github.com/joni2back/spachat if you're really keen on using PHP and Angular.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am new to AI development and looking for some guide line to start. I'm a php developer and if any one have experience AI developing in PHP, please help. Prefers AI related libraries and etc...
To develop AI applications, PHP seems not to be the best choice. It is a script language intended to create websites etc., not to, e.g., steer a robot. Of course you can use PHP to learn some concepts, but it makes sense to switch as soon as you want to create "serious" applications related to this topic.
To get into the topic, I recommend the Udacity course "Intro to Articial Intelligence", see https://www.udacity.com/course/cs271 - it is absolutly free to take this courses.
AI is not a simple topic, but it is very interesting. Good luck and have fun!
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
According to the Getting Started with Storm book from O'Reilly:
There is a way to specify topologies in a non-JVM language. Since Storm topologies are just Thrift structures, and Nimbus is a Thrift daemon, you can create and submit topologies in any language you want. But this it out of the scope of this book.
I know the book is a little outdated, but I'm hoping this tidbit is possible.
Is there a way to submit a pure PHP Storm Topology?
From the documentation it says (as one of the key properties of storm)
Programming language agnostic: Robust and scalable realtime processing
shouldn't be limited to a single platform. Storm topologies and
processing components can be defined in any language, making Storm
accessible to nearly anyone.
You can probably look here for similar things.
Closest documentation of this that I've found:
https://github.com/nathanmarz/storm/wiki/Using-non-JVM-languages-with-Storm
It mentions where to get started. I guess I just have to do more research on this.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I was going to build a Flash application which let users go around and collect resources, (tiles graphics, you go with WASD) and then send data to php that save in a database, but as there are many Security issues with Flash, and it's anyway going to die in the future (dropping support) I ask:
What do I need to do, make a similar features in HTML5, What do I need to know? Where is a good place to begin.
HTML5Rocks is a collection of demoes. In particular, for complex graphics, you'll probably be using the <canvas> element.
If you prefer one coherent text instead of a lot of single articles, you can also look at Dive Into HTML5.
Also, if you want to know all the details, having a look at the standard can't hurt.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
Since there isn't a lot of documentation out there, some features of the Lithium PHP Framework are not well known by the public. Are there any cool code features which I would miss if I just use the framework as shown in the docs?
Hey, thanks for asking. Most of what you can do with Lithium currently is documented at http://li3.me/docs/lithium and http://dev.lithify.me/drafts/source. However, with each new release we usually write a blog post highlighting some of the features that have been added and what you can do with them. Those can be found here: http://dev.lithify.me/lithium/wiki/blog.
Let me know if you need anything else, or have any other questions. As always, feel free to drop by #li3 on Freenode.
Filters are a huge benefit in Lithium. Notice how one would do "beforeSave" and "afterSave":
http://www.patrickjsparrow.com/php/beforesave-and-aftersave-in-lithium/