I am searching an CMS to publish a blog based on nodejs. One of the cms I found was ghost. It looks easy. But I am not sure if it is to simple.
What I want to do is, to add Infomationens like a location or a city name, to show Post or Images on a Map. I found no informations about. Is it possible?
If not, are there other Blog systems base on nodejs which have possibilty to add custom information?
This isn't built into the Ghost core, but you could write your own plugin to do this! Check out the development documents here https://github.com/TryGhost/Ghost/wiki/Apps-Getting-Started-for-Ghost-Devs
Related
I need to detect programatically if a website has an e-commerce platform/system
I don't need to know which one, I just need to know if the website has one.
(I have a big list of websites so I probably need to scrape them)
any suggestions on how I could do this without using external websites (like rescan.io/builtwith/etc) would be greatly appreciated!
thank you!
You can use a package called Puppeteer which is used to do web-scraping in node.js.
I don't know what platforms you are trying to look for, but I guess you could try something like giving the list of websites you want to check to a node.js process and ask Puppeteer to scrape them all. Then you look at the content you get back and for example look for Shopify's CDN in the tags or check the tags for keywords.
You will definitely need to check each different platform like Magento or Shopify for unique source code that clearly sets apart the framework you are looking at from other tools.
Is it possible to create a photo sharing app like Instagram using Smartface?
I've tried cloning Instagram using another software however it wasn't successful.
Thankyou
I really appreciate this😃
It is possible to create photo sharing app.If you do backend anyway that you can do, you can do front end of application by using Smartface
To get and display an image is simple. If you want to implement the "filters" part, then the story is different. SmartFace doesn't have a image processing option/library built in. So you need to implement this feature yourself.
A good option for beginners might be another product like: B4A https://www.b4x.com/b4a.html .. where the community have already created a lot of libraries/resources.
I'm trying to create a latest news section to the front page of my website. What is the simplest way to go about this? I know I could use WordPress but I don't necessarily want it to be a blog, just a scrolling news section.
Here's an example of what I'm talking about http://jackjohnsonmusic.com/archive/news
I've searched for ages on the internet and found nothing about this, if anyone has any links that maybe useful I'd appreciate it
Not sure if this is what your looking for but I have used it in the past. It takes news feeds from RSS and puts them on your site.
http://feed.mikle.com
Hi I am running a delivery shop and using delivery.com for my shop.
I also want to have my own website which user can order service or choose delivery time on the website like delivery.com does.
I wonder if is it better to develop from scratch or can I use wordpress and customize it? or are there plugins or widgets I can use for my website?
Please give me some advice what will be the best way to build my website.
Thank you.
Well technically anything is pretty much possible in Wordpress but it won't happen out of the box, unless you already have a theme in mind which serves this purpose. I won't be surprised if there is a theme out there which you can use to do this.
Personally I would build this from scratch as you would be able to build exactly what you want and you can build it with scalability in mind as well.
Wordpress tends to fall off when the site starts getting A LOT of traffic.
Check out Ruby on Rails, you would be surprised how at how simple it can be to build something like this.
The server will go down (if) when your site will visit 1000+ persons, because one of the problem of universal script that can be used (in opinion of creators) every where is that it make 100 sql queryes to display one simple page.
I have a simple HTML site with 100+ pages or so. I want to add a search bar at the top so the user can search the site. I know about Google Custom Search, but it shows ads unless you pay at least $100. Obviously I'd like ad-less search on my site for free if at all possible!
I've also heard about Lucene/Solr, but they do not actually crawl the site. For that I would apparently need Nutch.
Anyway, the site I have runs on a Microsoft IIS6 server, but I have basically no knowledge as to how Solr, Nutch, etc. gets "installed" on the server.
Also: I'd like to point out that I do have a local copy of the site. Perhaps I can do one big initial nutch "crawl" locally that will create an .xml for Solr?? That would help me get "up and running", but probably wouldn't be a good long-term solution.
..so should I just use Google Custom Search? or is there a not-extremely-painful-to-implement alternative? The brain hurts folks.
You did not mention how many search requests you want to handle but if you use the json-rest-api of google's custom search you have 100 searchqueries a day for free and you can display them without any ads on your page.
An simple example request can be found here.
Here is an easy way that works pretty well, although you may be looking for something more than this.
http://sitecomber.com/getsitecomber/
You can create code to paste into your site in about 2 minutes. It doesn't get easier than that. Search is powered by Google, but results are isolated to your website.
EDIT: This no longer works.