Snippets Collections
<script src="https://cdn.jsdelivr.net/gh/studio-freight/lenis@1.0.23/bundled/lenis.min.js"></script> 
<script>
// LENIS SMOOTH SCROLL
let lenis;
if (Webflow.env("editor") === undefined) {
  lenis = new Lenis({
    lerp: 0.1,
    wheelMultiplier: 0.7,
    gestureOrientation: "vertical",
    normalizeWheel: false,
    smoothTouch: false
  });
  function raf(time) {
    lenis.raf(time);
    requestAnimationFrame(raf);
  }
  requestAnimationFrame(raf);
}
$("[data-lenis-start]").on("click", function () {
  lenis.start();
});
$("[data-lenis-stop]").on("click", function () {
  lenis.stop();
});
$("[data-lenis-toggle]").on("click", function () {
  $(this).toggleClass("stop-scroll");
  if ($(this).hasClass("stop-scroll")) {
    lenis.stop();
  } else {
    lenis.start();
  }
});
</script>
<style>
html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
</style>
from math import*
  
x = [1,2,3]
Understanding Solana Meme Coin Development

In the fast-paced world of cryptocurrencies, meme coins have become a unique trend, combining fun with digital innovation. Solana meme coins highlight this trend through their use of the Solana blockchain. Known for its high speed and low transaction costs, Solana offers an ideal platform for these meme coins. Solana meme coins blend the playful spirit of meme culture with the advanced technology of Solana, making them stand out in the crypto market. This introduction will explore what makes Solana meme coins special, their benefits, and how they are shaping the future of digital assets.

Innovative Technology
The advanced technology of the Solana blockchain, renowned for its quick transaction times and inexpensive fees, is utilized by Solana meme currencies. Because meme currencies frequently involve large volume, low-value exchanges, Solana's distinct Proof of History (PoH) agreement process in conjunction with Proof of Stake (PoS) guarantees quick and safe transactions, which makes it the perfect platform for meme currencies that seek to garner community involvement as well as commercial attention.

The Rise of Solana Meme Coins
Solana meme coins are gaining popularity because they blend internet culture with advanced blockchain tech. Thanks to Solana’s fast and affordable network, these tokens attract both crypto fans and the general public. Solana’s ability to process many transactions quickly makes it perfect for meme coins, which often see rapid trading and high price swings. This trend shows how playful, community-focused projects can thrive with strong technology, capturing the spirit of the crypto world and engaging a wide range of online communities.

Community Engagement
Community involvement is key to the success of Solana meme coins. These coins thrive on the enthusiasm and support of their online communities, which help drive their popularity and value. Active communities engage in discussions, share memes, and promote the coin across social media platforms, creating a buzz around the project. Events, giveaways, and collaborative activities further strengthen community bonds and encourage more people to get involved. By fostering a strong, engaged community, Solana meme coins can build a loyal user base and sustain interest, making community support a key factor in their growth and success.

Future Prospects for Solana Meme Coins:
The future looks bright for Solana meme coins as they continue to grow in popularity. With Solana’s fast and low-cost transactions, these meme coins are well-positioned to handle increasing activity and trading volume. As more people join the Solana ecosystem, meme coins could see greater adoption and integration into various applications. The community’s enthusiasm and creativity will likely drive new projects and innovations. Additionally, as the crypto market evolves, Solana meme coins may benefit from increased visibility and support, potentially leading to new opportunities and expanded use cases. Overall, their future appears promising with ongoing development and engagement.

Solana Updates and Upgrades
Solana consistently updates and upgrades its blockchain to boost performance and enhance security. Recent advancements include optimizations for transaction speed and scalability, ensuring the network handles growing demand efficiently. Upgrades also focus on reducing fees and enhancing developer tools, which support the growth of decentralized applications and tokens. These ongoing improvements strengthen Solana’s position as a leading platform, benefiting projects like meme coins by providing a robust and reliable infrastructure.

 Conclusion
Beleaf Technologies has demonstrated remarkable growth and innovation in Solana meme coin development. By consistently leveraging cutting-edge technology and fostering a culture of creativity and excellence, the company has established itself as a leader. Their commitment to delivering high-quality solutions and adapting to the ever-evolving technological landscape positions them well for continued success.

Visit — https://www.beleaftechnologies.com/solana-meme-coin
Contact Details:
Phone +91 8148147362
Email business@beleaftechnologies.com

MainActivity.kt

package com.example.intent

import android.content.Intent
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.widget.Button
import android.widget.Toast
import androidx.activity.enableEdgeToEdge

class MainActivity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

        val b1:Button = findViewById(R.id.bt1)

        b1.setOnClickListener {
            val intent = Intent(this, DetailsActivity::class.java)

            Toast.makeText(this, "Hello Details Activity", Toast.LENGTH_SHORT).show()
            startActivity(intent)
        }
    }
}

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <Button
        android:id="@+id/bt1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="click here"
        android:textSize="25dp"
        android:textColor="@color/teal_200"
        />


</LinearLayout>

DetailsActivity.kt

package com.example.intent

import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle

class DetailsActivity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_details)
    }
}

activity_deatils.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".DetailsActivity">

    <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Welcome to second activity"
        android:textSize="35dp"
        android:textColor="@color/purple_700"
        />

</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:tools = "http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    tools:context=".MainActivity"
    >

    <ImageView
        android:id="@+id/imageView"
        android:layout_width="300dp"
        android:layout_height="300dp"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toTopOf="@+id/changeImageButton"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintStart_toEndOf="parent"
        android:src="@drawable/java"
        tools:ignore="UnknownId"
        />

    <Button
        android:id="@+id/changeImageButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Change Image"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        android:layout_marginBottom="25dp"
        />

    <TextView
        android:id="@+id/imageDescription"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="I am Java"
        app:layout_constraintTop_toBottomOf="@id/imageView"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        android:layout_marginTop="8dp"
        android:textSize="18sp" />

</androidx.constraintlayout.widget.ConstraintLayout>






package com.example.imageshuffler

import android.os.Bundle
import android.widget.Button
import android.widget.ImageView
import android.widget.TextView
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.material.MaterialTheme
import androidx.compose.material.Surface
import androidx.compose.material.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.tooling.preview.Preview
import com.example.imageshuffler.ui.theme.ImageShufflerTheme

class MainActivity : ComponentActivity() {
    private lateinit var imv : ImageView
    private lateinit var chngbt: Button
    private lateinit var imgdes: TextView
    val imlist = listOf(
        R.drawable.java,
        R.drawable.kotlin,
        R.drawable.python
    )
    var currentimgindx = 0
    private val imgdescription = listOf(
        "Hi I am Java",
        "Hi I am Kotlin",
        "Hi I am Python"
    )
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

        imv = findViewById(R.id.imageView)
        chngbt = findViewById(R.id.changeImageButton)
        imgdes = findViewById(R.id.imageDescription)

        chngbt.setOnClickListener {

            changeImage()
        }
        imgdes.text=imgdescription[currentimgindx]
    }
    fun changeImage(){
        currentimgindx = (currentimgindx + 1 ) % imlist.size
        imv.setImageResource(imlist[currentimgindx])
        imgdes.text = imgdescription[currentimgindx]
    }
}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@color/purple_200"
    >

    <TextView
        android:id="@+id/title"
        style="bold"
        android:layout_width="match_parent"
        android:layout_height="73dp"
        android:text="Addition of Two Numbers"
        android:textColor="#ED0E5A"
        android:textSize="30dp"
        android:textStyle="bold" />

    <EditText
        android:id="@+id/num1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="Enter the First Number" />

    <EditText
        android:id="@+id/num2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="Enter the Second Number" />



    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:background="@color/purple_200"
        >
    <Button
        android:id="@+id/btn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#0B89ED"
        android:layout_marginLeft="80dp"
        android:layout_marginRight="40dp"
        android:text="SUM" />

    <Button
        android:id="@+id/clear"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#0B89ED"
        android:layout_marginLeft="40dp"
        android:layout_marginRight="40dp"
        android:text="Clear"/>
    </LinearLayout>

    <TextView
        android:id="@+id/result"
        style="bold"
        android:layout_width="wrap_content"
        android:layout_height="79dp"
        android:text="Result will be displayed here"
        android:textColor="#F3DE2F"
        android:textSize="29dp"
        android:textStyle="bold" />

</LinearLayout>





package com.example.sum

import android.os.Bundle
import android.widget.Button
import android.widget.EditText
import android.widget.TextView
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.material.MaterialTheme
import androidx.compose.material.Surface
import androidx.compose.material.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.tooling.preview.Preview
import com.example.sum.ui.theme.SumTheme
import java.util.jar.Pack200

class MainActivity : ComponentActivity() {
    private lateinit var t1 : TextView
    private lateinit var et1: EditText
    private lateinit var et2: EditText
    private lateinit var bt1 : Button
    private lateinit var bt2: Button
    private lateinit var t2: TextView

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)


        t1 = findViewById(R.id.title)
        et1 = findViewById(R.id.num1)
        et2 = findViewById(R.id.num2)
        bt1 = findViewById(R.id.btn)
        bt2 = findViewById(R.id.clear)
        t2 = findViewById(R.id.result)

        bt1.setOnClickListener{
            var n1 = et1.text.toString()
            var n2 = et2.text.toString()

            if (n1.isNotEmpty() && n2.isNotEmpty()){
                val total = n1.toInt() + n2.toInt()

                t2.text = "Sum is $total"
            }else{
                t2.text = "Please enter both the values"
            }
        }

        bt2.setOnClickListener {
            et1.text.clear()
            et2.text.clear()
            t2.text = "Result will be displayed here"
            et1.hint = "Enter the First Number"
            et2.hint = "Enter the Second Number"
        }


    }
}
activity_main
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <Button
        android:id="@+id/Bt1"
        android:layout_width="match_parent"
        android:layout_height="98dp"
        android:text="Go to Second Activity"
        android:textColor="@color/black"
        android:textSize="25dp" />


</LinearLayout>
mainActivity
package com.srikanth.explicitintent

import android.content.Intent
import android.os.Bundle
import android.widget.Button
import android.widget.Toast
import androidx.activity.enableEdgeToEdge
import androidx.appcompat.app.AppCompatActivity
import androidx.core.view.ViewCompat
import androidx.core.view.WindowInsetsCompat

class MainActivity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        enableEdgeToEdge()
        setContentView(R.layout.activity_main)
        val b1:Button=findViewById(R.id.Bt1)
        b1.setOnClickListener {
            val intent=Intent(this,DetailsActivity::class.java)
            DetailsActivity::class.java
            Toast.makeText(this,"Hello-Konichiwa",Toast.LENGTH_LONG).show()
            startActivity(intent)


        }

    }
}

details.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".DetailsActivity">
    <TextView
        android:id="@+id/tile"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Display message ahere"
        android:textSize="35dp"/>


</LinearLayout>
details.main

package com.srikanth.explicitintent

import android.os.Bundle
import androidx.activity.enableEdgeToEdge
import androidx.appcompat.app.AppCompatActivity
import androidx.core.view.ViewCompat
import androidx.core.view.WindowInsetsCompat

class DetailsActivity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        enableEdgeToEdge()
        setContentView(R.layout.activity_details)
        ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main)) { v, insets ->
            val systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars())
            v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom)
            insets
        }
    }
}
package com.example.explicit_intent

import android.content.Intent
import android.os.Bundle
import android.widget.Button
import android.widget.Toast
import androidx.activity.enableEdgeToEdge
import androidx.appcompat.app.AppCompatActivity
import androidx.core.view.ViewCompat
import androidx.core.view.WindowInsetsCompat

class MainActivity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {

        super.onCreate(savedInstanceState)
        enableEdgeToEdge()
        setContentView(R.layout.activity_main)
        val b1:Button = findViewById(R.id.bt1)
        b1.setOnClickListener {
            val intent = Intent(this,DetailsActivity::class.java)
            Toast.makeText(this,"Hello Details Activity",Toast.LENGTH_LONG).show()
            startActivity(intent)
        }
    }
}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <Button
        android:id="@+id/bt1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="go to second activity"
        android:textColor="@color/material_dynamic_primary70"
        android:textSize="25dp"
        />
</LinearLayout>
package com.example.expicit_intentdemor7

import android.os.Bundle
import androidx.activity.enableEdgeToEdge
import androidx.appcompat.app.AppCompatActivity
import androidx.core.view.ViewCompat
import androidx.core.view.WindowInsetsCompat

class DetailsActivity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        enableEdgeToEdge()
        setContentView(R.layout.activity_details)
        ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main)) { v, insets ->
            val systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars())
            v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom)
            insets
        }
    }
}
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".DetailsActivity">
    <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Display Message Here"
        android:textColor="@color/design_default_color_on_primary"/>

</androidx.constraintlayout.widget.ConstraintLayout>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <Button
        android:id="@+id/bt1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textColor="@color/design_default_color_on_primary"
        android:textSize="25dp"
        android:text="Go to Second Layout" />


</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".DetailsActivity">
    <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello Guys"
        android:textSize="35dp"
        android:textColor="@android:color/holo_blue_dark"
        />

</androidx.constraintlayout.widget.ConstraintLayout>
package com.example.expicit_intentdemor7

import android.content.Intent
import android.os.Bundle
import android.widget.Button
import android.widget.TextView
import android.widget.Toast
import androidx.activity.enableEdgeToEdge
import androidx.appcompat.app.AppCompatActivity
import androidx.core.view.ViewCompat
import androidx.core.view.WindowInsetsCompat

class MainActivity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        enableEdgeToEdge()
        setContentView(R.layout.activity_main)
        val b1: Button = findViewById(R.id.bt1)


        b1.setOnClickListener{
            val intent= Intent(this,DetailsActivity::class.java)
            Toast.makeText(this,"Hello DetailsActivity",Toast.LENGTH_LONG).show()
            startActivity(intent)
        }
    }
}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <Button
        android:id="@+id/bt1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Go to Second Activity"
        android:textSize="25dp"
        android:textColor="@color/design_default_color_on_primary"/>


</LinearLay
package com.example.intentdemo

import android.os.Bundle
import androidx.activity.enableEdgeToEdge
import androidx.appcompat.app.AppCompatActivity
import androidx.core.view.ViewCompat
import androidx.core.view.WindowInsetsCompat
import com.example.intetnt.R

class details_activity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        enableEdgeToEdge()
        setContentView(R.layout.activity_details)
        ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main)) { v, insets ->
            val systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars())
            v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom)
            insets
        }
    }
}
package com.example.explicit_intentdemo

import android.os.Bundle
import androidx.activity.enableEdgeToEdge
import androidx.appcompat.app.AppCompatActivity
import androidx.core.view.ViewCompat
import androidx.core.view.WindowInsetsCompat

class DetailsActivity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        enableEdgeToEdge()
        setContentView(R.layout.activity_details)
        ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main)) { v, insets ->
            val systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars())
            v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom)
            insets
        }
    }
}
package com.example.intentdemo

import android.os.Bundle
import androidx.activity.enableEdgeToEdge
import androidx.appcompat.app.AppCompatActivity
import androidx.core.view.ViewCompat
import androidx.core.view.WindowInsetsCompat

class details_activity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        enableEdgeToEdge()
        setContentView(R.layout.activity_details)
        ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main)) { v, insets ->
            val systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars())
            v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom)
            insets
        }
    }
}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".DetailsActivity">
    <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Display Message"
        android:textSize="35dp"
        android:textColor="@color/design_default_color_on_secondary"/>

</LinearLayout>
package com.example.explicit_intentdemo

import android.content.Intent
import android.os.Bundle
import android.widget.Button
import android.widget.Toast
import androidx.activity.enableEdgeToEdge
import androidx.appcompat.app.AppCompatActivity
import androidx.core.view.ViewCompat
import androidx.core.view.WindowInsetsCompat

class MainActivity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        enableEdgeToEdge()
        setContentView(R.layout.activity_main)
        val b1:Button = findViewById(R.id.bt1)
        b1.setOnClickListener {
            val intent = Intent(this,DetailsActivity::class.java)
            Toast.makeText(this,"Hello Details Activity",Toast.LENGTH_SHORT).show()
        }


    }
}
[513895.227132] usb 1-1.3: new full-speed USB device number 4 using dwc_otg
[513895.370986] usb 1-1.3: New USB device found, idVendor=2341, idProduct=0042, bcdDevice= 0.01
[513895.371000] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=220
[513895.371011] usb 1-1.3: Manufacturer: Arduino (www.arduino.cc)
[513895.371021] usb 1-1.3: SerialNumber: 55330313635351815101
[513895.423706] cdc_acm 1-1.3:1.0: ttyACM0: USB ACM device
[513895.425080] usbcore: registered new interface driver cdc_acm
[513895.425093] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
https://github.com/OctoPrint/OctoPrint-FirmwareUpdater/archive/master.zip
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
  name: deny-all-except-trusted
  namespace: default
spec:
  podSelector:
    matchLabels:
      app: my-app
  policyTypes:
  - Ingress
  ingress:
  - from:
    - podSelector:
        matchLabels:
          app: trusted-app
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
  namespace: default
  name: secret-reader
rules:
- apiGroups: [""]
  resources: ["secrets"]
  verbs: ["get", "list"]
apiVersion: apiserver.config.k8s.io/v1
kind: EncryptionConfiguration
resources:
  - resources:
    - secrets
    providers:
    - aescbc:
        keys:
          - name: key1
            secret: <base64-encoded key>
    - identity: {}
apiVersion: v1
kind: Secret
metadata:
  name: my-tls-secret
type: kubernetes.io/tls
data:
  tls.crt: <base64 encoded cert>
  tls.key: <base64 encoded key>
kubectl create secret tls my-tls-secret --cert=path/to/cert/file --key=path/to/key/file
kubectl create secret docker-registry my-registry-secret \
  --docker-server=https://index.docker.io/v1/ \
  --docker-username=my-username \
  --docker-password=my-password \
  --docker-email=my-email@example.com
kubectl create secret generic my-secret --from-literal=username=admin --from-literal=password=supersecret
apiVersion: v1
kind: Secret
metadata:
  name: my-secret
type: Opaque
data:
  username: YWRtaW4=  #base64 encoded
  password: c3VwZXJzZWNyZXQ=
git clone https://github.com/jpcurti/ender3-v3-se-klipper-with-display
cd ender3-v3-se-klipper-with-display
make menuconfig
set $PSDefaultParameterValues['out-file:width'] = 2000 before using Out-File
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>European Phone Number Form</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>European Phone Number Form</h1>
<form id="phoneForm">
  <label for="countryCode">Country Code:</label>
  <select id="countryCode" name="countryCode">
    <option value="+44">UK (+44)</option>
    <option value="+33">France (+33)</option>
    <option value="+49">Germany (+49)</option>
    <!-- Add more European country codes here -->
  </select>
  <label for="phoneNumber">Phone Number:</label>
  <input type="text" id="phoneNumber" name="phoneNumber" placeholder="Enter your phone number">
  <button type="submit">Submit</button>
</form>
<script src="script.js"></script>
</body>
</html>
let name = "Ilya";

alert( `hello ${1}` ); // ?

alert( `hello ${"name"}` ); // ?

alert( `hello ${name}` ); // ?
{
    "clientVersion": "string",
    "event": "CashLoanDisplayAllTermsClick",
    "messageId": "3396d452-38c6-4a86-a621-15939e5c3f11",
    "properties": {},
    "context": {
        "channel": "test",
        "channelVersion": "1",
        "platform": "Desktop",
        "clientVersion": "1.0.0223",
        "language": "tr",
        "page": {
            "path": "/test"
        },
        "source": "storefront",
        "requestId": "2ff36001-d57c-4aea-abe5-3a327509e2dd",
        "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36"
    },
    "sentAt": "2024-05-17T00:22:44Z",
    "sessionId": "62b245d7-190f-4045-9f6a-514c4557c9b1",
    "userId": "1ff62a22-ff10-46b6-b254-72e0cd7dfef7"
}
//CALCULATION: 1
		line = WO_Lines_Import1[ID != 0];
		mainwo = WO[Works_Order_Number == line.WO_No];
		if(line.Works_Line_Amount != null)
		{
			if(mainwo.VAT_ApplicableWO = "No")
			{
				line.Percent=line.Works_Line_Amount / mainwo.WO_NetValue * 100;
				line.Gross=line.Works_Line_Amount;
				line.VAT=0.00;
				line.Net=line.Works_Line_Amount;
			}
			else if(mainwo.VAT_ApplicableWO = "Yes")
			{
				line.Percent=line.Works_Line_Amount / mainwo.WO_NetValue * 100;
				line.Gross=line.Works_Line_Amount / 100 * 120;
				line.VAT=line.Gross - line.Works_Line_Amount;
				line.Net=line.Gross / 120 * 100;
			}
			//sum rows;
			total_line = WO_Lines_Import1.sum(Works_Line_Amount);
			total_perc = WO_Lines_Import1.sum(Percent);
			info total_line;
			info total_perc;
			//CALC 2: Compare values /validations 
			if(total_perc != 100)
			{
				alertmsg = "Line item percentages do not sum to 100 - please amend and import again";
				alerturl = "#Form:Alert?plain=" + alertmsg;
				openUrl(alerturl,"popup window","height=300,width=500");
				delete from WO_Lines_Import1[WO_No == mainwo.Works_Order_Number];
				openURL("#Page:WO_Lines_Import","same window");
			}
			else if(total_line = 0.00 || total_line is null)
			{
				alertmsg = "Line item total cannot be zero or empty - please amend";
				alerturl = "#Form:Alert?plain=" + alertmsg;
				openUrl(alerturl,"popup window","height=300,width=500");
				delete from WO_Lines_Import1[WO_No == mainwo.Works_Order_Number];
				openURL("#Page:WO_Lines_Import","same window");
			}
			else if(total_line != mainwo.WO_NetValue)
			{
				alertmsg = "Sum of line totals does not equal WO net value - please amend";
				alerturl = "#Form:Alert?plain=" + alertmsg;
				openUrl(alerturl,"popup window","height=300,width=500");
				delete from WO_Lines_Import1[WO_No == mainwo.Works_Order_Number];
				openURL("#Page:WO_Lines_Import","same window");
			}
			else
			{
				mainwo.Line_item_total=total_line;
				mainwo.Line_perctotal=total_perc;
				//	INSERT into WO
				rows_collection = Collection();
				for each  rec in WO_Lines_Import1
				{
					row1 = WO.Order_DetailsWO();
					//development
					devID = Developments[Development_Name == rec.Dev_name].ID;
					row1.Development_PropertySF=devID;
					//block
					blockID = Development_Blocks[Block_Name == rec.Block_name].ID;
					row1.Block=blockID;
					//schedule
					sched = ScheduleBudgets[ID == rec.ScheduleID].ID;
					row1.ScheduleID=sched;
					//cost head 
					costheadID = BudgetBuilderCH[ID == rec.Cost_HeadID].ID;
					row1.Cost_HeadID=costheadID;
					//asset 
					assetID = Add_Single_Asset[ID == rec.AssetWO_ID].ID;
					row1.AssetWO_ID=assetID;
					//ppm
					ppmID = Testing_and_Maintenance[ID == rec.PPM_ID].ID;
					row1.PPM_ID=ppmID;
					row1.Works_Required=rec.Works_Required;
					//calculation fields 
					row1.Percent=rec.Percent;
					row1.Works_Line_Amount=rec.Works_Line_Amount;
					row1.VAT=0.2 * rec.Works_Line_Amount;
					row1.Gross=rec.Works_Line_Amount + row1.VAT;
					row1.Net=rec.Works_Line_Amount;
					rows_collection.insert(row1);
					fet = WO[Works_Order_Number == rec.WO_No];
					fet.Order_DetailsWO.insert(rows_collection);
				}
				delete from WO_Lines_Import1[WO_No == rec.WO_No];
				openURL("#Page:WO_Lines_Import","same window");
			}
		}
{
    "clientVersion": "string",
    "event": "CashLoanBankLimitView",
    "messageId": "4396d452-38c6-4a86-a621-15939e5c3f02",
    "properties": {
        "referenceId": "2445526",
        "isOtpRequired": true,
        "checkLimitAvailabilities": [
            {
                "bankId": 1,
                "availableLimit": 1234.5,
                "maxTerm": 3,
                "recommended": true,
                "isNewCustomer": true
            },
            {
                "bankId": 2,
                "availableLimit": 3566.5,
                "maxTerm": 9,
                "recommended": true,
                "isNewCustomer": true
            }
        ],
        "newCustomerBanks": [
            1,
            2,
            3
        ],
        "isCustomerInfoNull": true,
        "showFinancialInfoForm": true
    },
    "context": {
        "channel": "test",
        "channelVersion": "1",
        "platform": "Desktop",
        "clientVersion": "1.0.0223",
        "language": "tr",
        "page": {
            "path": "/test"
        },
        "source": "storefront",
        "requestId": "2ff36001-d57c-4aea-abe5-3a327509e2dd",
        "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36"
    },
    "sentAt": "2024-08-15T00:22:44Z",
    "sessionId": "62b245d7-190f-4045-9f6a-514c4557c9b1",
    "userId": "1ff62a22-ff10-46b6-b254-72e0cd7dfef7"
}
{
   "clientVersion": "string",
   "event": "CashLoanView",
   "messageId": "3396d452-38c6-4a86-a621-15939e5c3f31",
   "properties": {
       "pageType": "cart",
       "pageValue": "HBCV00005WJBQV"
   },
   "context": {
       "channelVersion": "1",
       "platform": "Desktop",
       "clientVersion": "1.0.0223",
       "language":"tr",
       "page": {
           "path": "/test"
       },
       "source":  "storefront",
       "userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36"
   },
   "sentAt": "2024-05-17T00:22:44Z",
   "sessionId": "62b245d7-190f-4045-9f6a-514c4557c9b1",
   "userId": "1ff62a22-ff10-46b6-b254-72e0cd7dfef7"
}

php_value upload_max_filesize 2048M
php_value post_max_size 2048M
php_value memory_limit 4096M
php_value max_execution_time 0
php_value max_input_time 0
/*Set(resetimgUpd1, false);
Set(resetimgUpd2, false);
Set(resetimgUpd3, false);

If(
    IsBlank(TxtTitle.Text) ||
    IsBlank(TxtWeek.Text) ||
    IsBlank(TxtOverview.Text) ||
    IsBlank(TxtBefore.Text) ||
    IsBlank(TxtAfter.Text) ||
    IsBlank(TxtHOD.Text) || 
    IsBlank(CmbDept.Selected),

    Notify("Please fill in the fields", NotificationType.Error, 3000),

    Patch(
        KaizenCreate,
        Defaults(KaizenCreate),
        {
            Title: GenID,
            UserName: User().FullName,
            UserMail: User().Email,
            InDate: Now(),
            KaizenName: TxtTitle.Text,
            WeekNo: TxtWeek.Text,
            PointKaizen: Txtpoint.Text,
            Department: CmbDept.Selected.Title,
            HOD: TxtHOD.Text,
            Overview: TxtOverview.Text,
            KaizenBeforeImg: UploadedImage1.Image,
            KaizenAfterImg: UploadedImage2.Image,
            KaizenBef: TxtBefore.Text,
            KaizenAft: TxtAfter.Text,
            FutureImprovement: TxtFuture.Text,
            TeamMemberImg: UploadedImage3.Image,
            TeamMemberName: TxtTM.Text,
            DateImplemented: DatePicker1.SelectedDate,
            SQDCMImpact: [
                {Value: If(Checkbox1_1.Value = true, "Safety")},
                {Value: If(Checkbox1_2.Value = true, "Quality")},
                {Value: If(Checkbox1_3.Value = true, "Delivery")},
                {Value: If(Checkbox1_4.Value = true, "Cost")},
                {Value: If(Checkbox1_5.Value = true, "Moral")} ],
            Inventory: TextInput3_2.Text,
            FloorSpace: TextInput3_8.Text,
            NoOfOperators: TextInput3_11.Text,
            TravelDistance: TextInput3_14.Text,
            MachineDowntime: TextInput3_17.Text,
            Safety: TextInput3_20.Text,
            DTD: TextInput3_5.Text,
            ValueAdd: TextInput3_23.Text,
            FTT: TextInput3_26.Text,
            YearlyCostSaving: TextInput3_29.Text,
            CycleTime: TextInput3_32.Text,
            Changeover: TextInput3_35.Text,
            BeforeInventory:TextInput3.Text,
            BeforeFloorSpace:TextInput3_6.Text,
            BeforeOperator:TextInput3_9.Text,
            BeforeDistance:TextInput3_12.Text,
            BeforeDowntime:TextInput3_15.Text,
            BeforeSafety:TextInput3_15.Text,
            BeforeDTD:TextInput3_3.Text,
            BeforeValue:TextInput3_21.Text,
            BeforeFTT:TextInput3_24.Text,
            BeforeYCS:TextInput3_27.Text,
            BeforeCycleTime:TextInput3_30.Text,
            BeforeChangeover:TextInput3_33.Text,
            AfterInventory:TextInput3_1.Text,
            AfterFloorSpace:TextInput3_7.Text,
            AfterOperator:TextInput3_10.Text,
            AfterDistance:TextInput3_13.Text,
            AfterDowntime:TextInput3_16.Text,
            AfterSafety:TextInput3_19.Text,
            AfterDTD:TextInput3_4.Text,
            AfterValue:TextInput3_22.Text,
            AfterFTT:TextInput3_25.Text,
            AfterYCS:TextInput3_28.Text,
            AfterCycleTime:TextInput3_31.Text,
            AfterChangeover:TextInput3_34.Text
        },Form7.Updates
    );

    Notify("Your request has been saved.", NotificationType.Success, 3000);

    If(IsBlank(Checkbox1_4.Value),
    KaizenFinanceApproval.Run(
        User().FullName,
        User().Email,
        GenID,
        ComboBox3.Selected.'Carder Reduction',
        ComboBox3_1.Selected.'SMV Improvement',
        ComboBox3_2.Selected.'Material Saving',
        ComboBox3_3.Selected.'Supplier material Price negotiation',
        TextInput1_1.Text,
        attName,
        {file: {contentBytes: First(AttachmentSubmit.Attachments).Value, name: First(AttachmentSubmit.Attachments).Name}}
        //{file_1: {name: "Kaizen Sheet Capture -" & GenID & ".pdf",contentBytes: PDF(KaizenCreate, {ExpandContainers:true})}}
    ;)*/
    
    /*"",
    Office365Outlook.SendEmailV2(
    "thejar@masholdings.com;nethmid@masholdings.com",
    "Kizan Updates",

"
    <!DOCTYPE html>
<html lang='en'>
<head>
    <meta charset='UTF-8'>
    <meta name='viewport' content='width=device-width, initial-scale=1.0'>
</head>
<body style='margin: 0; padding: 0; text-align: center; Font-size: 20px; font-family: Roboto, Tahoma, Verdana, Segoe, sans-serif; mso-line-height-alt: 16.8px; color: #34495e; line-height: 1.2;'>
    <div style='width: 100%; height: auto; background-color: rgb(190, 255, 209); box-shadow: 2px 5px  50px rgb(111, 233, 255); padding-top: 20px; padding-bottom: 100px;'>
        
        <p style='padding: 10px; font-size: 20px; font-weight: bold;'>
            Waiting for your approval
            <hr>
        </p>
        <p style='padding: 10px; font-size: 20px; font-weight: bold;'>
            Please login to the system and update approval
            <hr>
        </p>
        <div style='border-radius: 30px; margin: auto; padding: 10px; width: 90%; background-color: aquamarine; box-shadow: 2px 5px  50px rgb(2, 32, 61); padding-top: 20px; '>
            
            <p style=''>
                Kizan ID :: " & GenID & " 
            </p><br>
            <p style=''>
                Comment :: Waiting for your approval 
            </p>
    
            <p>
            <a href='https://apps.powerapps.com/play/e/default-852c5799-8134-4f15-9d38-eba4296cc76f/a/d626efea-e961-4597-9094-1d30de5159b2?tenantId=852c5799-8134-4f15-9d38-eba4296cc76f&hint=f753fe80-3c99-4afa-bccf-a8260370b99c&sourcetime=1711017484454'> Launch Application </a>  
    
            </p>

            <p style='font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;'>You can reply on this mail for future verification and updates.</p>


        </div>

    </div>
</body>
</html>"
,
    {
        Cc: "srimaleew@masholdings.com"
    }

););   *//*

    Set(res, true);

    Reset(TxtTitle);
    Reset(TxtWeek);
    Reset(Txtpoint);
    Reset(TxtOverview);
    Reset(TxtBefore);
    Reset(TxtAfter);
    Reset(TxtFuture);
    Reset(TxtHOD);
    Reset(CmbDept);
    Reset(TxtTM);
    Reset(DatePicker1);
    Reset(Checkbox1_1);
    Reset(Checkbox1_2);
    Reset(Checkbox1_3);
    Reset(Checkbox1_4);
    Reset(Checkbox1_5);
    Reset(ComboBox3);
    Reset(ComboBox3_1);
    Reset(ComboBox3_2);
    Reset(ComboBox3_3);
    Reset(TextInput1_1);
    Reset(AttachmentSubmit);

    
    UpdateContext(
        {
            GenID: "Kaizen-" & Left(Text(Today(), "mmmm"), 3) & "-0000" & Right(Last(Sort( KaizenCreate,ID,SortOrder.Ascending)).Title,5) + 1
        }
    );
    
    Set(resetimgUpd1, true);
    Set(resetimgUpd2, true);
    Set(resetimgUpd3, true);
    Refresh(KaizenCreate);
);
);
*/

Set(resetimgUpd1, false);
Set(resetimgUpd2, false);
Set(resetimgUpd3, false);

If(
    IsBlank(TxtTitle.Text) ||
    IsBlank(TxtWeek.Text) ||
    IsBlank(TxtOverview.Text) ||
    IsBlank(TxtBefore.Text) ||
    IsBlank(TxtAfter.Text) ||
    IsBlank(TxtHOD.Text) ||
    (IsBlank(TextInput3.Text) && IsBlank(TextInput3_3.Text) && IsBlank(TextInput3_6.Text) && IsBlank(TextInput3_9.Text) && IsBlank(TextInput3_12.Text) && IsBlank(TextInput3_15.Text) && IsBlank(TextInput3_18.Text) && IsBlank(TextInput3_21.Text) && IsBlank(TextInput3_24.Text) && IsBlank(TextInput3_27.Text) && IsBlank(TextInput3_30.Text) && IsBlank(TextInput3_33.Text)) ||
    (!Checkbox1_1.Value && !Checkbox1_2.Value && !Checkbox1_3.Value && !Checkbox1_4.Value && !Checkbox1_5.Value),

    Notify("Please fill in the fields", NotificationType.Error, 3000),
    KaizenHOD.Run(
        User().FullName,
        User().Email,
        Office365Users.Manager(User().Email).DisplayName,
        Office365Users.Manager(User().Email).Mail,
        GenID
    );

    Patch(
        KaizenCreate,
        Defaults(KaizenCreate),
        {
            Title: GenID,
            UserName: User().FullName,
            UserMail: User().Email,
            InDate: Now(),
            KaizenName: TxtTitle.Text,
            WeekNo: TxtWeek.Text,
            PointKaizen: Txtpoint.Text,
            Department: Office365Users.MyProfileV2().department,
            HOD: Office365Users.Manager(User().Email).DisplayName,
            HODMail:Office365Users.Manager(User().Email).Mail,
            Section:{Value:Radio1.Selected.Value},
            Countery:{Value:Radio1_1.Selected.Value},
            Overview: TxtOverview.Text,
            KaizenBeforeImg: UploadedImage1.Image,
            KaizenAfterImg: UploadedImage2.Image,
            KaizenBef: TxtBefore.Text,
            KaizenAft: TxtAfter.Text,
            FutureImprovement: TxtFuture.Text,
            TeamMemberImg: UploadedImage3.Image,
            TeamMemberName: TxtTM.Text,
            DateImplemented: DatePicker1.SelectedDate,
            SQDCMImpact: [
                {Value: If(Checkbox1_1.Value, "Safety")},
                {Value: If(Checkbox1_2.Value, "Quality")},
                {Value: If(Checkbox1_3.Value, "Delivery")},
                {Value: If(Checkbox1_4.Value, "Cost")},
                {Value: If(Checkbox1_5.Value, "Moral")}
            ],
            SafetyVal: {Value: If(Checkbox1_1.Value, "Yes")},
            QualityVal:{Value: If(Checkbox1_2.Value, "Yes")},
            IEval:{Value: If(Checkbox1_3.Value, "Yes")},
            FinanceVal:{Value: If(Checkbox1_4.Value, "Yes")},
            MoralVal:{Value: If(Checkbox1_5.Value, "Yes")},
            Inventory: TextInput3_2.Text,
            FloorSpace: TextInput3_8.Text,
            NoOfOperators: TextInput3_11.Text,
            TravelDistance: TextInput3_14.Text,
            MachineDowntime: TextInput3_17.Text,
            Safety: TextInput3_20.Text,
            DTD: TextInput3_5.Text,
            ValueAdd: TextInput3_23.Text,
            FTT: TextInput3_26.Text,
            YearlyCostSaving: TextInput3_29.Text,
            CycleTime: TextInput3_32.Text,
            Changeover: TextInput3_35.Text,
            BeforeInventory: TextInput3.Text,
            BeforeFloorSpace: TextInput3_6.Text,
            BeforeOperator: TextInput3_9.Text,
            BeforeDistance: TextInput3_12.Text,
            BeforeDowntime: TextInput3_15.Text,
            BeforeSafety: TextInput3_18.Text,
            BeforeDTD: TextInput3_3.Text,
            BeforeValue: TextInput3_21.Text,
            BeforeFTT: TextInput3_24.Text,
            BeforeYCS: TextInput3_27.Text,
            BeforeCycleTime: TextInput3_30.Text,
            BeforeChangeover: TextInput3_33.Text,
            AfterInventory: TextInput3_1.Text,
            AfterFloorSpace: TextInput3_7.Text,
            AfterOperator: TextInput3_10.Text,
            AfterDistance: TextInput3_13.Text,
            AfterDowntime: TextInput3_16.Text,
            AfterSafety: TextInput3_19.Text,
            AfterDTD: TextInput3_4.Text,
            AfterValue: TextInput3_22.Text,
            AfterFTT: TextInput3_25.Text,
            AfterYCS: TextInput3_28.Text,
            AfterCycleTime: TextInput3_31.Text,
            AfterChangeover: TextInput3_34.Text,
            'Carder Reduction':[
                {Value: If(chkBxBudgtCardr.Value, "Budgeted Carder")},
                {Value: If(MonthOnMntActCdr.Value, "Month on month Actual carder")},
                {Value: If(Checkbox1_7.Value, "No of employees reduced -category wise")}
            ],
            'SMV Improvement':[
                {Value: If(Checkbox1_8.Value, "Style wise SMV's before and after the improvement")},
                {Value: If(Checkbox1_9.Value, "Stylewise Budgted Pieces")},
                {Value: If(Checkbox1_10.Value, "Stylewise Actual Pieces")},
                {Value: If(Checkbox1_11.Value, "Considered CPH")}
            ],
            'Supplier material Price negotiation':[
                {Value: If(Checkbox1_12.Value, "Material Number")},
                {Value: If(Checkbox1_13.Value, "Unit price before and after the improvement")},
                {Value: If(Checkbox1_14.Value, "MM60 screenshots")}
            ],
            'Material Saving':[
                {Value: If(Checkbox1_15.Value, "Material Number")},
                {Value: If(Checkbox1_16.Value, "BOM required quantity before and after the improvement")},
                {Value: If(Checkbox1_17.Value, "Month on month Purchased quantity")},
                {Value: If(Checkbox1_18.Value, "Month on month issued quantity")},
                {Value: If(Checkbox1_19.Value, "Considered Unit Price")},
                {Value: If(Checkbox1_20.Value, "BOM Screenshot")}
            ],
            Comment:TextInput1_1.Text
        },
        Form7.Updates
    );

    
    
    Notify("Your request has been saved.", NotificationType.Success, 3000);

    

    /*KaizenHodApproval.Run(
        GenID,
        User().FullName,
        User().Email,
        Office365Users.Manager(User().Email).Mail,
        Office365Users.Manager(User().Email).DisplayName
        /*{file: {
        name: "KAIZEN -" & GenID & ".jpg",
        contentBytes: image(CreateKaizen, {ExpandContainers:true})
    }}
    );

    If(
        !IsBlank(Checkbox1_4.Value),
        KaizenFinanceApproval.Run(
            If(chkBxBudgtCardr.Value=true,chkBxBudgtCardr.Text,""),
            If(MonthOnMntActCdr.Value=true,MonthOnMntActCdr.Text,""),
            If(Checkbox1_7.Value=true,Checkbox1_7.Text,""),
            If(Checkbox1_8.Value=true,Checkbox1_8.Text,""),
            If(Checkbox1_9.Value=true,Checkbox1_9.Text,""),
            If(Checkbox1_10.Value=true,Checkbox1_10.Text,""),
            If(Checkbox1_11.Value=true,Checkbox1_11.Text,""),
            If(Checkbox1_15.Value=true,Checkbox1_15.Text,""),
            If(Checkbox1_16.Value=true,Checkbox1_16.Text,""),
            If(Checkbox1_17.Value=true,Checkbox1_17.Text,""),
            If(Checkbox1_18.Value=true,Checkbox1_18.Text,""),
            If(Checkbox1_19.Value=true,Checkbox1_19.Text,""),
            If(Checkbox1_20.Value=true,Checkbox1_20.Text,""),
            If(Checkbox1_12.Value=true,Checkbox1_12.Text,""),
            If(Checkbox1_13.Value=true,Checkbox1_13.Text,""),
            If(Checkbox1_14.Value=true,Checkbox1_14.Text,""),
            TextInput1_1.Text,
            User().Email,
            GenID,
            {file: {contentBytes: First(AttachmentSubmit.Attachments).Value, name: First(AttachmentSubmit.Attachments).Name}}
        )
    );*/


    Set(res, false);
    Set(res, true);

    Reset(TxtTitle);
    Reset(TxtWeek);
    Reset(Txtpoint);
    Reset(TxtOverview);
    Reset(TxtBefore);
    Reset(TxtAfter);
    Reset(TxtFuture);
    Reset(TxtHOD);
    Reset(CmbDept);
    Reset(TxtTM);
    Reset(DatePicker1);
    Reset(Checkbox1_1);
    Reset(Checkbox1_2);
    Reset(Checkbox1_3);
    Reset(Checkbox1_4);
    Reset(Checkbox1_5);
    Reset(ComboBox3);
    Reset(ComboBox3_1);
    Reset(ComboBox3_2);
    Reset(ComboBox3_3);
    Reset(TextInput1_1);
    Reset(Radio1);
    Reset(Radio1_1);
    Set(attReset, false);
    Set(attReset, true);

    UpdateContext({
        GenID: "Kaizen-" & Left(Text(Today(), "mmmm"), 3) & "-0000" & Right(Last(Sort(KaizenCreate, ID, SortOrder.Ascending)).Title, 5) + 1
    });
    
    Set(resetimgUpd1, true);
    Set(resetimgUpd2, true);
    Set(resetimgUpd3, true);
    Refresh(KaizenCreate);
);
<style>
.reflection {
  width: 300px;
  height: 215px;
  margin: 50px auto;
}
.reflection-figure {
  position: relative;
  height: 215px;
  margin: 0;
}
.reflection-text {
  font: 0.8em sans-serif;
  position: absolute;
  right: 0; bottom: 20px;
  margin: 0;
  padding: 10px;
  background: rgba(255,255,255,.6);
  color: #000;
  transition: padding .3s;
}
.reflection:hover .reflection-text {
  padding-right: 50px;
}

/* reflection the standard way (detecting support) */
@supports (background: -moz-element(#css-element)) {
  .reflection::after{
    content: '';
    position: absolute;
    width: inherit; height: inherit;
    background: -moz-element(#css-element);
    transform: scaleY(-1);
    mask: url('#mask');
    opacity: .3;
  }
}

/* reflection the old WebKit way */
.reflection {
  -webkit-box-reflect: below 0 linear-gradient(transparent 50%, rgba(0,0,0,.3));
}
</style>
<div class="reflection">
  <figure class="reflection-figure" id="css-element">
    <img class="reflection-image" src="https://unsplash.it/300/215?image=84" alt="">
    <figcaption class="reflection-text">San Francisco, CA</figcaption>
  </figure>
</div>
<svg height="0">
  <mask id="mask">
    <rect width="100%" height="215" fill="url(#gradient)"/>
    <linearGradient x1="0" y1="0" x2="0" y2="1" id="gradient">
      <stop offset="50%" stop-color="black" />
      <stop offset="100%" stop-color="white" />
    </linearGradient>
  </mask>
</svg>
<style>
   @import url(https://fonts.googleapis.com/css?family=Droid+Sans:700);

/* counters */

body {
  counter-reset: characters;
}

input:checked {
  counter-increment: characters;
}

.total::after {
  content: counter(characters);
}

/* the rest is just to make things pretty */

body {
  margin: 32px;
  font: 700 32px/1 'Droid Sans', sans-serif;
  color: #fff;
  background-color: #3f584e;
}

h1 {
  margin: 0 0 32px;
  font-size: 48px;
}

h2 {
  margin: 0 0 8px 8px;
  font-size: inherit;
}

section {
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 4px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, .1);
}

input {
  position: absolute;
  left: -9999px;
}

label {
  float: left;
  margin: 8px;
  padding: 16px;
  border-radius: 4px;
  border: solid 2px rgba(255, 255, 255, .4);
  background-color: rgba(255, 255, 255, .2);
  cursor: pointer;
  transition: all .1s;
}

label::before {
  display: inline;
}

input:checked + label {
  border: solid 2px #fff;
  background-color: rgba(255, 255, 255, .4);
  box-shadow: 0 0 10px #fff;
}

.total {
  padding: 16px 24px;
}
  </style>
<h1>בחר קוביה</h1>
<section class="characters">
  <h2>בחר קוביה או קוביות</h2>
  <input id="b" type="checkbox"><label for="b">ראשון</label>
  <input id="c" type="checkbox"><label for="c">שני</label>
  <input id="e" type="checkbox"><label for="e">שלישי</label>
  <input id="g" type="checkbox"><label for="g">רביעי</label>
  <input id="i" type="checkbox"><label for="i">חמישי</label>
  <input id="k" type="checkbox"><label for="k">שישי</label>
  <input id="l" type="checkbox"><label for="l">שביעי</label>
  <input id="o" type="checkbox"><label for="o">שמיני</label>
</section>
<section class="total">
  סה"כ נבחרו:
</section>
<script>
    jQuery(document).ready(function($){
        $(".elementor-field").focus(function() {
            $(this).prev('.elementor-field-label').addClass("active-field-label");
        }).focusout(function() {
            if(!$(this).val()) {
                $(this).prev('.elementor-field-label').removeClass("active-field-label");
            }
        });
    });
</script>
<style>
.elementor-form .elementor-field-label {
    position: absolute;
    right: 18px;
    transition-duration: .2s;
}

.elementor-field-label.active-field-label{
    transform: translateY(-20px);
    font-size: 16px !important;
}

.elementor-field{
    box-shadow: none !important;
}
</style>
<style>
selector{
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating {
    from { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    to   { transform: translate(0, -0px); }
}
</style>
star

Wed Aug 21 2024 15:32:36 GMT+0000 (Coordinated Universal Time)

@zily

star

Wed Aug 21 2024 15:32:08 GMT+0000 (Coordinated Universal Time)

@zily

star

Wed Aug 21 2024 14:56:59 GMT+0000 (Coordinated Universal Time) https://skbased.autonomousvoid.com/me?loginSuccess

@gunnu_xd

star

Wed Aug 21 2024 14:38:02 GMT+0000 (Coordinated Universal Time) https://skbased.autonomousvoid.com/me?loginSuccess

@gunnu_xd

star

Wed Aug 21 2024 14:37:43 GMT+0000 (Coordinated Universal Time) https://skbased.autonomousvoid.com/me?loginSuccess

@gunnu_xd

star

Wed Aug 21 2024 14:02:33 GMT+0000 (Coordinated Universal Time)

@renatolinn #python

star

Wed Aug 21 2024 11:27:11 GMT+0000 (Coordinated Universal Time) https://www.beleaftechnologies.com/solana-meme-coin

@sivaprasadm203 #blockchain #cryptocurrency #defi #web3

star

Wed Aug 21 2024 10:04:37 GMT+0000 (Coordinated Universal Time)

@chatgpt #kotlin

star

Wed Aug 21 2024 10:02:57 GMT+0000 (Coordinated Universal Time)

@chatgpt #kotlin

star

Wed Aug 21 2024 10:02:24 GMT+0000 (Coordinated Universal Time)

@chatgpt #kotlin

star

Wed Aug 21 2024 09:40:13 GMT+0000 (Coordinated Universal Time)

@signup

star

Wed Aug 21 2024 09:17:45 GMT+0000 (Coordinated Universal Time)

@signup

star

Wed Aug 21 2024 09:08:43 GMT+0000 (Coordinated Universal Time)

@signup

star

Wed Aug 21 2024 09:02:44 GMT+0000 (Coordinated Universal Time)

@signup

star

Wed Aug 21 2024 09:02:05 GMT+0000 (Coordinated Universal Time)

@signup

star

Wed Aug 21 2024 09:00:59 GMT+0000 (Coordinated Universal Time)

@signup

star

Wed Aug 21 2024 09:00:36 GMT+0000 (Coordinated Universal Time)

@signup

star

Wed Aug 21 2024 08:59:43 GMT+0000 (Coordinated Universal Time)

@signup

star

Wed Aug 21 2024 08:56:38 GMT+0000 (Coordinated Universal Time)

@signup

star

Wed Aug 21 2024 08:56:30 GMT+0000 (Coordinated Universal Time)

@signup

star

Wed Aug 21 2024 08:49:22 GMT+0000 (Coordinated Universal Time)

@signup

star

Wed Aug 21 2024 08:47:01 GMT+0000 (Coordinated Universal Time)

@signup

star

Wed Aug 21 2024 08:45:05 GMT+0000 (Coordinated Universal Time)

@signup

star

Wed Aug 21 2024 08:42:03 GMT+0000 (Coordinated Universal Time)

@signup

star

Wed Aug 21 2024 07:06:12 GMT+0000 (Coordinated Universal Time) https://community.octoprint.org/t/octoprint-cant-connect-to-my-printer/223#no_port

@amccall23

star

Wed Aug 21 2024 05:37:11 GMT+0000 (Coordinated Universal Time) https://plugins.octoprint.org/plugins/firmwareupdater/

@amccall23

star

Wed Aug 21 2024 03:06:55 GMT+0000 (Coordinated Universal Time)

@Sassy

star

Wed Aug 21 2024 03:03:08 GMT+0000 (Coordinated Universal Time)

@Sassy

star

Wed Aug 21 2024 03:01:43 GMT+0000 (Coordinated Universal Time)

@Sassy

star

Wed Aug 21 2024 02:58:49 GMT+0000 (Coordinated Universal Time)

@Sassy

star

Wed Aug 21 2024 02:57:17 GMT+0000 (Coordinated Universal Time)

@Sassy

star

Wed Aug 21 2024 02:55:03 GMT+0000 (Coordinated Universal Time)

@Sassy

star

Wed Aug 21 2024 02:51:05 GMT+0000 (Coordinated Universal Time)

@Sassy

star

Wed Aug 21 2024 02:49:28 GMT+0000 (Coordinated Universal Time)

@Sassy

star

Wed Aug 21 2024 02:27:35 GMT+0000 (Coordinated Universal Time) https://github.com/jpcurti/ender3-v3-se-klipper-with-display?tab

@amccall23

star

Wed Aug 21 2024 01:26:03 GMT+0000 (Coordinated Universal Time) https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/out-file?view

@baamn

star

Tue Aug 20 2024 17:53:10 GMT+0000 (Coordinated Universal Time)

@Faramzin

star

Tue Aug 20 2024 12:10:18 GMT+0000 (Coordinated Universal Time)

@portal_wombat #python

star

Tue Aug 20 2024 12:08:46 GMT+0000 (Coordinated Universal Time) https://learn.javascript.ru/types

@kseniya #javascript

star

Tue Aug 20 2024 11:12:58 GMT+0000 (Coordinated Universal Time)

@hkutluay

star

Tue Aug 20 2024 10:26:52 GMT+0000 (Coordinated Universal Time)

@nishpod

star

Tue Aug 20 2024 09:40:44 GMT+0000 (Coordinated Universal Time)

@hkutluay

star

Tue Aug 20 2024 09:39:06 GMT+0000 (Coordinated Universal Time)

@hkutluay

star

Tue Aug 20 2024 07:12:04 GMT+0000 (Coordinated Universal Time)

@BilalRaza12

star

Tue Aug 20 2024 05:55:19 GMT+0000 (Coordinated Universal Time)

@Tharkana

star

Tue Aug 20 2024 00:05:31 GMT+0000 (Coordinated Universal Time)

@ASPX #css #html

star

Mon Aug 19 2024 22:05:05 GMT+0000 (Coordinated Universal Time)

@ASPX #css #html

star

Mon Aug 19 2024 21:18:50 GMT+0000 (Coordinated Universal Time)

@ASPX #css #jquery

star

Mon Aug 19 2024 21:14:15 GMT+0000 (Coordinated Universal Time)

@ASPX #css

Save snippets that work with our extensions

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