This is a collections of script, patches and procedures to mod Mobile and Desktop Spotify Applications
If you know about something that isn't listed here and you would like it to be feel free to tell me about it in the comments or send an e-mail to dav@davoleo.net
This is a collections of script, patches and procedures to mod Mobile and Desktop Spotify Applications
If you know about something that isn't listed here and you would like it to be feel free to tell me about it in the comments or send an e-mail to dav@davoleo.net
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> | |
| <head> | |
| <title>Blue Box with Image</title> | |
| <style> | |
| .blue-box { | |
| border: 5px solid blue; | |
| padding: 6px; | |
| display: inline-block; |
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
| .timetable { | |
| border-collapse: collapse; | |
| border: 3px solid black; | |
| } | |
| td,th { | |
| border: 1px solid black; | |
| text-align: center; | |
| padding: 15px; | |
| } |
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"> | |
| <head> | |
| <title>HTML Tables and Forms</title> | |
| <style> | |
| table { | |
| border: 1px solid black; | |
| } | |
| tr,td,th { | |
| border: 1px solid black; |
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"> | |
| <head> | |
| <title>@Grace</title> | |
| </head> | |
| <body> | |
| <form> | |
| <fieldset> | |
| <legend>Your Details</legend> |
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> | |
| <head> | |
| <title>Form Validation Example</title> | |
| <script> | |
| function validateForm() { | |
| var name = document.forms["myForm"]["name"].value; | |
| var email = document.forms["myForm"]["email"].value; | |
| var password = document.forms["myForm"]["password"].value; | |
| var confirmPassword = document.forms["myForm"]["confirmPassword"].value; |
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
| #include <iostream> | |
| using namespace std; | |
| int main() { | |
| int arr {200}; | |
| //declaring arrays to keep elements | |
| int elements[arr]; | |
| int ltelems[arr]; |
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
| #include <iostream> | |
| using namespace std; | |
| // Function to find the maximum value in an array | |
| int maximum(const int array[], int size) { | |
| int maxVal = array[0]; // Assume the first element is the maximum | |
| for (int i = 1; i < size; ++i) { | |
| if (array[i] > maxVal) { | |
| maxVal = array[i]; // Update maxVal if a larger element is found |
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
| #include <iostream> | |
| class Array { | |
| private: | |
| int *arr; | |
| int size; | |
| int capacity; | |
| public: | |
| Array(int capacity) { |
OlderNewer