List folder contents, create thumbnails [closed] - javascript

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 3 years ago.
Improve this question
I'm sure this question has been asked and answered many times but I can't for the life of me find the answer I'm looking for.
Please bear with me, hopefully this will make sense, also I'm an enthusiast coder so please be gentle.
So I run a website for a very small 4x4 club. We hold get together once a month and get our cars all dirty. A few hundred photos get taken and are then uploaded to the website. I have to then manually create the html and thumbnails which can take quite a long time.
So, I'm looking for help and advice to make this task much easier and quicker. The website is running on IIS and I don't have root access so it's difficult to install anything.
Hopefully there's something out there to help me with this.
Many thanks..

It sounds like you need content management system.
Checkout wordpress.com, which is the most famous and widely used content management system. It is also very easy to get started and does not require any coding knowledge.
What is a content management system (CMS)?
A CMS allows you to manage your website via an easy to use portal. No coding is required. No scripting is required. The CMS is essentially a layer on top of all your code. It does the coding for you.
Instead of manually typing out the code to put your pictures, a CMS will let you simply upload the photo, as if it was a normal file. Then you can add any captions, headers etc. Depending on the complexity of the CMS.
This should make your life a lot easier. Check out wordpress.com.

Related

Using firebase for personal projects. Is there a risk of bills and how to avoid them? [closed]

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 2 years ago.
Improve this question
I ma looking to do a course and a a tutorial form youtube.
This project more specifically as it has a lot of features I would like to learn and my back-end knowledge is very basic currently.
[Project][1]
https://www.youtube.com/watch?v=m_u6P5k0vP0&t=584s
Since the video was released firebase plans have changed and you read tales of huge bills.
Is there a way to avoid this? and if anyone knows the project will I be safe from billing whilst building it? The project will never be published anywhere, just used by me for practise and testing which seems fine as the limits for free users are quite big. I just have some fear from reading horror stories of accidental loops and the like!
Any help or advice on this is welcome
I don't think you should be worried about racking up huge bills if you're not going to publish the project anywhere and if you're on the free plan they literally can't bill you. even if you decide the project is really cool and you want to publish it you won't have to use their other plans unless for specific reasons (like cloud functions for example). So basically don't worry it's a really good platform to help with your development. I myself have done tons of projects where I used firebase in the backend and it's been great.

How to create a blog with only index.html, style.css and script.js files? [closed]

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 3 years ago.
Improve this question
Inspiration for blog listing pages:
https://blog.hubspot.com/marketing
https://www.igomoon.com/blog
I only want to know from where should I start? from the beginning of the first line code? or Can import sample codes and edit them?
Should I develop index.html and style.css first? and after that script.js?
There are different approaches on how to realize such a project in general, strongly depending on what your skills are and how do you want to achieve your goals.
For example: If you already know how to write a page in simple HTML, do that first and build your skeleton in HTML. If you have placed all the things where you want to have them, you will find out that they are not looking very nice. If you know how to work with CSS you will add then your CSS. If you don't know how to work with CSS you need to learn that.
Once you have styled it with CSS you will figure out, that you page need to be filled with content and you will ask yourself how to do that. Then there are again several ways on how to do that. For example you maybe want to catch some data from Server X but don't know how to do that. You'll figure out, that you can fetch some data with node.js and then you need to learn node.js.
It's a ongoing process of figuring out:
1.) What you want to do
2.) Check out how to do that
3.) Learn the necessary skills
4.) Repeat points 1 to 3

On upload verify picture really is a ID or passport document [closed]

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 3 years ago.
Improve this question
I hope you can help me - I am pulling my hair out and cannot find a way to make this happen.
I want to add an upload on my website which involves a passport or ID photo, what I need to do is validate that it really is a passport or ID on upload.
There are a few websites and apps that do it so I know it's possible I would just like to know where I can look to get started - please can you help get me started or point me to an article to read?
Thanks all!
Some time ago I had to do something similar for a project.
I used Google's API: Google VISION to send me back the text on the ID card.
https://cloud.google.com/vision/docs/ocr
There is an equivalent at AWS if you want to make a comparison
https://aws.amazon.com/fr/blogs/aws/amazon-rekognition-image-detection-and-recognition-powered-by-deep-learning/
There is an equivalent at AWS if you want to make a comparison.
Then with an algorithm of data cleaning and analysis with the coordinates in the image it is quite easy to know if you are dealing with a real document.
To find out if it is a real identity card or a real passport, you will also need to check with your country's authorities to see if the number matches.
It is a rather long job and requires patience.
If you don't have a big budget to take a turnkey tool, I advise you to develop everything yourself and not take time on wobbly projects on the Internet.
If you do not want to use an external service you can use this locally : https://github.com/tesseract-ocr/
(I had to add extra text to fix the broken link) 😭

Similar and simplified examples (newbie questions) [closed]

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 4 years ago.
Improve this question
I'm currently studying about web development, I still don't know about jquery, but I've a little knowledge about javascript, html and css (basic).
I've been looking at some examples in github to improve my skills, and I've found this content;
https://github.com/stewilondanga/editables
I perfectly understand the theory, but I do not know how to put it into practice, I would like for any similar examples (simplified alternatives) and how to convert the exported code generated by javascript into a html5 table?
Any example would be appreciated! thanks for your attention!
First of all, jQuery does not generate code. It's a framework, you load it into a web page, and then you can use it from within Javascript code in that page.
I suggest you start by looking at the source of https://stewilondanga.github.io/editables/, if an editable tables is what you need. There are more general frameworks to do this, e.g. Aloha
To try it yourself, I'd suggest you bite the bullet equip yourself with some kind of web server, be it on a server somewhere, or on your local machine, so you can easily try out things like this, copy the sources, alter the code etc.., and quickly hit reload on your browser.
While it may seem easier to run a local server and point your browser at http://localhost/something, IMHO it also takes more tinkering to get browsers to embrace that fully. You don't need the extra grief while already learning all those new concepts. If you want to tackle this seriously, consider getting a hosting service or small VPS somewhere. If you don't know how to do that, get help for that first, but get it out of the way. It'll save you much grief.

Website which can handle database [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
I am a beginner here. I would like to create a website for our network , to collect some basic information & in making a graph out of it . The problem is that i don't know in which platform shall i proceed. I am stuck with whether to use Drupal ( i have only heard of it & interested in studying ) or any other tools. Please help me to develop it efficiently.I know php & javascript basics. Give your opinion on it, please.
My honest opinion would be to try and dive into MySQLi and PHP and build a custom application. Mainly because it'll help you learn (trust me). It seems very hard at first but it'll be fun and you'll be able to achieve exactly what you want essentially.
As far as I know Drupal is a content management system, like a blog. So it's not really cut out for just gathering stats and making graphs from them. I suppose you could set up a basic Google Form for gathering information and then transferring it into a Microsoft Excel Spreadsheet. More work that way but it's very easy and no development work involved.
Really depends what type of information you're after to be honest. A quick Google search can return loads of cool web apps for small business teams etc if you have a look around and see what does what. Really some more information on what you're collecting would be best though.
WordPress has plugins for everything. Including one that hooks into google graphs.
https://wordpress.org/plugins/googlegraph/
It's also fairly cookie cutter and well documented. If you're not a programmer at heart, but more jus interested in using it as a quick and dirty tool to get a job done quick, it may be the app for you.

Categories

Resources