-
Install the following by using the steps given on the website for these applications:
This file contains 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
document.querySelectorAll('a#video-title[href]').forEach(function(element, currentIndex, listObj) { | |
console.log(currentIndex + ': ' + element.innerText + ' : ' + element); | |
}) | |
VM5670:2 0: Top 10 SCARY Ghost Videos To SEND YOU RUNNIN' : https://www.youtube.com/watch?v=Yc64zWKIdi0 | |
^ Console text | |
^ currentIndex | |
^ innerText (Title) | |
^ (Separator) | |
^ element (Link) |
This file contains 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 excel.core; | |
import lombok.Data; | |
import lombok.experimental.Accessors; | |
/** | |
* Purpose: Required variables/methods for any TestDataControllers. | |
* | |
* @author Shahid Karim | |
* @version 1.0 |
This file contains 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
/** | |
* Purpose: What does this class do? | |
* | |
* @version 1.0 | |
* @since ${DATE} - ${TIME} | |
* @author Shahid Karim | |
*/ |
This file contains 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
MYSQL_ROOT_PASSWORD= | |
MYSQL_USER= | |
MYSQL_PASSWORD= | |
MYSQL_DATABASE= |
This file contains 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
using System.Collections.Generic; | |
using System.IO; | |
using UnityEngine; | |
using UnityEditor; | |
using UnityEditor.PackageManager.Requests; | |
using UnityEditor.PackageManager; | |
// Place this script in YOUR_PROJECT_FOLDER/Assets/Editor | |
// Run this script by clicking on the Importer menu item below the Unity title bar (File, Edit ... Importer) | |
public class ImportAssets : EditorWindow { |
This file contains 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 xyz.hiddengames.command; | |
@FunctionalInterface | |
public interface ICommand<T> { | |
void execute(T item); | |
//void undo(T item); | |
} |
This file contains 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
// MODIFIED FROM https://stackoverflow.com/questions/55297626/disable-an-options-in-a-dropdown-unity | |
using System.Collections; | |
using System.Collections.Generic; | |
using TMPro; | |
using UnityEngine; | |
using UnityEngine.EventSystems; | |
using UnityEngine.UI; |
This file contains 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 xyz.hiddengames.core; | |
import net.sourceforge.tess4j.Tesseract; | |
import javax.imageio.ImageIO; | |
import java.awt.*; | |
import java.awt.image.BufferedImage; | |
import java.io.File; | |
import java.io.IOException; |
NewerOlder