Snippets Collections
{
    "first_name": "John",
    "last_name": "Smith"
}
{
    "email": "somemail@exampleemail.com"
}
(SELECT "id", "first_name", "last_name", NULL AS "name", "email", "payment_default" FROM orders LIMIT 1)
UNION
(SELECT "id", NULL AS "first_name", NULL AS "last_name", "name", "email", NULL AS "payment_default" FROM newsletter_subscriptions LIMIT 1);
CREATE TABLE newsletter_subscriptions (
	"id" VARCHAR,
    "name" VARCHAR,
    "email" VARCHAR
);


INSERT INTO newsletter_subscriptions VALUES
('72ff220f-af81-45c6-a9ab-ae406ef9cf0b', 'John Smith', 'john.smith@example.com'),
('5d974e06-a94b-4dbf-93d3-88bdb911c145', 'John Robert Smith', 'js@example.com'),
('d3dcb867-5f90-456a-a10b-8cdc42c47ee7', 'Jane Doe', 'jane@example.com'),
('03f7c5d4-0a12-456e-9412-cf304c8501f4', 'J. Robert Smith', 'js@example.com');
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>

    <c:set var="abc" value="20"/>
    
    <c:if test="${abc>15}">
         <c:redirect url="http://www.google.com"/>    
    </c:if>
    
    <c:if test="${abc<15}">
         <c:redirect url="http://www.micromsol.com"/>
    </c:if>

</body>
</html>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>

<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>JSTL forTokens tag</title>
</head>
<body>

     <c:forTokens items="www.java.util.package.com" delims="." var="x">
       <c:out value="${x}"/> <br/>
     </c:forTokens>
    
      
      

</body>
</html>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>

<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>forEach tag</title>
</head>
<body>
    <c:forEach var="counter" begin="1" end="10">
        <c:out value="${counter}"/> <br/>
    </c:forEach>

</body>
</html>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>

<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
   
    <c:set var="age" value="26"/>
    
    <c:if test="${age<18}">
       <c:out value="You are not eligible for DL"/>
    </c:if>
    
    <c:if test="${age>=18}">
        <c:out value="You are eligible for DL"/>
    </c:if>

</body>
</html>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>

   <c:set var="abc" value="alpha 1"/>
   <c:out value="${abc}"/>
   
   <c:set var="def" value="alpha 2"/>
   <c:remove var="def"/>
   <c:out value="${def}"/>


</body>
</html>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>

   <c:set var="abc" value="alpha 1"/>
   <c:out value="${abc}"/>
   
   <c:set var="def" value="alpha 2"/>
   <c:remove var="def"/>
   <c:out value="${def}"/>


</body>
</html>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="a" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>

    <a:out value="Hello JSTL"/>

</body>
</html>
function longest(s1, s2) {
  const totalString = (s1+s2).split('').sort()
  for (let i=0; i < totalString.length; i++) {
    while(totalString[i] === totalString[i+1]) totalString.splice(i+1, 1)
  }
    return totalString.join('')
}
function countSheeps(arrayOfSheep) {
  let count = 0
  for (const sheep of arrayOfSheep)
    if (sheep === true) {
      count++
    }
  
  return count
}

function countSheeps(arrayOfSheep) {
  return arrayOfSheep.filter(sheep => sheep).length
}

function countSheeps(arrayOfSheep) {
  //return arrayOfSheep.filter(sheep => sheep).length
  return arrayOfSheep.reduce((total, sheep)=>{
    return sheep ? total+=1 : total
  }, 0)
}
CREATE DATABASE EXAMPLE;

USE DATABASE EXAMPLE;

CREATE TABLE orders (
	"id" VARCHAR,
    "first_name" VARCHAR,
    "last_name" VARCHAR,
    "email" VARCHAR,
    "payment_default" BOOLEAN
);

INSERT INTO orders VALUES
('8e6189fa-8caf-4fd2-b648-07570a3e1a82', 'Jon', 'Smith', 'john.smith@example.com', false),
('a1aa064c-6065-43bd-a834-1a212b2dfb60', 'Robert', 'Smith', 'fraudster@example.com', true),
('8568ee21-e745-4db2-8f17-72e77396a591', 'John', 'Smith', 'john@example.com', false),
('b3c5108c-832e-479f-80d9-c2997ec93797', 'J. Marry', 'Doe', 'jane@example.com', false);
String.prototype.toJadenCase = function () { 
  const words = this.split(' ')

  for(let i = 0; i < words.length; i++){
    const wordArr = words[i].split('')
    wordArr[0] = wordArr[0].toUpperCase()
    words[i] = wordArr.join('')
  }
 return words.join(' ')
  
  }
if(not empty(prop("Pages")) and not empty(prop("Date Range")), "Progress: " + format(slice("‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒", 0, floor(20 * prop("Page On") / prop("Pages"))) + "📗" + slice("‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒", 0, 20 - floor(20 * prop("Page On") / prop("Pages"))) + " " + format(floor(100 * prop("Page On") / prop("Pages"))) + "%") + "\nDeadline: " + format(if(dateBetween(start(prop("Date Range")), now(), "days") > 0, "⭕‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒ 0%", if(dateBetween(end(prop("Date Range")), now(), "days") > -1, slice("‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒", 0, floor(20 * dateBetween(now(), start(prop("Date Range")), "days") / dateBetween(end(prop("Date Range")), start(prop("Date Range")), "days"))) + "⭕" + slice("‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒", 0, 20 - floor(20 * dateBetween(now(), start(prop("Date Range")), "days") / dateBetween(end(prop("Date Range")), start(prop("Date Range")), "days"))) + " " + format(floor(100 * dateBetween(now(), start(prop("Date Range")), "days") / dateBetween(end(prop("Date Range")), start(prop("Date Range")), "days"))) + "%", "‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒‒⭕ 100%"))), "")
if(not empty(prop("Due Date")), if(prop("Done"), "✅ Complete", if(formatDate(prop("Due Date"), "L") == formatDate(now(), "L"), "🚧 Due Today", if(prop("Due Date") < now() and prop("Done") == false, "❌ Overdue", "🗓 Due Later"))), "")
#fbuilder, #fbuilder label,
#fbuilder span { color: #00f; }
	
		var cff_metabox_nonce = 'e40c39c074';
		try
		{
			function calculatedFieldsFormReady()
			{
				/* Revisions code */
				$calculatedfieldsfQuery('[name="cff_apply_revision"]').click(
					function(){
						var revision = $calculatedfieldsfQuery('[name="cff_revision_list"]').val();
						if(revision*1)
						{
							result = window.confirm('The action will load the revision selected, the data are not stored will be lose. Do you want continue?');
							if(result)
							{
								$calculatedfieldsfQuery('<form method="post" action="" id="cpformconf" name="cpformconf" class="cff_form_builder"><input type="hidden" name="_cpcff_nonce" value="e55947e105" /><input name="cp_calculatedfieldsf_id" type="hidden" value="9" /><input type="hidden" name="cpcff_revision_to_apply" value="'+esc_attr( revision )+'"></form>').appendTo('body').submit();
							}
						}
					}
				);

				// Form builder code

				var f;
				function run_fbuilder($)
				{
					f = $("#fbuilder").fbuilder();
					window['cff_form'] = f;
					f.fBuild.loadData( "form_structure", "templates" );
				};

				if(!('fbuilder' in $calculatedfieldsfQuery.fn))
				{
					$calculatedfieldsfQuery.getScript(
						location.protocol + '//' + location.host + location.pathname+'?page=cp_calculated_fields_form&cp_cff_resources=admin',
						function(){run_fbuilder(fbuilderjQuery);}
					);
				}
				else
				{
					run_fbuilder($calculatedfieldsfQuery);
				}

				$calculatedfieldsfQuery(".itemForm").click(function() {
				   f.fBuild.addItem($calculatedfieldsfQuery(this).attr("id"));
				})
				.draggable({
					connectToSortable: '#fbuilder #fieldlist',
					delay: 100,
					helper: function() {
						var $ = $calculatedfieldsfQuery,
							e = $(this),
							width = e.outerWidth(),
							text = e.text(),
							type = e.attr('id'),
							el = $('<div class="cff-button-drag '+type+'">');

						return el.html( text ).css( 'width', width ).attr('data-control',type);
					},
					revert: 'invalid',
					cancel: false,
					scroll: false,
					opacity: 1,
					containment: 'document',
					stop: function(){$calculatedfieldsfQuery('.ctrlsColumn .itemForm').removeClass('button-primary');}
				});

				jQuery(".metabox_disabled_section .inside")
				.click( function(){
				  if(confirm("These features aren\'t available in this version. Do you want to open the plugin\'s page to check other versions?"))
					  document.location = 'https://cff.dwbooster.com/';
				})
				.find('*')
				.prop('disabled', true);
			};
		}
		catch( err ){}
		try{$calculatedfieldsfQuery = jQuery.noConflict();} catch ( err ) {}
		if (typeof $calculatedfieldsfQuery == 'undefined')
		{
			 if(window.addEventListener){
				window.addEventListener('load', function(){
					try{$calculatedfieldsfQuery = jQuery.noConflict();} catch ( err ) {return;}
					calculatedFieldsFormReady();
				});
			}else{
				window.attachEvent('onload', function(){
					try{$calculatedfieldsfQuery = jQuery.noConflict();} catch ( err ) {return;}
					calculatedFieldsFormReady();
				});
			}
		}
		else
		{
			$calculatedfieldsfQuery(document).ready( calculatedFieldsFormReady );
		}
	 
	 
#include <stdio.h>

/*Write C code that does the following operation. 
-	Asks and gets the number of WINs (3 points/win), DRAWs (1 points/draw) and LOSSes (0 points/loss) for four football teams. 
-	Records them in a multidimensional array. 
-	Calculates the total scores. 
-	Reports the score table.*/


int main() {
    int score[3][3];
    for(int i=0;i<3;i++)
    {
        printf("enter win draw and loss of team %d: ",i+1);
        scanf("%d %d %d ",&score[i][0],&score[i][1],&score[i][2]);
    }
    printf("team name\t  win\t draw\t loss\t points\n");
    for(int i=0;i<3;i++)
    {
        int points=score[i][0]*3+score[i][1]*1;
        printf("\nteam %d\t\t  %d\t\t  %d\t\t %d\t\t  %d\n",i+1,score[i][0],score[i][1],score[i][2],points);
    }
    
    
    return 0;
}


output:

enter win draw and loss of team 1: 2
1
1
1
enter win draw and loss of team 2: 2
3
1
enter win draw and loss of team 3: 3
3
2
team name	  win	 draw	 loss	 points

team 1		  2		  1		 1		  7

team 2		  1		  2		 3		  5

team 3		  1		  3		 3		  6
form_structure_1=[[{"form_identifier":"","name":"fieldname5","shortlabel":"","index":0,"ftype":"fSectionBreak","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05de\u05d9\u05d8\u05d4 \u05e7\u05d5\u05de\u05e4\u05dc\u05d8","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname2","shortlabel":"","index":1,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05de\u05d7\u05d9\u05e8 \u05de\u05d7\u05d9\u05e8\u05d5\u05df","predefined":"","predefinedClick":false,"required":true,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"number","formats":["digits","number","percent"],"fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname6","shortlabel":"","index":2,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05d4\u05e0\u05d7\u05ea \u05e1\u05dc","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"percent","formats":["digits","number","percent"],"fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname10","shortlabel":"","index":3,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05e9\u05d9\u05d3\u05e8\u05d5\u05d2 \u05de\u05e0\u05d2\u05e0\u05d5\u05df \u05e8\u05d0\u05e9\u05d5\u05df","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"number","formats":["digits","number","percent"],"fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname11","shortlabel":"","index":4,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05e9\u05d9\u05d3\u05e8\u05d5\u05d2 \u05de\u05e0\u05d2\u05e0\u05d5\u05df \u05e9\u05e0\u05d9","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"number","formats":["digits","number","percent"],"fBuild":{},"parent":""},{"dependencies":[{"rule":"","complex":false,"fields":[""]}],"form_identifier":"","name":"fieldname4","shortlabel":"","index":5,"ftype":"fCalculated","userhelp":"Note: Sum of First Number + Second Number","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05e1\u05d4\u0022\u05db","predefined":"","required":false,"exclude":false,"size":"medium","eq":"(fieldname2-(fieldname2*fieldname6))+fieldname10+fieldname11","min":"","max":"","suffix":"","prefix":"","decimalsymbol":".","groupingsymbol":"","readonly":true,"currency":false,"noEvalIfManual":true,"formatDynamically":false,"hidefield":false,"fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname13","shortlabel":"","index":6,"ftype":"fdiv","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","fields":["fieldname12","fieldname14","fieldname17"],"columns":"3","rearrange":0,"title":"div","collapsed":false,"fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname12","shortlabel":"","index":7,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"1 \u05ea\u05d5\u05e1\u05e4\u05d5\u05ea","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"number","formats":["digits","number","percent"],"fBuild":{},"parent":"fieldname13"},{"form_identifier":"","name":"fieldname14","shortlabel":"","index":8,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05ea\u05d5\u05e1\u05e4\u05d5\u05ea 2","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"number","formats":["digits","number","percent"],"fBuild":{},"parent":"fieldname13"},{"form_identifier":"","name":"fieldname20","shortlabel":"","index":9,"ftype":"fdiv","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","fields":["fieldname16","fieldname15","fieldname21","fieldname22","fieldname23","fieldname24"],"columns":"2","rearrange":0,"title":"div","collapsed":false,"fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname16","shortlabel":"","index":10,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05d4\u05e0\u05d7\u05ea \u05de\u05d6\u05d5\u05de\u05df","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"percent","formats":["digits","number","percent"],"fBuild":{},"parent":"fieldname20"},{"form_identifier":"","name":"fieldname21","shortlabel":"","index":11,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05d4\u05e0\u05d7\u05ea \u05de\u05d5\u05db\u05e8","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"percent","formats":["digits","number","percent"],"fBuild":{},"parent":"fieldname20"},{"form_identifier":"","name":"fieldname23","shortlabel":"","index":12,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05d4\u05e0\u05d7\u05ea \u05de\u05e0\u05d4\u05dc","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"percent","formats":["digits","number","percent"],"fBuild":{},"parent":"fieldname20"},{"dependencies":[{"rule":"","complex":false,"fields":[""]}],"form_identifier":"","name":"fieldname15","shortlabel":"","index":13,"ftype":"fCalculated","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05e1\u0022\u05d4\u05db \u05d0\u05d7\u05e8\u05d9 \u05d4\u05e0\u05d7\u05ea \u05de\u05d6\u05d5\u05de\u05df","predefined":"","required":false,"exclude":false,"size":"medium","eq":"(fieldname17-(fieldname17*fieldname16))","min":"","max":"","suffix":"","prefix":"","decimalsymbol":".","groupingsymbol":"","readonly":true,"currency":false,"noEvalIfManual":true,"formatDynamically":false,"hidefield":false,"fBuild":{},"parent":"fieldname20"},{"dependencies":[{"rule":"","complex":false,"fields":[""]}],"form_identifier":"","name":"fieldname22","shortlabel":"","index":14,"ftype":"fCalculated","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05e1\u0022\u05d4\u05db \u05d0\u05d7\u05e8\u05d9 \u05d4\u05e0\u05d7\u05ea \u05de\u05d5\u05db\u05e8","predefined":"","required":false,"exclude":false,"size":"medium","eq":"(fieldname15-(fieldname15*fieldname21))","min":"","max":"","suffix":"","prefix":"","decimalsymbol":".","groupingsymbol":"","readonly":true,"currency":false,"noEvalIfManual":true,"formatDynamically":false,"hidefield":false,"fBuild":{},"parent":"fieldname20"},{"dependencies":[{"rule":"","complex":false,"fields":[""]}],"form_identifier":"","name":"fieldname24","shortlabel":"","index":15,"ftype":"fCalculated","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05e1\u0022\u05d4\u05db \u05d0\u05d7\u05e8\u05d9 \u05d4\u05e0\u05d7\u05ea \u05de\u05e0\u05d4\u05dc","predefined":"","required":false,"exclude":false,"size":"medium","eq":"(fieldname22-(fieldname22*fieldname23))","min":"","max":"","suffix":"","prefix":"","decimalsymbol":".","groupingsymbol":"","readonly":true,"currency":false,"noEvalIfManual":true,"formatDynamically":false,"hidefield":false,"fBuild":{},"parent":"fieldname20"},{"dependencies":[{"rule":"","complex":false,"fields":[""]}],"form_identifier":"","name":"fieldname17","shortlabel":"","index":16,"ftype":"fCalculated","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05e1\u0022\u05d4\u05db \u05d0\u05d7\u05e8\u05d9 \u05ea\u05d5\u05e1\u05e4\u05d5\u05ea","predefined":"","required":false,"exclude":false,"size":"medium","eq":"fieldname12+fieldname14+fieldname4","min":"","max":"","suffix":"","prefix":"","decimalsymbol":".","groupingsymbol":"","readonly":true,"currency":false,"noEvalIfManual":true,"formatDynamically":false,"hidefield":false,"fBuild":{},"parent":"fieldname13"}],{"0":{"title":"Simple Operations","description":"Below you can test two simple and frequent operations.","formlayout":"top_aligned","formtemplate":"cp_cff_14","evalequations":1,"evalequationsevent":"2","loading_animation":0,"autocomplete":1,"persistence":0,"animate_form":0,"customstyles":""},"formid":"cp_calculatedfieldsf_pform_1"}];
form_structure_1=[[{"form_identifier":"","name":"fieldname5","shortlabel":"","index":0,"ftype":"fSectionBreak","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05de\u05d9\u05d8\u05d4 \u05e7\u05d5\u05de\u05e4\u05dc\u05d8","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname2","shortlabel":"","index":1,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05de\u05d7\u05d9\u05e8 \u05de\u05d7\u05d9\u05e8\u05d5\u05df","predefined":"","predefinedClick":false,"required":true,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"number","formats":["digits","number","percent"],"fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname6","shortlabel":"","index":2,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05d4\u05e0\u05d7\u05ea \u05e1\u05dc","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"percent","formats":["digits","number","percent"],"fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname10","shortlabel":"","index":3,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05e9\u05d9\u05d3\u05e8\u05d5\u05d2 \u05de\u05e0\u05d2\u05e0\u05d5\u05df \u05e8\u05d0\u05e9\u05d5\u05df","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"number","formats":["digits","number","percent"],"fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname11","shortlabel":"","index":4,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05e9\u05d9\u05d3\u05e8\u05d5\u05d2 \u05de\u05e0\u05d2\u05e0\u05d5\u05df \u05e9\u05e0\u05d9","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"number","formats":["digits","number","percent"],"fBuild":{},"parent":""},{"dependencies":[{"rule":"","complex":false,"fields":[""]}],"form_identifier":"","name":"fieldname4","shortlabel":"","index":5,"ftype":"fCalculated","userhelp":"Note: Sum of First Number + Second Number","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05e1\u05d4\u0022\u05db","predefined":"","required":false,"exclude":false,"size":"medium","eq":"(fieldname2-(fieldname2*fieldname6))+fieldname10+fieldname11","min":"","max":"","suffix":"","prefix":"","decimalsymbol":".","groupingsymbol":"","readonly":true,"currency":false,"noEvalIfManual":true,"formatDynamically":false,"hidefield":false,"fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname13","shortlabel":"","index":6,"ftype":"fdiv","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","fields":["fieldname12","fieldname14","fieldname17"],"columns":"3","rearrange":0,"title":"div","collapsed":false,"fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname12","shortlabel":"","index":7,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"1 \u05ea\u05d5\u05e1\u05e4\u05d5\u05ea","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"number","formats":["digits","number","percent"],"fBuild":{},"parent":"fieldname13"},{"form_identifier":"","name":"fieldname14","shortlabel":"","index":8,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05ea\u05d5\u05e1\u05e4\u05d5\u05ea 2","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"number","formats":["digits","number","percent"],"fBuild":{},"parent":"fieldname13"},{"form_identifier":"","name":"fieldname20","shortlabel":"","index":9,"ftype":"fdiv","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","fields":["fieldname16","fieldname15","fieldname21","fieldname22","fieldname23","fieldname24"],"columns":"2","rearrange":0,"title":"div","collapsed":false,"fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname16","shortlabel":"","index":10,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05d4\u05e0\u05d7\u05ea \u05de\u05d6\u05d5\u05de\u05df","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"percent","formats":["digits","number","percent"],"fBuild":{},"parent":"fieldname20"},{"form_identifier":"","name":"fieldname21","shortlabel":"","index":11,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05d4\u05e0\u05d7\u05ea \u05de\u05d5\u05db\u05e8","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"percent","formats":["digits","number","percent"],"fBuild":{},"parent":"fieldname20"},{"form_identifier":"","name":"fieldname23","shortlabel":"","index":12,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05d4\u05e0\u05d7\u05ea \u05de\u05e0\u05d4\u05dc","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"percent","formats":["digits","number","percent"],"fBuild":{},"parent":"fieldname20"},{"dependencies":[{"rule":"","complex":false,"fields":[""]}],"form_identifier":"","name":"fieldname15","shortlabel":"","index":13,"ftype":"fCalculated","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05e1\u0022\u05d4\u05db \u05d0\u05d7\u05e8\u05d9 \u05d4\u05e0\u05d7\u05ea \u05de\u05d6\u05d5\u05de\u05df","predefined":"","required":false,"exclude":false,"size":"medium","eq":"(fieldname17-(fieldname17*fieldname16))","min":"","max":"","suffix":"","prefix":"","decimalsymbol":".","groupingsymbol":"","readonly":true,"currency":false,"noEvalIfManual":true,"formatDynamically":false,"hidefield":false,"fBuild":{},"parent":"fieldname20"},{"dependencies":[{"rule":"","complex":false,"fields":[""]}],"form_identifier":"","name":"fieldname22","shortlabel":"","index":14,"ftype":"fCalculated","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05e1\u0022\u05d4\u05db \u05d0\u05d7\u05e8\u05d9 \u05d4\u05e0\u05d7\u05ea \u05de\u05d5\u05db\u05e8","predefined":"","required":false,"exclude":false,"size":"medium","eq":"(fieldname15-(fieldname15*fieldname21))","min":"","max":"","suffix":"","prefix":"","decimalsymbol":".","groupingsymbol":"","readonly":true,"currency":false,"noEvalIfManual":true,"formatDynamically":false,"hidefield":false,"fBuild":{},"parent":"fieldname20"},{"dependencies":[{"rule":"","complex":false,"fields":[""]}],"form_identifier":"","name":"fieldname24","shortlabel":"","index":15,"ftype":"fCalculated","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05e1\u0022\u05d4\u05db \u05d0\u05d7\u05e8\u05d9 \u05d4\u05e0\u05d7\u05ea \u05de\u05e0\u05d4\u05dc","predefined":"","required":false,"exclude":false,"size":"medium","eq":"(fieldname22-(fieldname22*fieldname23))","min":"","max":"","suffix":"","prefix":"","decimalsymbol":".","groupingsymbol":"","readonly":true,"currency":false,"noEvalIfManual":true,"formatDynamically":false,"hidefield":false,"fBuild":{},"parent":"fieldname20"},{"dependencies":[{"rule":"","complex":false,"fields":[""]}],"form_identifier":"","name":"fieldname17","shortlabel":"","index":16,"ftype":"fCalculated","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05e1\u0022\u05d4\u05db \u05d0\u05d7\u05e8\u05d9 \u05ea\u05d5\u05e1\u05e4\u05d5\u05ea","predefined":"","required":false,"exclude":false,"size":"medium","eq":"fieldname12+fieldname14+fieldname4","min":"","max":"","suffix":"","prefix":"","decimalsymbol":".","groupingsymbol":"","readonly":true,"currency":false,"noEvalIfManual":true,"formatDynamically":false,"hidefield":false,"fBuild":{},"parent":"fieldname13"}],{"0":{"title":"Simple Operations","description":"Below you can test two simple and frequent operations.","formlayout":"top_aligned","formtemplate":"cp_cff_14","evalequations":1,"evalequationsevent":"2","loading_animation":0,"autocomplete":1,"persistence":0,"animate_form":0,"customstyles":""},"formid":"cp_calculatedfieldsf_pform_1"}];
	
		var cff_metabox_nonce = 'e40c39c074';
		try
		{
			function calculatedFieldsFormReady()
			{
				/* Revisions code */
				$calculatedfieldsfQuery('[name="cff_apply_revision"]').click(
					function(){
						var revision = $calculatedfieldsfQuery('[name="cff_revision_list"]').val();
						if(revision*1)
						{
							result = window.confirm('The action will load the revision selected, the data are not stored will be lose. Do you want continue?');
							if(result)
							{
								$calculatedfieldsfQuery('<form method="post" action="" id="cpformconf" name="cpformconf" class="cff_form_builder"><input type="hidden" name="_cpcff_nonce" value="e55947e105" /><input name="cp_calculatedfieldsf_id" type="hidden" value="9" /><input type="hidden" name="cpcff_revision_to_apply" value="'+esc_attr( revision )+'"></form>').appendTo('body').submit();
							}
						}
					}
				);

				// Form builder code

				var f;
				function run_fbuilder($)
				{
					f = $("#fbuilder").fbuilder();
					window['cff_form'] = f;
					f.fBuild.loadData( "form_structure", "templates" );
				};

				if(!('fbuilder' in $calculatedfieldsfQuery.fn))
				{
					$calculatedfieldsfQuery.getScript(
						location.protocol + '//' + location.host + location.pathname+'?page=cp_calculated_fields_form&cp_cff_resources=admin',
						function(){run_fbuilder(fbuilderjQuery);}
					);
				}
				else
				{
					run_fbuilder($calculatedfieldsfQuery);
				}

				$calculatedfieldsfQuery(".itemForm").click(function() {
				   f.fBuild.addItem($calculatedfieldsfQuery(this).attr("id"));
				})
				.draggable({
					connectToSortable: '#fbuilder #fieldlist',
					delay: 100,
					helper: function() {
						var $ = $calculatedfieldsfQuery,
							e = $(this),
							width = e.outerWidth(),
							text = e.text(),
							type = e.attr('id'),
							el = $('<div class="cff-button-drag '+type+'">');

						return el.html( text ).css( 'width', width ).attr('data-control',type);
					},
					revert: 'invalid',
					cancel: false,
					scroll: false,
					opacity: 1,
					containment: 'document',
					stop: function(){$calculatedfieldsfQuery('.ctrlsColumn .itemForm').removeClass('button-primary');}
				});

				jQuery(".metabox_disabled_section .inside")
				.click( function(){
				  if(confirm("These features aren\'t available in this version. Do you want to open the plugin\'s page to check other versions?"))
					  document.location = 'https://cff.dwbooster.com/';
				})
				.find('*')
				.prop('disabled', true);
			};
		}
		catch( err ){}
		try{$calculatedfieldsfQuery = jQuery.noConflict();} catch ( err ) {}
		if (typeof $calculatedfieldsfQuery == 'undefined')
		{
			 if(window.addEventListener){
				window.addEventListener('load', function(){
					try{$calculatedfieldsfQuery = jQuery.noConflict();} catch ( err ) {return;}
					calculatedFieldsFormReady();
				});
			}else{
				window.attachEvent('onload', function(){
					try{$calculatedfieldsfQuery = jQuery.noConflict();} catch ( err ) {return;}
					calculatedFieldsFormReady();
				});
			}
		}
		else
		{
			$calculatedfieldsfQuery(document).ready( calculatedFieldsFormReady );
		}
	 
	 
form_structure_1=[[{"form_identifier":"","name":"fieldname5","shortlabel":"","index":0,"ftype":"fSectionBreak","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05de\u05d9\u05d8\u05d4 \u05e7\u05d5\u05de\u05e4\u05dc\u05d8","fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname2","shortlabel":"","index":1,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05de\u05d7\u05d9\u05e8 \u05de\u05d7\u05d9\u05e8\u05d5\u05df","predefined":"","predefinedClick":false,"required":true,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"number","formats":["digits","number","percent"],"fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname6","shortlabel":"","index":2,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05d4\u05e0\u05d7\u05ea \u05e1\u05dc","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"percent","formats":["digits","number","percent"],"fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname10","shortlabel":"","index":3,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05e9\u05d9\u05d3\u05e8\u05d5\u05d2 \u05de\u05e0\u05d2\u05e0\u05d5\u05df \u05e8\u05d0\u05e9\u05d5\u05df","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"number","formats":["digits","number","percent"],"fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname11","shortlabel":"","index":4,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05e9\u05d9\u05d3\u05e8\u05d5\u05d2 \u05de\u05e0\u05d2\u05e0\u05d5\u05df \u05e9\u05e0\u05d9","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"number","formats":["digits","number","percent"],"fBuild":{},"parent":""},{"dependencies":[{"rule":"","complex":false,"fields":[""]}],"form_identifier":"","name":"fieldname4","shortlabel":"","index":5,"ftype":"fCalculated","userhelp":"Note: Sum of First Number + Second Number","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05e1\u05d4\u0022\u05db","predefined":"","required":false,"exclude":false,"size":"medium","eq":"(fieldname2-(fieldname2*fieldname6))+fieldname10+fieldname11","min":"","max":"","suffix":"","prefix":"","decimalsymbol":".","groupingsymbol":"","readonly":true,"currency":false,"noEvalIfManual":true,"formatDynamically":false,"hidefield":false,"fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname13","shortlabel":"","index":6,"ftype":"fdiv","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","fields":["fieldname12","fieldname14","fieldname17"],"columns":"3","rearrange":0,"title":"div","collapsed":false,"fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname12","shortlabel":"","index":7,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"1 \u05ea\u05d5\u05e1\u05e4\u05d5\u05ea","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"number","formats":["digits","number","percent"],"fBuild":{},"parent":"fieldname13"},{"form_identifier":"","name":"fieldname14","shortlabel":"","index":8,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05ea\u05d5\u05e1\u05e4\u05d5\u05ea 2","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"number","formats":["digits","number","percent"],"fBuild":{},"parent":"fieldname13"},{"form_identifier":"","name":"fieldname20","shortlabel":"","index":9,"ftype":"fdiv","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","fields":["fieldname16","fieldname15","fieldname21","fieldname22","fieldname23","fieldname24"],"columns":"2","rearrange":0,"title":"div","collapsed":false,"fBuild":{},"parent":""},{"form_identifier":"","name":"fieldname16","shortlabel":"","index":10,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05d4\u05e0\u05d7\u05ea \u05de\u05d6\u05d5\u05de\u05df","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"percent","formats":["digits","number","percent"],"fBuild":{},"parent":"fieldname20"},{"form_identifier":"","name":"fieldname21","shortlabel":"","index":11,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05d4\u05e0\u05d7\u05ea \u05de\u05d5\u05db\u05e8","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"percent","formats":["digits","number","percent"],"fBuild":{},"parent":"fieldname20"},{"form_identifier":"","name":"fieldname23","shortlabel":"","index":12,"ftype":"fnumber","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05d4\u05e0\u05d7\u05ea \u05de\u05e0\u05d4\u05dc","predefined":"","predefinedClick":false,"required":false,"exclude":false,"readonly":false,"numberpad":false,"spinner":false,"size":"small","thousandSeparator":"","decimalSymbol":".","min":"","max":"","formatDynamically":false,"dformat":"percent","formats":["digits","number","percent"],"fBuild":{},"parent":"fieldname20"},{"dependencies":[{"rule":"","complex":false,"fields":[""]}],"form_identifier":"","name":"fieldname15","shortlabel":"","index":13,"ftype":"fCalculated","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05e1\u0022\u05d4\u05db \u05d0\u05d7\u05e8\u05d9 \u05d4\u05e0\u05d7\u05ea \u05de\u05d6\u05d5\u05de\u05df","predefined":"","required":false,"exclude":false,"size":"medium","eq":"(fieldname17-(fieldname17*fieldname16))","min":"","max":"","suffix":"","prefix":"","decimalsymbol":".","groupingsymbol":"","readonly":true,"currency":false,"noEvalIfManual":true,"formatDynamically":false,"hidefield":false,"fBuild":{},"parent":"fieldname20"},{"dependencies":[{"rule":"","complex":false,"fields":[""]}],"form_identifier":"","name":"fieldname22","shortlabel":"","index":14,"ftype":"fCalculated","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05e1\u0022\u05d4\u05db \u05d0\u05d7\u05e8\u05d9 \u05d4\u05e0\u05d7\u05ea \u05de\u05d5\u05db\u05e8","predefined":"","required":false,"exclude":false,"size":"medium","eq":"(fieldname15-(fieldname15*fieldname21))","min":"","max":"","suffix":"","prefix":"","decimalsymbol":".","groupingsymbol":"","readonly":true,"currency":false,"noEvalIfManual":true,"formatDynamically":false,"hidefield":false,"fBuild":{},"parent":"fieldname20"},{"dependencies":[{"rule":"","complex":false,"fields":[""]}],"form_identifier":"","name":"fieldname24","shortlabel":"","index":15,"ftype":"fCalculated","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05e1\u0022\u05d4\u05db \u05d0\u05d7\u05e8\u05d9 \u05d4\u05e0\u05d7\u05ea \u05de\u05e0\u05d4\u05dc","predefined":"","required":false,"exclude":false,"size":"medium","eq":"(fieldname22-(fieldname22*fieldname23))","min":"","max":"","suffix":"","prefix":"","decimalsymbol":".","groupingsymbol":"","readonly":true,"currency":false,"noEvalIfManual":true,"formatDynamically":false,"hidefield":false,"fBuild":{},"parent":"fieldname20"},{"dependencies":[{"rule":"","complex":false,"fields":[""]}],"form_identifier":"","name":"fieldname17","shortlabel":"","index":16,"ftype":"fCalculated","userhelp":"","audiotutorial":"","userhelpTooltip":false,"tooltipIcon":false,"csslayout":"","title":"\u05e1\u0022\u05d4\u05db \u05d0\u05d7\u05e8\u05d9 \u05ea\u05d5\u05e1\u05e4\u05d5\u05ea","predefined":"","required":false,"exclude":false,"size":"medium","eq":"fieldname12+fieldname14+fieldname4","min":"","max":"","suffix":"","prefix":"","decimalsymbol":".","groupingsymbol":"","readonly":true,"currency":false,"noEvalIfManual":true,"formatDynamically":false,"hidefield":false,"fBuild":{},"parent":"fieldname13"}],{"0":{"title":"Simple Operations","description":"Below you can test two simple and frequent operations.","formlayout":"top_aligned","formtemplate":"cp_cff_decorative","evalequations":1,"evalequationsevent":"2","loading_animation":0,"autocomplete":1,"persistence":0,"animate_form":0,"customstyles":""},"formid":"cp_calculatedfieldsf_pform_1"}];
	
		var cff_metabox_nonce = 'e40c39c074';
		try
		{
			function calculatedFieldsFormReady()
			{
				/* Revisions code */
				$calculatedfieldsfQuery('[name="cff_apply_revision"]').click(
					function(){
						var revision = $calculatedfieldsfQuery('[name="cff_revision_list"]').val();
						if(revision*1)
						{
							result = window.confirm('The action will load the revision selected, the data are not stored will be lose. Do you want continue?');
							if(result)
							{
								$calculatedfieldsfQuery('<form method="post" action="" id="cpformconf" name="cpformconf" class="cff_form_builder"><input type="hidden" name="_cpcff_nonce" value="e55947e105" /><input name="cp_calculatedfieldsf_id" type="hidden" value="9" /><input type="hidden" name="cpcff_revision_to_apply" value="'+esc_attr( revision )+'"></form>').appendTo('body').submit();
							}
						}
					}
				);

				// Form builder code

				var f;
				function run_fbuilder($)
				{
					f = $("#fbuilder").fbuilder();
					window['cff_form'] = f;
					f.fBuild.loadData( "form_structure", "templates" );
				};

				if(!('fbuilder' in $calculatedfieldsfQuery.fn))
				{
					$calculatedfieldsfQuery.getScript(
						location.protocol + '//' + location.host + location.pathname+'?page=cp_calculated_fields_form&cp_cff_resources=admin',
						function(){run_fbuilder(fbuilderjQuery);}
					);
				}
				else
				{
					run_fbuilder($calculatedfieldsfQuery);
				}

				$calculatedfieldsfQuery(".itemForm").click(function() {
				   f.fBuild.addItem($calculatedfieldsfQuery(this).attr("id"));
				})
				.draggable({
					connectToSortable: '#fbuilder #fieldlist',
					delay: 100,
					helper: function() {
						var $ = $calculatedfieldsfQuery,
							e = $(this),
							width = e.outerWidth(),
							text = e.text(),
							type = e.attr('id'),
							el = $('<div class="cff-button-drag '+type+'">');

						return el.html( text ).css( 'width', width ).attr('data-control',type);
					},
					revert: 'invalid',
					cancel: false,
					scroll: false,
					opacity: 1,
					containment: 'document',
					stop: function(){$calculatedfieldsfQuery('.ctrlsColumn .itemForm').removeClass('button-primary');}
				});

				jQuery(".metabox_disabled_section .inside")
				.click( function(){
				  if(confirm("These features aren\'t available in this version. Do you want to open the plugin\'s page to check other versions?"))
					  document.location = 'https://cff.dwbooster.com/';
				})
				.find('*')
				.prop('disabled', true);
			};
		}
		catch( err ){}
		try{$calculatedfieldsfQuery = jQuery.noConflict();} catch ( err ) {}
		if (typeof $calculatedfieldsfQuery == 'undefined')
		{
			 if(window.addEventListener){
				window.addEventListener('load', function(){
					try{$calculatedfieldsfQuery = jQuery.noConflict();} catch ( err ) {return;}
					calculatedFieldsFormReady();
				});
			}else{
				window.attachEvent('onload', function(){
					try{$calculatedfieldsfQuery = jQuery.noConflict();} catch ( err ) {return;}
					calculatedFieldsFormReady();
				});
			}
		}
		else
		{
			$calculatedfieldsfQuery(document).ready( calculatedFieldsFormReady );
		}
	 
	 
	
		var cff_metabox_nonce = 'e40c39c074';
		try
		{
			function calculatedFieldsFormReady()
			{
				/* Revisions code */
				$calculatedfieldsfQuery('[name="cff_apply_revision"]').click(
					function(){
						var revision = $calculatedfieldsfQuery('[name="cff_revision_list"]').val();
						if(revision*1)
						{
							result = window.confirm('The action will load the revision selected, the data are not stored will be lose. Do you want continue?');
							if(result)
							{
								$calculatedfieldsfQuery('<form method="post" action="" id="cpformconf" name="cpformconf" class="cff_form_builder"><input type="hidden" name="_cpcff_nonce" value="e55947e105" /><input name="cp_calculatedfieldsf_id" type="hidden" value="9" /><input type="hidden" name="cpcff_revision_to_apply" value="'+esc_attr( revision )+'"></form>').appendTo('body').submit();
							}
						}
					}
				);

				// Form builder code

				var f;
				function run_fbuilder($)
				{
					f = $("#fbuilder").fbuilder();
					window['cff_form'] = f;
					f.fBuild.loadData( "form_structure", "templates" );
				};

				if(!('fbuilder' in $calculatedfieldsfQuery.fn))
				{
					$calculatedfieldsfQuery.getScript(
						location.protocol + '//' + location.host + location.pathname+'?page=cp_calculated_fields_form&cp_cff_resources=admin',
						function(){run_fbuilder(fbuilderjQuery);}
					);
				}
				else
				{
					run_fbuilder($calculatedfieldsfQuery);
				}

				$calculatedfieldsfQuery(".itemForm").click(function() {
				   f.fBuild.addItem($calculatedfieldsfQuery(this).attr("id"));
				})
				.draggable({
					connectToSortable: '#fbuilder #fieldlist',
					delay: 100,
					helper: function() {
						var $ = $calculatedfieldsfQuery,
							e = $(this),
							width = e.outerWidth(),
							text = e.text(),
							type = e.attr('id'),
							el = $('<div class="cff-button-drag '+type+'">');

						return el.html( text ).css( 'width', width ).attr('data-control',type);
					},
					revert: 'invalid',
					cancel: false,
					scroll: false,
					opacity: 1,
					containment: 'document',
					stop: function(){$calculatedfieldsfQuery('.ctrlsColumn .itemForm').removeClass('button-primary');}
				});

				jQuery(".metabox_disabled_section .inside")
				.click( function(){
				  if(confirm("These features aren\'t available in this version. Do you want to open the plugin\'s page to check other versions?"))
					  document.location = 'https://cff.dwbooster.com/';
				})
				.find('*')
				.prop('disabled', true);
			};
		}
		catch( err ){}
		try{$calculatedfieldsfQuery = jQuery.noConflict();} catch ( err ) {}
		if (typeof $calculatedfieldsfQuery == 'undefined')
		{
			 if(window.addEventListener){
				window.addEventListener('load', function(){
					try{$calculatedfieldsfQuery = jQuery.noConflict();} catch ( err ) {return;}
					calculatedFieldsFormReady();
				});
			}else{
				window.attachEvent('onload', function(){
					try{$calculatedfieldsfQuery = jQuery.noConflict();} catch ( err ) {return;}
					calculatedFieldsFormReady();
				});
			}
		}
		else
		{
			$calculatedfieldsfQuery(document).ready( calculatedFieldsFormReady );
		}
	 
	 
/* why if i didnt add(return false) i cant see the result of my console  */


document.getElementById('reg').onsubmit=()=>{
  let phoneinput=document.getElementById('phone').value
  let phoneRe=/\(\d{4}\)\d{3}-\d{4}/ig  //(1234)567-8910
  let validationResult=phoneRe.test(phoneinput)
  console.log("🚀 ~ file: main.js:5 ~ document.getElementById ~ validationResult:", validationResult)
    // return false
}

1 ) create the sprite.svg file
2 ) add the following code:

<svg style="position: absolute; width: 0; height: 0; overflow: hidden;" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
  

</defs>
</svg>

3 ) given the following svg:
<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
<title>bookmark</title>
<path d="M14 2v17l-4-4-4 4v-17c0-0.553 0.585-1.020 1-1h6c0.689-0.020 1 0.447 1 1z"></path>
</svg>

4 ) 
copy its title and path with the viewBox information inside the defs tags of sprite.svg : 


<svg style="position: absolute; width: 0; height: 0; overflow: hidden;" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
  
<symbol id="icon-bookmark" viewBox="0 0 20 20">
<title>bookmark</title>
<path d="M14 2v17l-4-4-4 4v-17c0-0.553 0.585-1.020 1-1h6c0.689-0.020 1 0.447 1 1z"></path>
</symbol>

</defs>
</svg>

5) to use the sprite :

example:

<div class="user-nav__icon-box">
                        <svg class="user-nav__icon">
                            <use xlink:href="img/sprite.svg#icon-bookmark"></use>
                        </svg>
                        
</div>
                    

add_filter( 'sp_pcp_the_content', 'do_blocks' );

add_filter( 'pcp_replace_thumbnail_with_custom_field_img', 'pcp_replace_thumbnail_with_custom_field_img_mod', 10, 2 );
function pcp_replace_thumbnail_with_custom_field_img_mod( $key, $smart_show_id ) {
	$key = 'cf_post_image';
	return $key;
}
#include <iostream>
using namespace std;

class linkedlist
{
	public:
	struct node
	{
		int data;
		node *next;
	}*last, *temp, *head;
//	node *last; node *temp;  node *head;
	
	public:
		void append();
		void display();                                                                                                       
}l1;

void linkedlist :: append()
{
	node *last; node *temp;  node *head;
	int value;
	temp = new node;
	cout << "Enter data : ";
	cin >> value;
	temp->data = value;
	temp->next = NULL;
	if(head == NULL)
	{
		head = temp = last;
	}
	else
	{
		last->next = temp;
		last = temp;
	}
	cout << "New node created!"<< endl;
}

void linkedlist :: display()
{
	temp = head;
	while(temp != NULL)
	{
		cout << temp->data << endl;
		temp = temp->next;
	}
}


int main()
{
	int ch; int choice;
	do{
	cout << "-----Linked List-----\n\n";
	cout << "1. Create first node\n";
	cout << "2. Insert new node at the end\n";
	cout << "3. Display\n";
	cin >> choice;
	
	switch(choice)
	{
		case 1 : l1.append();
		break;
		case 2 : l1.append();
		break;
		case 3 : l1.display();
		break;
		default : cout << "Enter a valid choice!\n";
	}
    }
    while(ch==1);
    cout << "Do you want to continue?\nPress 1 to continue\nPress 0 to exit\n";
    cin >> ch;

	return 0;
}
// In the Dev Tools console, paste this:

monitorEvents($0); // $0 refers to the last element selected

// For a specific element, and optionally an event type:
monitorEvents(document.body, 'mouse')

// To cancel:
unmonitorEvents($0)
/**
 * The check_post_input_vars
 *
 * @return void
 */
function check_post_input_vars() {
	// $array = array(
	// 'sp_pcp_view_options' => array(
	// 'pcp_select_post_type' => 'post',
	// 'pcp_select_filter_product_type' => 'none',
	// 'pcp_sticky_post' => 'normal_position',
	// 'pcp_post_limit' => '20',
	// 'pcp_post_offset' => '',
	// 'pcp_advanced_filter' => array( 'sortby' ),
	// ),
	// );
		// Get the exact number of input variables in $_POST
		$input_count = count( $_POST, COUNT_RECURSIVE ) - count( $_POST );
		echo( '<pre>' );
		var_dump( $input_count );
		echo( '</pre>' );
		echo( '<pre>' );
		var_dump( $_POST );
		echo( '</pre>' );
		// Do something with the number of input variables
		// echo "Number of input variables submitted: " . $num_input_vars;
		die;
}
add_action( 'save_post', 'check_post_input_vars' );
IT_Company.clear()
print(IT_Company)
Last_obj = IT_Company[len(IT_Company) -1]
IT_Company.remove(Last_obj)
print(IT_Company)
IT_Company.reverse()
print(IT_Company)
IT_Company.append("Infosys")
print(IT_Company)
package firsttestngpackage;
import org.openqa.selenium.*;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.Assert;
import org.testng.annotations.*;

public class firsttestngfile {
    public String baseUrl = "http://demo.guru99.com/test/newtours/";
    String driverPath = "C:\\geckodriver.exe";
    public WebDriver driver ; 
     
  @Test
  public void verifyHomepageTitle() {
       
      System.out.println("launching firefox browser"); 
      System.setProperty("webdriver.gecko.driver", driverPath);
      driver = new FirefoxDriver();
      driver.get(baseUrl);
      String expectedTitle = "Welcome: Mercury Tours";
      String actualTitle = driver.getTitle();
      Assert.assertEquals(actualTitle, expectedTitle);
      driver.close();
  }
https://www.annimexweb.com/items/avone/index-demo5.html

https://preview.themeforest.net/item/ciseco-ecommerce-react-template/full_screen_preview/39533516?_ga=2.182418469.3878315.1677085156-1845210654.1676658418

http://themes.pixelstrap.com/multikart/front-end/gradient.html
public void setFooterFormat​(String footerFormat)
IT_Company.insert(1, "Amazon")
Middle = (Last) / 2
Middle = int(Middle) # We need to typecast Middle into integer because we can pass only integers to access the list.
print(IT_Company(Middle))
Last = len(IT_Company) - 1 # len() function is used to find the length of list.
print(IT_Company(Last))
print(IT_Company[0])
IT_Company = ["Microsoft", "Google", "TCS", "IBM", "Oracle", "Accenture", "SAP"]
//Activity Life Cycle
import android.app.Activity;  
import android.os.Bundle;  
import android.util.Log;  
  
public class MainActivity extends Activity {  
  
    @Override  
    protected void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        setContentView(R.layout.activity_main);  
        Log.d("lifecycle","onCreate invoked");  
    }  
    @Override  
    protected void onStart() {  
        super.onStart();  
        Log.d("lifecycle","onStart invoked");  
    }  
    @Override  
    protected void onResume() {  
        super.onResume();  
        Log.d("lifecycle","onResume invoked");  
    }  
    @Override  
    protected void onPause() {  
        super.onPause();  
        Log.d("lifecycle","onPause invoked");  
    }  
    @Override  
    protected void onStop() {  
        super.onStop();  
        Log.d("lifecycle","onStop invoked");  
    }  
    @Override  
    protected void onRestart() {  
        super.onRestart();  
        Log.d("lifecycle","onRestart invoked");  
    }  
    @Override  
    protected void onDestroy() {  
        super.onDestroy();  
        Log.d("lifecycle","onDestroy invoked");  
    }  
}  

//Implicit/Explicit Intent Example
//activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:text="Intent Example"
        android:id="@+id/textView2"
        android:clickable="false"
        android:layout_alignParentTop="true"
        android:layout_alignParentStart="true"
        android:layout_marginTop="42dp"
        android:background="#3e7d02"
        android:textColor="#ffffff" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Explicit Intent Example"
        android:id="@+id/explicit_Intent"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="147dp" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Implicit Intent Example"
        android:id="@+id/implicit_Intent"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true" />

</RelativeLayout>

//activity_second.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:paddingLeft="16dp"
    android:paddingRight="16dp"
    >
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:text="This is Second Activity"
        android:id="@+id/textView"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true" />
</RelativeLayout>


//MainActivity.java
package com.example.empty_activity_app;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity
{
    Button explicit_btn, implicit_btn;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);


        explicit_btn = (Button)findViewById(R.id.explicit_Intent);
        implicit_btn = (Button) findViewById(R.id.implicit_Intent);

        //implement Onclick event for Explicit Intent
        explicit_btn.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent = new  Intent(getBaseContext(), ResultActivity.class);
                startActivity(intent);
            }
        });

        //implement onClick event for Implicit Intent
        implicit_btn.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

                Intent intent = new Intent(Intent.ACTION_VIEW);
                intent.setData(Uri.parse("https://www.abhiandroid.com"));
                startActivity(intent);
            }
        });
    }
}
// ResultActivity.java
package com.example.empty_activity_app;
import android.os.Bundle;
import androidx.appcompat.app.AppCompatActivity;
import android.widget.Toast;

/**
 * Created by surdasari on 27-07-2017.
 */

public class ResultActivity  extends AppCompatActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.result);
        Toast.makeText(getApplicationContext(), "We are moved to second Activity",Toast.LENGTH_LONG).show();
    }
}
//AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.empty_activity_app">
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.Empty_Activity_APP">
        <activity android:name=".MainActivity" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name=".ResultActivity" >
        </activity>
    </application>
</manifest>





Example of TextView

In XML :

<TextView
        android:id="@+id/text_view_id"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="20dp"
        android:textColor="#86AD33"
        android:textSize="20dp"
        android:textStyle="bold"
        android:textAllCaps="true"
        android:background="#7F3AB5"/>
   
IN JAVA : 

 TextView textView = (TextView) findViewById(R.id.text_view_id);
        textView.setText("Hello CO6I "); //set text for text view
------------------------------------------------------------------------------------
In XML :
<EditText
    android:id="@+id/simpleEditText"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:text="Username"/><!--set text in edit text-->
IN JAVA : 
package com.example.empty_activity_app;

import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
public class MainActivity extends AppCompatActivity implements View.OnClickListener
{
    EditText editText;
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        editText = (EditText)findViewById(R.id.simpleEditText);
        editText.setOnClickListener(this);
    }
    @Override
    public void onClick(View v) 
    {
        // TODO Auto-generated method stub
        editText.setText("Username");
    }
}
------------------------------------------------------------------------------------
In XML :
<Button
        android:id="@+id/backbutton"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:text="Back" />
IN JAVA : 
package com.example.empty_activity_app;
import androidx.appcompat.app.AppCompatActivity;
import android.graphics.Color;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity implements View.OnClickListener
{
    Button button;
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        button = (Button)findViewById(R.id.backbutton);
        button.setOnClickListener(this);
    }
    @Override
    public void onClick(View v)
    {
        // TODO Auto-generated method stub
        button.setBackgroundColor(Color.RED);
    }
}
------------------------------------------------------------------------------------------
In XML :
<ImageButton
        android:id="@+id/simpleImageButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@android:drawable/ic_delete"/>
IN JAVA : 
package com.example.empty_activity_app;
import androidx.appcompat.app.AppCompatActivity;
import android.graphics.Color;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageButton;
public class MainActivity extends AppCompatActivity implements View.OnClickListener
{
    ImageButton button;
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        button = (ImageButton)findViewById(R.id.simpleImageButton);
        button.setOnClickListener(this);
    }
    @Override
    public void onClick(View v)
    {
        // TODO Auto-generated method stub
        button.setBackgroundColor(Color.WHITE);
    }
}
-----------------------------------------------------------------------------------------
 <ToggleButton
        android:id="@+id/simpleToggleButton1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:textOff="OFF"
        android:textOn="ON"
        android:checked="true" />

package com.example.empty_activity_app;
import androidx.appcompat.app.AppCompatActivity;
import android.graphics.Color;
import android.os.Bundle;
import android.view.View;
import android.widget.ToggleButton;
public class MainActivity extends AppCompatActivity implements View.OnClickListener
{
    ToggleButton button;
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        button = (ToggleButton)findViewById(R.id.simpleToggleButton1);
        button.setOnClickListener(this);
    }
    @Override
    public void onClick(View v)
    {
        
    }
}
------------------------------------------------------------------------------------------
IN XML :
<RadioGroup
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center">
        <RadioButton
            android:id="@+id/simpleRadioButton1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Python"
            android:checked="false"
            android:textColor="#f00"
            android:textSize="35dp"/>
        <RadioButton
            android:id="@+id/simpleRadioButton2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Java"
            android:checked="true"
            android:textColor="#f00"
            android:textSize="35dp"/>
    </RadioGroup>

IN JAVA :
package com.example.empty_activity_app;

import androidx.appcompat.app.AppCompatActivity;

import android.graphics.Color;
import android.os.Bundle;
import android.view.View;
import android.widget.RadioButton;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity implements View.OnClickListener
{
    RadioButton button1,button2;
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        button1 = (RadioButton)findViewById(R.id.simpleRadioButton1);
        button1.setOnClickListener(this);
        button2 = (RadioButton)findViewById(R.id.simpleRadioButton2);
        button2.setOnClickListener(this);
    }
    @Override
    public void onClick(View v)
    {
        if(v.getId()==R.id.simpleRadioButton1)
        {
            Toast.makeText(getApplicationContext(), "You Selected Python", Toast.LENGTH_SHORT).show();
        }
        else
        {
            Toast.makeText(this, "You Selected Java", Toast.LENGTH_SHORT).show();
        }
        // TODO Auto-generated method stub
        //button.setBackgroundColor(Color.WHITE);
    }
}
---------------------------------------------------------------------------------------
ChekBOX
package com.example.empty_activity_app;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.CheckBox;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity implements View.OnClickListener
{
    CheckBox android,java,php;
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

       android = (CheckBox) findViewById(R.id.androidCheckBox);
       android.setOnClickListener(this);
       java = (CheckBox) findViewById(R.id.javaCheckBox);
       java.setOnClickListener(this);
       php = (CheckBox) findViewById(R.id.phpCheckBox);
       php.setOnClickListener(this);
    }
    @Override
    public void onClick(View v)
    {
       switch (v.getId())
       {
            case R.id.androidCheckBox:
               if (android.isChecked())
                   Toast.makeText(getApplicationContext(), "Android", Toast.LENGTH_LONG).show();
            break;
            case R.id.javaCheckBox:
                if (java.isChecked())
                    Toast.makeText(getApplicationContext(), "Java", Toast.LENGTH_LONG).show();
                break;
            case R.id.phpCheckBox:
                if (php.isChecked())
                    Toast.makeText(getApplicationContext(), "PHP", Toast.LENGTH_LONG).show();
                break;
        }
    }
}

In XMl :
 <CheckBox
        android:id="@+id/androidCheckBox"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:checked="false"
        android:padding="20dp"
        android:text="android"
        android:textColor="#44f"
        android:textSize="20dp"
        android:textStyle="bold|italic" />
    <CheckBox
        android:id="@+id/javaCheckBox"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:checked="false"
        android:padding="20dp"
        android:text="java"
        android:textColor="#f44"
        android:textSize="20dp"
        android:textStyle="bold|italic" />
    <CheckBox
        android:id="@+id/phpCheckBox"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:checked="false"
        android:padding="20dp"
        android:text="php"
        android:textColor="#444"
        android:textSize="20sp"
        android:textStyle="bold|italic" />
-------------------------------------------------------------------------------------------------------------

Chekbox (diffrent logic)
package com.example.empty_activity_app;

import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.CheckBox;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity
{

    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
    public void onCheckboxClicked(View view)
    {
        // Is the view now checked?
        boolean checked = ((CheckBox) view).isChecked();
        switch(view.getId())
        {
            case R.id.checkbox_meat:
                if (checked)
                {
                    Toast.makeText(getApplicationContext(), "Non_veg", Toast.LENGTH_LONG).show();
                }
                break;
            case R.id.checkbox_cheese:
                if (checked)
                {
                    Toast.makeText(getApplicationContext(), "Veg", Toast.LENGTH_LONG).show();
                }
                break;
        }
    }

}

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <CheckBox android:id="@+id/checkbox_meat"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Non_Veg"
        android:onClick="onCheckboxClicked"/>
    <CheckBox android:id="@+id/checkbox_cheese"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Veg"
        android:onClick="onCheckboxClicked"/>
</LinearLayout>

--------------------------------------------------------------------------------------------------------------------
Progress Bar

In XML :
<ProgressBar
        android:id="@+id/simpleProgressBar"
        style="@style/Widget.AppCompat.ProgressBar.Horizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="70dp"
        android:max="100"
        android:progress="00"
        android:indeterminate="true"
       />
    <Button
        android:id="@+id/startButton"
        android:layout_width="200dp"
        android:layout_height="wrap_content"
        android:layout_marginTop="120dp"
        android:background="#0f0"
        android:text="Start"
        android:textColor="#fff"
        android:textSize="20sp"
        android:textStyle="bold" />
In JAVA :
 package com.example.empty_activity_app;

import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;

import android.widget.Button;
import android.widget.ProgressBar;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity
{
    int progress = 0;
    ProgressBar simpleProgressBar;
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        simpleProgressBar = (ProgressBar) findViewById(R.id.simpleProgressBar);
        Button startButton = (Button) findViewById(R.id.startButton);
        // perform click event on button
        startButton.setOnClickListener(new View.OnClickListener()
        {
            @Override
            public void onClick(View v)
            {
                setProgressValue(progress);
            }
        });
    }
    private void setProgressValue(final int progress) {
        // set the progress
        simpleProgressBar.setProgress(progress);
        // thread is used to change the progress value
        Thread thread = new Thread(new Runnable() {
            @Override
            public void run() {
                try {
                    Thread.sleep(1000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                setProgressValue(progress + 10);
            }
        });
        thread.start();
    }
}
---------------------------------------------------------------------------------
List View
package com.example.empty_activity_app;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity implements AdapterView.OnItemClickListener {
    ListView simpleList;
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        String countryList[] = {"India", "China", "australia", "Portugle", "America", "NewZealand"};
        simpleList = (ListView)findViewById(R.id.simpleListView);
        ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this,R.layout.activity_main,R.id.textView,countryList);
        simpleList.setAdapter(arrayAdapter);
        simpleList.setOnItemClickListener(this);
    }
    @Override
    public void onItemClick(AdapterView<?> adapterView, View view, int i, long l)
    {
        String month= adapterView.getItemAtPosition(i).toString();
        Toast.makeText(getApplicationContext(), "Clicked"+month, Toast.LENGTH_LONG).show();
    }
}

In XML :
 <TextView
        android:id="@+id/textView"
        android:layout_width="match_parent"
        android:layout_height="25dp"
        android:text="Country's" />
    <ListView
        android:id="@+id/simpleListView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
	android:divider="#f00"
	android:dividerHeight="1dp"
	android:listSelector="#0f0"/>
---------------------------------------------------------------------------------------------------------------------------------------
GridView
package com.example.empty_activity_app;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.GridView;
import android.widget.ListView;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity implements AdapterView.OnItemClickListener {
    GridView simpleGrid;
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        String countryList[] = {"India", "China", "australia", "Portugle", "America", "NewZealand"};
        simpleGrid = (GridView)findViewById(R.id.simpleGridView);
        ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this,R.layout.activity_main,R.id.textView,countryList);
        simpleGrid.setAdapter(arrayAdapter);
        simpleGrid.setOnItemClickListener(this);
    }
    @Override
    public void onItemClick(AdapterView<?> adapterView, View view, int i, long l)
    {
        String month= adapterView.getItemAtPosition(i).toString();
        Toast.makeText(getApplicationContext(), "Clicked: "+month, Toast.LENGTH_LONG).show();
    }
}

XML :
  <GridView
        android:id="@+id/simpleGridView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:numColumns="3"/>

-----------------------------------------------------------------------------------------------------------------
ImageView
package com.example.empty_activity_app;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity  {
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        ImageView simpleImageViewCat = (ImageView) findViewById(R.id.simpleImageViewCat);//get the id of first image view
        ImageView simpleImageViewDog = (ImageView) findViewById(R.id.simpleImageViewDog);//get the id of second image view
        simpleImageViewCat.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Toast.makeText(getApplicationContext(), "CAT", Toast.LENGTH_LONG).show();//display the text on image click event
            }
        });
        simpleImageViewDog.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Toast.makeText(getApplicationContext(), "DOG", Toast.LENGTH_LONG).show();//display the text on image click event
            }
        });
    }

}

XML :
<ImageView
        android:id="@+id/simpleImageViewCat"
        android:layout_width="fill_parent"
        android:layout_height="200dp"
        android:scaleType="fitXY"
        android:src="@drawable/cat" />
    <ImageView
        android:id="@+id/simpleImageViewDog"
        android:layout_width="fill_parent"
        android:layout_height="200dp"
        android:layout_below="@+id/simpleImageViewCat"
        android:layout_marginTop="10dp"
        android:scaleType="fitXY"
        android:src="@drawable/dog" />

------------------------------------------------------------------------------------------------------------------
Scroll View : Vertical

XML :
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fillViewport="false">
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical" android:layout_width="match_parent"
        android:layout_height="match_parent">
        <TextView android:id="@+id/loginscrn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="80dp"
            android:text="ScrollView"
            android:textSize="25dp"
            android:textStyle="bold"
            android:layout_gravity="center"/>
        <TextView android:id="@+id/fstTxt"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="20dp"
            android:text="Welcome to Tutlane"
            android:layout_gravity="center"/>
        <Button android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginTop="60dp"
            android:text="Button One" />
        <Button android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginTop="60dp"
            android:text="Button Two" />
        <Button android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginTop="60dp"
            android:text="Button Three" />
        <Button android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginTop="60dp"
            android:text="Button Four" />
        <Button android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginTop="60dp"
            android:text="Button Five" />
        <Button android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginTop="60dp"
            android:text="Button Six" />
        <Button android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginTop="60dp"
            android:text="Button Seven" />
        <Button android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginTop="60dp"
            android:text="Button Eight" />
        <Button android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginTop="60dp"
            android:text="Button Nine" />
    </LinearLayout>
</ScrollView>

-----------------------------------------------------------------------------------------------------------------------
Scroll View : Horizontal
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fillViewport="true">
    <LinearLayout
        android:orientation="horizontal" android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="150dp">
        <Button android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button One" />
        <Button android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button Two" />
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button Three" />
        <Button android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button Four" />
        <Button android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button Five" />
        <Button android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button Six" />
        <Button android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button Seven" />
        <Button android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button Eight" />
        <Button android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button Nine" />
    </LinearLayout>
</HorizontalScrollView>
--------------------------------------------------------------------------------------------------------------
Custom Toast Alert

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/custom_toast_container"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="10dp"
    android:paddingRight="10dp"
    android:background="#80CC28">
    <ImageView android:src="@drawable/ic_notification"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="10dp" />
    <TextView android:id="@+id/txtvw"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="13dp"
        android:textColor="#FFF"
        android:textStyle="bold"
        android:textSize="15dp" />
</LinearLayout>

Design :
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <Button
        android:id="@+id/btnShow"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Show Custom Toast"
        android:layout_marginTop="150dp" android:layout_marginLeft="110dp"/>
</LinearLayout>

Code :
package com.example.empty_activity_app;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity  {
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Button btn = (Button)findViewById(R.id.btnShow);
        btn.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                LayoutInflater inflater = getLayoutInflater();
                View layout = inflater.inflate(R.layout.custom_toast, (ViewGroup) findViewById(R.id.custom_toast_container));
                TextView tv = (TextView) layout.findViewById(R.id.txtvw);
                tv.setText("Custom Toast Notification");
                Toast toast = new Toast(getApplicationContext());
                toast.setGravity(Gravity.CENTER_VERTICAL, 0, 100);
                toast.setDuration(Toast.LENGTH_LONG);
                toast.setView(layout);
                toast.show();
            }
        });
    }

}
--------------------------------------------------------------------------------------------------------------------
Time Picker :
package com.example.empty_activity_app;
        import androidx.appcompat.app.AppCompatActivity;
        import android.os.Bundle;
        import android.view.Gravity;
        import android.view.LayoutInflater;
        import android.view.View;
        import android.view.ViewGroup;
        import android.widget.Button;
        import android.widget.TextView;
        import android.widget.TimePicker;
        import android.widget.Toast;
public class MainActivity extends AppCompatActivity  {
    TextView time;
    TimePicker simpleTimePicker;
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        time = (TextView) findViewById(R.id.time);
        simpleTimePicker = (TimePicker) findViewById(R.id.simpleTimePicker);
        simpleTimePicker.setIs24HourView(false); // used to display AM/PM mode
        // perform set on time changed listener event
        simpleTimePicker.setOnTimeChangedListener(new TimePicker.OnTimeChangedListener() {
            @Override
            public void onTimeChanged(TimePicker view, int hourOfDay, int minute) {
                // display a toast with changed values of time picker
                Toast.makeText(getApplicationContext(), hourOfDay + "  " + minute, Toast.LENGTH_SHORT).show();
                time.setText("Time is :: " + hourOfDay + " : " + minute); // set the current time in text view
            }
        });
    }

}

XML :
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <TimePicker
        android:id="@+id/simpleTimePicker"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:padding="20dp"
        android:timePickerMode="spinner" />
    <TextView
        android:id="@+id/time"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:text="Time Is ::"
        android:textColor="#090"
        android:textSize="20sp"
        android:textStyle="bold" />
</RelativeLayout>

---------------------------------------------------------------------------------------------------------
Date Picker
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity">

    <DatePicker
        android:id="@+id/simpleDatePicker"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#150"
        android:datePickerMode="spinner" />

    <Button
        android:id="@+id/submitButton"
        android:layout_width="200dp"
        android:layout_height="wrap_content"
        android:layout_below="@+id/simpleDatePicker"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="50dp"
        android:background="#150"
        android:text="SUBMIT"
        android:textColor="#fff"
        android:textSize="20sp"
        android:textStyle="bold" />
</RelativeLayout>

Java :

package com.example.empty_activity_app;
        import androidx.appcompat.app.AppCompatActivity;
        import android.os.Bundle;
        import android.view.Gravity;
        import android.view.LayoutInflater;
        import android.view.View;
        import android.view.ViewGroup;
        import android.widget.Button;
        import android.widget.DatePicker;
        import android.widget.TextView;
        import android.widget.TimePicker;
        import android.widget.Toast;
public class MainActivity extends AppCompatActivity  {
    DatePicker simpleDatePicker;
    Button submit;
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        // initiate the date picker and a button
        simpleDatePicker = (DatePicker) findViewById(R.id.simpleDatePicker);
        submit = (Button) findViewById(R.id.submitButton);
        // perform click event on submit button
        submit.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                // get the values for day of month , month and year from a date picker
                String day = "Day = " + simpleDatePicker.getDayOfMonth();
                String month = "Month = " + (simpleDatePicker.getMonth() + 1);
                String year = "Year = " + simpleDatePicker.getYear();
                // display the values by using a toast
                Toast.makeText(getApplicationContext(), day + "\n" + month + "\n" + year, Toast.LENGTH_LONG).show();
            }
        });
    }

}

----------------------------------------------------------------------------------------------------------------------------

#include<iostream>
using namespace std;
int main()
{
    int n, num,digit,rev=0;
    cout<<"enter a positive number:";
    cin>>num;
    n=num;
    while(num)
    {
        digit=num%10;
        rev=(rev*10)+digit;
        num=num/10;
    }
    cout<<"the reverse of the number is:"<<rev<<endl;
    if(n==rev)
    cout<<"the number is palindrome";
    else 
    cout<<"the number is not a palindrome";
    return 0;
}
star

Tue Feb 28 2023 13:29:03 GMT+0000 (Coordinated Universal Time)

@Tilores

star

Tue Feb 28 2023 13:27:16 GMT+0000 (Coordinated Universal Time)

@Tilores

star

Tue Feb 28 2023 13:25:59 GMT+0000 (Coordinated Universal Time)

@Tilores

star

Tue Feb 28 2023 13:20:35 GMT+0000 (Coordinated Universal Time)

@Tilores

star

Tue Feb 28 2023 12:53:09 GMT+0000 (Coordinated Universal Time)

@Abhishek_Dubey

star

Tue Feb 28 2023 12:52:37 GMT+0000 (Coordinated Universal Time)

@Abhishek_Dubey

star

Tue Feb 28 2023 12:51:55 GMT+0000 (Coordinated Universal Time)

@Abhishek_Dubey

star

Tue Feb 28 2023 12:51:19 GMT+0000 (Coordinated Universal Time)

@Abhishek_Dubey

star

Tue Feb 28 2023 12:50:37 GMT+0000 (Coordinated Universal Time)

@Abhishek_Dubey

star

Tue Feb 28 2023 12:49:19 GMT+0000 (Coordinated Universal Time)

@Abhishek_Dubey

star

Tue Feb 28 2023 12:44:48 GMT+0000 (Coordinated Universal Time)

@Abhishek_Dubey

star

Tue Feb 28 2023 12:42:14 GMT+0000 (Coordinated Universal Time)

@AlanaBF #javascript

star

Tue Feb 28 2023 12:41:41 GMT+0000 (Coordinated Universal Time)

@AlanaBF #javascript

star

Tue Feb 28 2023 12:12:35 GMT+0000 (Coordinated Universal Time)

@Tilores

star

Tue Feb 28 2023 12:11:24 GMT+0000 (Coordinated Universal Time)

@AlanaBF #javascript

star

Tue Feb 28 2023 11:29:42 GMT+0000 (Coordinated Universal Time) https://www.redgregory.com/notion/2021/2/11/notion-formula-double-progress-bar

@YR3

star

Tue Feb 28 2023 11:29:26 GMT+0000 (Coordinated Universal Time) https://www.redgregory.com/notion/2022/11/6/push-overdue-tasks-to-today-in-notion

@YR3

star

Tue Feb 28 2023 11:13:55 GMT+0000 (Coordinated Universal Time) https://cff.dwbooster.com/faq#q82

@markyuri

star

Tue Feb 28 2023 10:49:01 GMT+0000 (Coordinated Universal Time) https://swisssystem.co.il/smartbed/wp-admin/admin.php?page

@markyuri

star

Tue Feb 28 2023 10:24:54 GMT+0000 (Coordinated Universal Time)

@Mohamedshariif #c

star

Tue Feb 28 2023 10:21:19 GMT+0000 (Coordinated Universal Time) https://swisssystem.co.il/smartbed/wp-admin/admin.php?page

@markyuri

star

Tue Feb 28 2023 10:21:08 GMT+0000 (Coordinated Universal Time) https://swisssystem.co.il/smartbed/wp-admin/admin.php?page

@markyuri

star

Tue Feb 28 2023 10:20:17 GMT+0000 (Coordinated Universal Time) https://swisssystem.co.il/smartbed/wp-admin/admin.php?page

@markyuri

star

Tue Feb 28 2023 10:18:03 GMT+0000 (Coordinated Universal Time) https://swisssystem.co.il/smartbed/wp-admin/admin.php?page

@markyuri

star

Tue Feb 28 2023 10:16:44 GMT+0000 (Coordinated Universal Time) https://swisssystem.co.il/smartbed/wp-admin/admin.php?page

@markyuri

star

Tue Feb 28 2023 10:15:03 GMT+0000 (Coordinated Universal Time) https://swisssystem.co.il/smartbed/wp-admin/admin.php?page

@markyuri

star

Tue Feb 28 2023 09:41:36 GMT+0000 (Coordinated Universal Time)

@abd #javascript

star

Tue Feb 28 2023 09:36:18 GMT+0000 (Coordinated Universal Time) https://www.w3schools.com/css/tryit.asp?filename

@kalimero666

star

Tue Feb 28 2023 09:27:37 GMT+0000 (Coordinated Universal Time) http://localhost/ruchika/wp-admin/admin.php?page

@vikral

star

Tue Feb 28 2023 09:05:18 GMT+0000 (Coordinated Universal Time)

@mtommasi

star

Tue Feb 28 2023 05:04:19 GMT+0000 (Coordinated Universal Time)

@saakshi #c++

star

Tue Feb 28 2023 04:55:16 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/10213703/how-do-i-view-events-fired-on-an-element-in-chrome-devtools

@wwwonka #javascript

star

Tue Feb 28 2023 04:22:24 GMT+0000 (Coordinated Universal Time)

@hasan1d2d

star

Tue Feb 28 2023 02:12:34 GMT+0000 (Coordinated Universal Time)

@infinityai

star

Tue Feb 28 2023 02:10:33 GMT+0000 (Coordinated Universal Time)

@infinityai

star

Tue Feb 28 2023 02:08:51 GMT+0000 (Coordinated Universal Time)

@infinityai

star

Tue Feb 28 2023 02:06:39 GMT+0000 (Coordinated Universal Time)

@infinityai

star

Tue Feb 28 2023 01:49:38 GMT+0000 (Coordinated Universal Time)

@Batmansbitch79

star

Tue Feb 28 2023 00:51:00 GMT+0000 (Coordinated Universal Time)

@naveedrashid

star

Mon Feb 27 2023 19:40:59 GMT+0000 (Coordinated Universal Time) https://vscodium.com/

@challow

star

Mon Feb 27 2023 18:41:56 GMT+0000 (Coordinated Universal Time) https://www.zkoss.org/javadoc/latest/zkcharts/org/zkoss/chart/Tooltip.html

@DIneshnathYogi

star

Mon Feb 27 2023 16:29:54 GMT+0000 (Coordinated Universal Time)

@infinityai

star

Mon Feb 27 2023 16:25:22 GMT+0000 (Coordinated Universal Time)

@infinityai

star

Mon Feb 27 2023 16:21:20 GMT+0000 (Coordinated Universal Time)

@infinityai

star

Mon Feb 27 2023 16:17:55 GMT+0000 (Coordinated Universal Time)

@infinityai

star

Mon Feb 27 2023 16:12:05 GMT+0000 (Coordinated Universal Time)

@infinityai

star

Mon Feb 27 2023 15:17:43 GMT+0000 (Coordinated Universal Time)

@Amit285

star

Mon Feb 27 2023 15:15:37 GMT+0000 (Coordinated Universal Time)

@Amit285

star

Mon Feb 27 2023 15:00:21 GMT+0000 (Coordinated Universal Time)

@kavishri

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension