Boomi – Searching for packaged components by using filters

Use the filter options on the Packaged Components list to find specific packaged components. Procedure​ From the Deploy menu, click Packaged Components. At the top of the packaged components list, click the Add Filter  button. The filter dialog opens. Select one or more of the following filters: Component — Filter by the exact name of any packaged component created on the… Continue reading Boomi – Searching for packaged components by using filters

Boomi – Searching for packaged components by name or version

Use the search bar on the Packaged Components list to find packaged components by version or component name. Procedure​ From the Deploy menu, click Packaged Components. In the search box at the top of the packaged components list, do one of the following: Type all or part of a component name. Type all or part of a version… Continue reading Boomi – Searching for packaged components by name or version

Develop a Dynamic Countdown Timer from scratch

HTML Structure First, create the basic structure in HTML. This includes creating div elements for displaying the countdown timer. <!DOCTYPE html> <html lang=”en”> <head>     <meta charset=”UTF-8″>     <meta name=”viewport” content=”width=device-width, initial-scale=1.0″>     <title>Dynamic Countdown Timer</title>     <style>         .countdown-container {             display:… Continue reading Develop a Dynamic Countdown Timer from scratch

Enhancing UI with IntersectionObserver in JavaScript

The IntersectionObserver API in JavaScript provides a way to asynchronously observe changes in the intersection of a target element with an ancestor element or with a top-level document’s viewport. This API is useful for implementing functionalities such as lazy-loading images, infinite scrolling, or triggering animations when elements come into view. How IntersectionObserver Works Create an… Continue reading Enhancing UI with IntersectionObserver in JavaScript

Setting Up and Configuring Git

Setting Up and Configuring Git Initialize a Git repository: git init Clone a repository: git clone <repository_url> Configure user information: git config –global user.name “Your Name” git config –global user.email “your.email@example.com” Working with Local Repositories Check the status of the repository: git status Add files to the staging area: git add <file_name> git add .… Continue reading Setting Up and Configuring Git

Setting null value to multi-select field.

Code Used : nlapiSetFieldValues(‘custbody11’,”); This code looks correct at first look but in actual Multiselect field need array for setting data So if you want to add field you have to use nlapiSetFieldValues(‘custbody11’,[1,2,3,4]); Same way if you add array without any value will solve the issue. So use nlapiSetFieldValues(‘custbody11’,[]); to remove the all values.

Programming with STM32 – Logic Analyzer

A logic analyzer is a crucial electronic instrument used in the design and testing of digital circuits. It captures and displays multiple signals from a digital system or circuit, allowing engineers to observe and analyze the operation and interaction of those signals over time. This tool is indispensable for debugging complex digital systems, verifying correct… Continue reading Programming with STM32 – Logic Analyzer

Programming STM 32- Address of Variable

Address of variables &myData An & sign put before the variable name actually gives the address of the data myData variable holds The format specifier used to print the address of a variable is %p Example #include <stdio.h> int main() {    char a1 = ‘A’;       printf(“The address of variable a1 is %pn”,&a1);    return 0; }… Continue reading Programming STM 32- Address of Variable

Variable naming best practices

When programming in C, following consistent and clear variable naming conventions is crucial for maintaining readable and manageable code. Here are the key rules and best practices for naming variables: Alphanumeric and Underscores Only: Variable names can consist of letters (both uppercase and lowercase), digits, and underscores (_). However, they must start with a letter… Continue reading Variable naming best practices

Published
Categorized as Embedded Tagged

Data types in Embedded C

Data types There are 2 data types a.      Integer b.      Float  Integer Data types Char (Character) ·        Size: Typically, 1 byte (8 bits) ·        Range: ·        Signed: -128 to 127 ·        Unsigned: 0 to 255 ·        Usage: Used to store single characters such as ‘A’, ‘b’, ‘1’, etc. It can also be used to store small integers. ·        Example: char letter = ‘A‘;… Continue reading Data types in Embedded C