Socializing is Healthy !

Checkout My Portfolio

Dreams | Passion | Code | Love

The Tech Stuff

Data Preprocessing for Machine Learning

Data Preprocessing for Machine Learning

Data is the core basis of any computer environment. For machine learning systems, data is required to be fetched and first converted into a usable form. To process the raw input data and convert it into a usable form for machine learning is called as […]

Environment setup for Machine Learning

Environment setup for Machine Learning

With machine learning, the most common principle is to create one program to solve many problems without having the need to be re-written. For a start to machine learning, you first need to train a classifier. A classifier can be considered a function which will […]

A Quick Start to Machine Learning

A Quick Start to Machine Learning

As per the definition by Wikipedia, Machine learning is a field of computer science that gives computers the ability to learn without being explicitly programmed. To my understanding, Machine Learning can be best explained as the answer to the question – how can we build […]

Inspect Element with Chrome Browser in Android

If you’re a developer and build websites, the most irritating thing that you would have come across is the abnormal behavior of websites on mobile devices. Another addition to this irritation is the inability to inspect and test HTML/CSS on the Android browser, just like […]

Query to check concurrent program’s responsibilities

REQUIREMENT : Query to find all responsibilities to which a concurrent program is attached.     /********************************************************** * PURPOSE: Find all responsibilities to which a concurrent* * program is attached * * AUTHOR: Anirudh Sethi * **********************************************************/   SELECT frt.responsibility_name, frg.request_group_name, frgu.request_unit_type,frgu.request_unit_id, fcpt.user_concurrent_program_name FROM fnd_Responsibility fr, […]

Submit a Concurrent Program From Backend

REQUIREMENT : To submit a concurrent program from back-end(database client) CASE STUDY : Oracle EBS, is a powerful enterprise business suite and it uses a concurrent manager to execute multiple concurrent programs at the same time. While testing for one of my modules today, I realized […]

Deleting Concurrent Program/Executable

REQUIREMENT : To delete a concurrent program or executable from back-end in Oracle Apps. CASE STUDY : Oracle EBS, does not allow you to delete a concurrent executable or concurrent program, once created from Oracle forms. However, you can delete them using standard oracle APIs from back-end. […]