This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.example.myapplication | |
| import android.app.PendingIntent | |
| import android.content.Intent | |
| import android.content.IntentFilter | |
| import android.nfc.NfcAdapter | |
| import android.nfc.Tag | |
| import android.os.Bundle | |
| import android.util.Log | |
| import androidx.activity.ComponentActivity |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Exit on any error | |
| set -e | |
| echo "Starting Chrome installation and extension setup..." | |
| # Check if Chrome is already installed | |
| if ! command -v google-chrome &> /dev/null; then | |
| echo "Chrome not found. Installing Chrome..." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <table> | |
| <tr | |
| v-for="(item,index) in pageItems" | |
| :key="'name_'+item.name+'_'+index"> | |
| <td>{{item}}</td> | |
| </tr> | |
| </table> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const object = { | |
| anim: { | |
| effects: [ | |
| pulse: { | |
| start: { | |
| scaleX: object.scaleX * 1.25, | |
| scaleY: object.scaleY * 1.25, | |
| }, | |
| end: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en" dir="ltr"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Your Application</title> | |
| </head> | |
| <body> | |
| <h1>Your Application</h1> | |
| <h3>Media List</h3> |