Text
How to Stay Awake in Meetings: Practical Tips and Techniques
Weāve all been thereālong meetings, dim lighting, and a monotonous speaker can make it hard to stay awake. Falling asleep in a meeting is not just embarrassing; it can also leave a bad impression. Fortunately, there are simple and effective ways to stay alert using physical techniques, breathing exercises, mental engagement, and dietary adjustments. 1. Physical Techniques to Stay Awake Pressureā¦

View On WordPress
0 notes
Text
Resolve Cache Issues After ThingWorx Upgrade
Introduction After upgrading the ThingWorx Platform, you may encounter several issues related to caching. Common problems include missing localization tokens in Composer labels, Advanced Grid not rendering properly, widgets not displaying correctly after installing new version extensions, and difficulty with deleting specific entities or User entities. Often, these issues come from cached filesā¦
0 notes
Text
Understanding Asynchronous and Synchronous Services in ThingWorx
ThingWorx offers two primary service execution models: synchronous and asynchronous. Choosing the right model for your service impacts performance and user experience. This article explores the differences between these models and provides an example to illustrate their functionalities. Synchronous vs. Asynchronous Services Synchronous Services: These are the default service type in ThingWorx.ā¦
0 notes
Text
How to Use System File Checker (SFC) in Windows for System Stability
System File Checker (SFC) is a built-in utility in Windows that scans and repairs corrupted or missing system files. Running SFC can help resolve various issues like crashes, error messages, or system instability. Hereās how to use it: Common Issues Where SFC Can Help: Frequent System Crashes or Blue Screen of Death (BSOD): If your computer crashes frequently or shows a blue screen, there mayā¦
0 notes
Text
Thingworx PostgreSQL Database Analysis and Cleanup
Introduction: In the context of Thingworx, maintaining a clean and optimized PostgreSQL database is crucial for ensuring optimal performance and reliability. Analyzing and cleaning up the database periodically can help identify and address issues related to data growth, performance bottlenecks, and disk space utilization. Query for Analyzing Table Sizes: To identify tables occupying the mostā¦
View On WordPress
0 notes
Text
SSO concepts with azure active directory and ping federate for thingworx, thingworx flow
Letās dive a bit deeper into how this superhero key (SSO) works with Azure Active Directory and Ping Federate to help you access ThingWorx and ThingWorx Flow.1. **You (the User):** You want to use ThingWorx and ThingWorx Flow, but you donāt want to remember separate usernames and passwords for both.2. **Azure Active Directory (AAD) and Ping Federate (PF):** These are like special helpers thatā¦
View On WordPress
0 notes
Text
Fundamental Concepts about digital certificates
Basic concepts1. **Public Key**: Think of this as a padlock that anyone can see and use. Itās used for locking or encrypting information. You can freely share your public key with others.2. **Private Key**: Imagine this as the unique key to unlock the padlock (public key). Itās a secret key that only you should have access to. Itās used to unlock or decrypt information that was locked with yourā¦
View On WordPress
0 notes
Text
JavaScript code to integrate with an external API
JavaScript code to integrate with an externalĀ API
Letās start with simple HTML code and save it as .html file. <!DOCTYPE html> <html> <head> <title>API Integration</title> <link rel="stylesheet" type="text/css" href="styles.css"> </head> <body> <button id="fetch-data-button">Fetch Data</button> <div id="data-container"></div> <script src="app.js"></script> </body> </html> This HTML code creates a button element with the idā¦
View On WordPress
6 notes
Ā·
View notes
Text
Fundamentals of Artificial Intelligence (AI)
Fundamentals of Artificial IntelligenceĀ (AI)
Artificial intelligence (AI) is a field of computer science and engineering focused on the creation of intelligent machines that work and act like humans. AI algorithms and technologies are used to design systems that can learn, reason, and make decisions based on data and experiences. Some fundamental concepts of AI include: Machine learning: Machine learning is a subfield of AI that involvesā¦
View On WordPress
0 notes
Text
Fundamental concepts of JavaScript with examples
Fundamental concepts of JavaScript withĀ examples
JavaScript is a programming language that is commonly used to add interactivity to websites. Here are some fundamental concepts of JavaScript: 1. Functions: Functions are blocks of code that can be called by name. They are often used to perform a specific task or to abstract away complex code. function sayHello() { console.log("Hello!"); } sayHello(); // prints "Hello!" to theā¦
View On WordPress
0 notes
Text
Free Azure Fundamentals AZ-900 exam Preparation Guide
Free Azure Fundamentals AZ-900 exam PreparationĀ Guide
Candidates for this exam should have foundational knowledge of cloud services and how those services are provided with Microsoft Azure. The exam is intended for candidates who are just beginning to work with cloud-based solutions and services or are new to Azure. Below is Link to Microsoft Resource for Exam Preparation. Exam AZ-900: Microsoft Azure Fundamentals Click on āOnline- Freeā buttonā¦
View On WordPress
0 notes
Text
Guidelines for selecting the optimal method for connecting to ThingWorx
Guidelines for selecting the optimal method for connecting toĀ ThingWorx
View On WordPress
1 note
Ā·
View note
Text
ThingWorx Persistence Provider Options
ThingWorx Persistence ProviderĀ Options
A Brief Note on Which Thingworx Persistence Provider would be of use for your installation
View On WordPress
0 notes
Text
Git Basic Notes
Your local repository consists of three ātreesā maintained by git.
The first one is your Working Directory which holds the actual files.
The second one is the Index which acts as a staging area and finally the HEAD which points to the last commit youāve made.
You can propose changes (add it to the Index) using
git add <filename>
git add *
This is the first step in the basic gitā¦
View On WordPress
0 notes
Text
Installation Troubleshooting
Installation Troubleshooting
IssuePossible Resolution(s)How do I enable Cross Origin Resource Sharing (CORS) in ThingWorx?Enabling CORS allows requests to be made from a domain/website to an instance of ThingWorx that is deployed on a different server. This can be done by updating the Apache Tomcat web.xml file. Detailed process steps are available atĀ https://wwā¦
View On WordPress
0 notes
Text
Six Sigma Foundation Notes
Six Sigma FoundationĀ Notes
What exactly is Six Sigma?
Six Sigma is a project-based approachĀ for improving effectiveness and efficiency.Ā It is a disciplined, customer-focused,Ā data-driven approach for improving the performanceĀ of processes, products, or services.
It strives for a defect level that isĀ no more than 3.4 parts per million(10 Lakh).Ā Sigma is a letter in the Greek alphabetĀ used to represent standardā¦
View On WordPress
0 notes
Text
New features in Thingworx 8.5
Timers and Schedulers are new entity types. Previous to this release,Ā TimersĀ andĀ SchedulersĀ were added as Thing Templates.
Several usability enhancements have been added to Composer:ā¦Ā TheĀ Open ProjectsĀ tab was added. Entities are grouped by the Project they belong to and by entity type.
ā¦Ā Tabs are created for each entity that you create or interact with.
ā¦Ā All grids in Composer areā¦
View On WordPress
0 notes