Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Apps/Applications Articles
Found 1,475 articles
How to Send Google Forms with Pre-filled Answers
Google Forms is a useful tool which is used to collect responses for surveys, quizzes and also feedback. It also have user-friendly interface which can be also easily understandable by the beginners. The main feature of google form is they save the responses in the spreadsheet which can be easily accessible and also the users can easily customize the appearance of their forms according to their requirements. In this article we will see how can we create and send the google form with pre-filled answers.Steps to Create and Send the Google Form with the Pre-filled AnswersStep 1 : Head to the Link to ...
Read MoreCreate Multiple Sub-folders in Google Drive Automatically
Automatically creating multiple sub-folders in Google drive helps organize files efficiently and saves time. Instead of manually setting up folders, using App Script for automatic sub-folders ensures efficient document management. This is important for educators and individuals handling large datasets, as it improves accessibility, collaboration and systematic file management. Step by step procedure for creating multiple sub-folders in google drive automatically is given below as:- Step 1: Open Google Drive and create a parent folder Go to https://drive.google.com/drive.Click New. And then, select New Folder. Name the folder (e.g., Main Folder) and click the Create button. Open the Folder and copy ...
Read MoreHow to Extract Email Addresses from Gmail Messages
To extract email addresses from Gmail Messages, you have to use google sheets also Apps Script for automation. Open a New google sheets and navigate to Extensions. Then, set up script that scan your mailbox and lists sender emails address in the google sheets automatically. Here's is step-by-step procedure to extract email addresses from Gmail messages is given follow these steps:- Step 1: Open Google Sheets Go to Google Sheets and create a new or Blank sheets. Step 2: Open Apps Script Click on Extension on clicking you will see many option among them select Apps Script. Step 3: ...
Read MoreSend Confirmation Emails with Google Forms
What is Google Forms? Google Forms is a user-friendly tool used for creating surveys, quizzes and making forms quickly and easily. The key features of Google Forms include:- Free to use and customizable form: It's completely free and integrated with google workspace tools like google drive, Email as well as Sheets. You can create a form with multiple question types as per your need like multiple choice, checkboxes etc. Collects Responses: Responses are automatically collected and organized in google forms itself. Quiz mode: You can turn your ...
Read MoreHow to detect device is Android phone or Android tablet?
In this article we will see, how we can detect the device is an Android phone or Android tablet. Here are the following steps for it.Detecting device is Android phone or Android tablet The following are the steps tp detect device is Android phone or Android tablet:Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project. Step 2 − Add the following code to res/layout/activity_main.xml. Step 3 − Add the following code to src/MainActivity.java import androidx.appcompat.app.AppCompatActivity; import android.content.Context; import android.os.Bundle; import ...
Read MoreWhat is the Difference Between Snapchat and TikTok
Snapchat and TikTok are two of the most popular social media platforms among young audiences today. While both focus on sharing short, engaging visual content, they cater to different use cases and offer unique features. This article explores the key differences between Snapchat and TikTok to help you understand their functionalities and choose the right one for your needs. What is Snapchat? Snapchat is a multimedia messaging app designed for sharing ephemeral content. Users can send photos, videos, and text messages that disappear after being viewed. Known for its privacy-focused features, Snapchat also offers Stories, filters, and augmented reality (AR) ...
Read MoreHow to dynamically remove items from ListView on a click?
This example demonstrate about How to dynamically remove items from ListView on a click Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project. Step 2 − Add the following code to res/layout/activity_main.xml. In the above code, we have taken listview. Step 3 − Add the following code to src/MainActivity.java package com.example.myapplication; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.ListView; import android.widget.TextView; public class MainActivity extends Activity { TextView textView; ArrayAdapter adapter = null; String[] ...
Read MoreHow to Add Password to PDF Documents in Google Drive
How to Add a Password to PDF Documents in Google Drive Sharing documents online can be risky if they contain sensitive information. Adding a password to your PDFs can help keep your data safe. With the PDF Toolbox add-on, you can easily encrypt your PDFs directly from Google Drive. Step-by-Step GuideAdding a password to your PDF documents in Google Drive is easy with the PDF Toolbox add-on. Here’s how you can do it: 1. Log in to Google Drive Open Google Drive and log in ...
Read MoreServing Large models - VLLM, LLAMA CPP Server, and SGLang
Both Large Language Models (LLMs) and Vision-Language Models (VLMs) have exploded in popularity over the last two years. Powered by recent advancements in GPU tech, these models have been pre-trained on trillions of tokens and allow developers to easily leverage state-of-the-art AI, either by fine-tuning them or just using them outright.But how would one go about hosting these models? In this article, we'll compare 3 of the most popular solutions: vLLM, llama.cpp, and SGLang.vLLMReleased in June 2023 by researchers from UC Berkeley, vLLM is a high-performance model LLM backend based on a technique called PagedAttention. PagedAttention optimizes memory management which ...
Read MoreHow Netflix Warms Petabytes of Cache Data
As one of the world's biggest streaming services, Netflix has a problem: to delivery high-quality video content to millions of users at any time. One part of this complex problem is so-called caching warmup: the strategy of storing copies of frequently accessed data closer to the users to reduce latency and make the streams smoother.Read this article to understand the several strategies and technologies that Netflix adopted in order to warm its cache up as efficiently as possible to give its viewers' the best possible viewing experience.Predictive Caching Predictive caching is the fundamental technique used by Netflix to predict what ...
Read More