Skip to content

Instantly share code, notes, and snippets.

View BhoiDanny's full-sized avatar

Cypherios BhoiDanny

View GitHub Profile
@BhoiDanny
BhoiDanny / spotify.md
Created May 5, 2023 02:51 — forked from Davoleo/spotify.md
An in-depth guide on modding Spotify with updated methods to remove ads, bypass country restrictions and theme the application

Spotify Tricks

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

Disabling Ads

Desktop (Windows)

@BhoiDanny
BhoiDanny / spotify.md
Created May 5, 2023 02:51 — forked from Davoleo/spotify.md
An in-depth guide on modding Spotify with updated methods to remove ads, bypass country restrictions and theme the application

Spotify Tricks

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

Disabling Ads

Desktop (Windows)

@BhoiDanny
BhoiDanny / box.html
Created May 18, 2023 05:14
write the html code with internal css rule to generate the box with blue borders which are 5px in width and has a padding of 6px, the box should have an image inserted
<!DOCTYPE html>
<html>
<head>
<title>Blue Box with Image</title>
<style>
.blue-box {
border: 5px solid blue;
padding: 6px;
display: inline-block;
@BhoiDanny
BhoiDanny / style.css
Created May 18, 2023 05:22
Timetable with external css
.timetable {
border-collapse: collapse;
border: 3px solid black;
}
td,th {
border: 1px solid black;
text-align: center;
padding: 15px;
}
@BhoiDanny
BhoiDanny / form.html
Created May 18, 2023 05:42
MY FIRST HTML PAGE ON TABLES AND FORMS
<!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;
@BhoiDanny
BhoiDanny / form-double.html
Created May 18, 2023 05:46
Use html form tags and controls to generate the output
<!DOCTYPE html>
<html lang="en">
<head>
<title>@Grace</title>
</head>
<body>
<form>
<fieldset>
<legend>Your Details</legend>
@BhoiDanny
BhoiDanny / index.html
Last active May 20, 2023 07:04
Write a html and javascript code to create a form and perform validation on for the figure below. This form has four input fields: name, email, password, and confirmPassword, the validateForm() function is called when the form is submitted, and it checks if all the fields are filled out correctly. if a field is not filled out correctly , an aler…
<!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;
@BhoiDanny
BhoiDanny / elements.cpp
Created August 15, 2023 13:12
C++ program with an array of 200 elements of integer datatype
#include <iostream>
using namespace std;
int main() {
int arr {200};
//declaring arrays to keep elements
int elements[arr];
int ltelems[arr];
@BhoiDanny
BhoiDanny / maxval.cpp
Created August 15, 2023 13:22
program that defines a function Maximum to determine the maximum value in an array of 10 values
#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
@BhoiDanny
BhoiDanny / algorithmn.cpp
Created August 15, 2023 13:34
Data structures & Algorithm
#include <iostream>
class Array {
private:
int *arr;
int size;
int capacity;
public:
Array(int capacity) {