Finding APIs for WebApps - api

Is there a place where I can search for APIs people make ? Like PowerShell scripting language has PowerShell gallery and poeple upload there modules and all ?
Specifically I'm looking to find stuff on food calories and exercise calories...

Related

Polarion testing reports. What is the best way to build dashboards and live reports?

Where do you find knowledge about Polarion testing reports?
Are you using external adviser? Documentation? Videos (find only few)
Or have you been just doing "play and learn"?
That is a very broad question.
One of the best ways is to study some extensions from the extension portal and to study the extensions from the sdk. There is a custom widget example available in the SDK.
External consultants are, depending where you are, also a good, but more pricier alternative.
The SDK Documentation is quite good, at least ok.
A good entry is ITrackerService and IWorkItem objects. For testing you will need additional ITestManagementService and ITestRun
If you want to setup and configure the system by yourself you need to "play and learn", otherwise it is clever(but costly) to let a external consultant do the job.

What language (or framework) can i use to build auto do some specific task in a website

I want to write a program to do some specific task in a website (ie: Auto order, auto login and post some comments). But i don't know what language or framework can help me do that.
If you know plase help me.
It sounds like you want to automate some user actions on a website, for that Selenium/Webdriver is the best library/framework if you want to do it on a Desktop or Appium if you want to do it on mobile.
Seeing as you are a beginner I would also recommend to use Python as its not only easy to get started with but its also one of the better languages in current times for anything related to automation.
I actually have multiple playlists that teach:
beginner to senior concepts in Selenium
beginner Appium concepts
how to build an advanced framework in Appium

Technologies required to develop something like bitlocker

My idea is to build a full volume encryption as a project.
I know C# and web technologies like HTML CSS JS and angular.
I want to build something like
BitLocker and https://www.diskcryptor.org/ , Can anyone guide what should be my first step, I have searched a lot on the web did not found any good starting point.
You can not do that in C# such sort of tools require kernel drivers which are usually written in C or C++
What you could do though would be to use the dcapi.dll from diskcryptor.org and implement only an own modern looking C# based GUI frontent.
This way you have full control over how the application looks and feals to the user yet don't have to mess around with drivers and boot-loaders.
IMHO that is a decent compromise.

mod_perl (without the perl) alternative apache API scriptable modules

I recently looked at a project called lemonldap-ng - which is a nice little portal front end to configurable authentication backend, and it uses LDAP and perl.
It was close to what I am looking to develop/implement, which is a (very simple) portal system for our various intranet end-points but it is a little but limited, and I need to extend it.
However after 2 weeks I gave up, mainly because the perl module and class structure was doing my head in, and that I don't know perl, and also that I think that project (not unlike most opensource projects) has limited documentation, and is kind of a pet project for the developers.
Is there is a similarly scriptable alternative to mod_perl that implements the type of Bucket Brigades style content filtering, and also arbitrary authentication filters based on filters and Handlers?
(I dont know any c either, so writing modules like that is also right out)
you should have ask to the LemonLDAP::NG community to help you extending the software. It is a full open project with maybe limited documentation but great responsiveness.

Automated content creation for the web?

I see a lot of new websites lately which create automated content, most notable SiteGuruji and 7zoom:
http://www.siteguruji.com/site/youtube.com
Is there an application framework or text analysis framework available to create such sites? SiteGuruji is doing full SEO analysis of the sites as well. Is there an SEO analysis library available? How do I do such an analysis?
Sorry for the noobish question, but i am new to programming and thus I am not sure which direction to start in.
By SEO did you mean this section of the page?
http://www.siteguruji.com/site/youtube.com#seo_status ?
I don't think any frameworks are available for SEO... however you can check out NLTK for text analysis and natural language processing:
http://www.nltk.org/book
You basically need to write your own classes to scrape content from the site and third party sites and analyse it. I have not found something ready for this. Bits fom here and there, you can use.
Personally, I have created everything from scratch using zend framework as basis.