Categories
Linux system

How to install WordPress

Reading Time: < 1 minute

How to install WordPress
Dear visitors, we welcome you today. We will offer you WordPress installation on your servers that are running Linux **
To start with, we will install the Vista Control Panel. You can visit the topic previously from the following link
how-to-install-vestacp
Then we start our topic for today
1 We are going to login to our server using SSH
Then We will coppy the following command
wget https://wordpress.org/latest.zip
Then we will decompress the file with this command
unzip latest.zip
Here we will transfer all the contents of the wordpress-5.4.2 file to the site path
/ home / admin / web / site name / public_html
Then we will create a database for the site using Vista
We’ll explain how to make a database later
We continue to explain.
We will go to the site and they will ask us for database information, here you must put the information correctly and bless you new site

Categories
Programming lessons

Download the Killer Game Source code

Reading Time: < 1 minute

The killer game is one of the most beautiful games that the blind love. We have modified this version to be distinguished from others.
How to run a server on a local host
To start with, you should install a copy of bgt and after downloading we will unzip the game file.
Second we have to go to the includes folder and then We will open the net.bgt file by editing it with bgt.
How to edit, we have to make sure to copy all codes witch we will put them in later correctly and then we will delete the first 3 lines and then We will replace them with the following codes
string netaddress = “localhost”;
int netport = 4456;

We will save the file to ensure that the previous lines are copied correctly.
To run the server, we must exit from the includes file and go to the server only. Here, we will search for the server.bgt file and we will open it. in this way, we had run the server, you can play normally.
happy koding
Download e the Killer Game Sourc code from here

Categories
Blind games

#Eid gifts# Download BlindSide game for free

Reading Time: < 1 minute

A game by Aaron Rasmussen and Michael T. Astolfi
What if the things in the night didn’t just go bump? BlindSide is a terrifying new audio-only adventure game, set in a fully-immersive 3D world you’ll never see. Put on your headphones, close your eyes, and explore the darkness. Listen as the world rotates around you!
You play as Case, an assistant professor who wakes up blind, to find his city destroyed and mysterious creatures devouring people. Will you and your girlfriend be able to find your way without sight? How will you escape? Run for your life, navigate the darkness, and uncover the mystery of the apocalypse–all in the dark!
BlindSide was inspired by co-creator Aaron Rasmussen’s temporary blindness as a result of an explosion in high school chemistry.
“Talking of brilliant, this is an absolutely exceptional project” – RockPaperShotgun.com
Please knowt the version in your hands for the Windows system
This game is no longer in the IOS app store
Download BlindSide from here

Categories
news

What happened to our website?

Reading Time: < 1 minute

What happened to our website?
Dear visitor, We noticed the closure of the site from yesterday at 6:00 pm to this evening,, due to the routine maintenance of the site and all our hosts of games, and we wish you to visit the site continuously
#Blessed eid#

Categories
Programming lessons

What is the dyCalendarJS?

Reading Time: 4 minutes

What is the dyCalendarJS?
dyCalendarJS is a JavaScript library for creating Calendar that can be include in any blog or
website. In few simple steps, you will be able to develop a nice and accessible calendar for your
blog or website. So, stay tune and continue reading!
Step 1:
Import the stylesheet
Import the stylesheet “dycalendar.css” or the minified version “dycalendar.min.css” in the file
where you want to use the calendar.
Example : OR Step 2
Import the JS file
Next, you have to import the JS file in the file where you want to use the calendar. There are two
types of JS file available. One is the plain JavaScript version dycalendar.min.js and the other one
uses jQuery dycalendar-jquery.min.js.
Using plain JavaScript version:
To use the plain JavaScript version, import dycalendar.js file using the script tag in the file where
you want to use the calendar. (Preferred: At the end of the body tag.) like the following:
To use the minified version, import dycalender.min.js file like the following :

Using the jQuery version:
In order to use the jQuery version of dyCalendarJS you have to first include the jQuery file and
then dycalendar-jquery.min.js file.
Using the unminified version :

Using the minified version:

Step 3 :
Creating a calendar
First we have to create a

container which will hold the calendar.
Example :

Today calendar (default skin)

Note! the div having id=”dycalendar-today” has a class dycalendar-container. This is the container
for the dyCalendar and a calendar will be drawn inside this div. We also can add the class that
satisfy the skin and shadow for the calendar. We will cover that in later steps.
Step 4 :
Draw the calendar
To create a calendar use the draw() method of dycalendar. The draw method takes an object
consisting of configurations for the calendar. We have to create an object in the tags of the file where our calendar will be. To actually draw the calendar according to
our wish, we have to pass all the necessary and optional parameters when we create an object. The
example below show you how to do it.
In the following example we will create a “Day-Calendar” by setting up the following
configuration.
dycalendar.draw({
target : “dycalendar-today”
});
To create the month view calendar, we have to set the type configuration to month when we create
the object like the following example.
dycalendar.draw({
target : “dycalendar-today”,
type : “month”
});
Please note that the type configuration have the default value. If we don’t set the type
configuration, the default value is “day” which will create a day view calendar. There are several
parameters that you have to pass when you create an object. The table below show list of the
parameters that you can pass when create your object.
Following are the list of parameters that can be passed :Name Type Default
value
Description Example
target
(mandatory)
String Nun Hold the id of the container
where the calendar will be
drawn.
“#sample-calendar”
(Use the # symbol
for id).
type
(optional)
String “day” Type of the calendar being
created.
Possible values: “day”,
“month”
Type : “month”
month
(optional)
Integer Current
month
If set, will look for the
specified month. Possible
values:
0 = January
1 = February
11 = December
Month : 0
year
(optional)
Integer Current
year
If set, will look for the
specified year.
Year : 1990
Year : 1900 to 9999
date
(optional)
Integer Current
date
If set, will look for the
specified date. Possible
values: 1-31
Date : 21
monthformat
(optional)
String “full” Whether to display the full
name of the month or in
short form. Possible values:
“mmm” = short form
“full” = complete name
If monthformat =
“full” then output is
“October”.
If monthformat =
“mmm” then output
is “Oct”.
dayformat
(optional)
String “full” Whether to display the full
name of the day or in short
form. Possible values:
“ddd” = short form
“full” = complete name
If dayformat = “full”
then output is
“Sunday”.
If dayformat = “ddd”
then output is “Sun”.
highlighttoday
(optional)
Boolean False If set to true will highlight
the today’s date. Possible
values:
True, false
highlighttoday : true
highlighttargetdate
(optional)
Boolean False If set to true will highlight
the specified date.
Possible values:
True, false
highlighttargetdate :
true
prevnextbutton
(optional)
String “hide” If set to “show” will show
the prev and next symbol
and allow the user to move
to previous and next month
and jump back to the
current month. Possible
values: “show”, “hide”
Prevnextbutton :
“show”Step 5 :
Use the CSS to style the calendar
Round Edge
To create round edge calendar use the class .round-edge.
Example :

Following are the list of available round-edge options. :
Name Class
Default .round-edge
Skin
After we have the container div we can apply different skins by putting the class .skin-{name}.
Example :

Following are the list of available skins options.
Name Class
Black .skin-black
Blue .skin-blue
Green .skin-green
Purple .skin-purple
Red .skin-red
Spacegray .skin-spacegraySkin Gradient
After applying different skins we can add the class .gradient to create background color gradient.
Example :

Following are the list of available skins options.
Name Class
Default .gradient
Black .skin-black .gradient
Blue .skin-blue .gradient
Green .skin-green .gradient
Purple .skin-purple .gradient
Red .skin-red .gradient
Spacegray .skin-spacegray .gradient
Shadow
We can add shadow to the calendar using the class .shadow-{option}.
Example :

Following are the list of available shadow options.
Name Class
Default .shadow-default
Black .shadow-black
Blue .shadow-blue
Green .shadow-green
Purple .shadow-purple
Red .shadow-red
Spacegray .shadow-spacegrayThanks for read this documentation and thanks for using this program. If you have any question, feel
free to contact me or the original developer of this program, Mr. Yusuf Shakeel by sending an E-mail
message to contactus@dyclassroom.com contactus@dyclassroom.com or visit his website at https://www.dyclassroom.com/. If you
wish to read the original documentation of this program, feel free to visit this page.
Please keep in mind that this is an open source project. So, feel free to use it in whatever way you like
and feel free to modified it according to your needs if you wish to do so.
Good luck and happy coding!

Download dycalendarjs-1.1.1 from blindhelp.net
visit blindhelp from here!

Categories
Programming lessons

Script to convert bgt to Python Codes

Reading Time: < 1 minute

Imagine you made a game in BGT programming language, and you thought you’d have a question.
What if I convert this project to Python programming language?
Is that impossible?
After I found this script, I answered this question that it is not impossible, and it is beautiful and it does a great job.
How does this script work?
1 Download the Script .
2 paste this Script in the project folder.
3 Open it
it will ask you for the address of the file
Here, paste the file path and click enter.
And you will find that there are two files from this project.
let’s take an example.
We converted the master.bgt file
Another file, named master.py will appear.
And that’s where our explanation of this script ends.
Download the Script from here.
We wish you dear visitor to put your opinion about this Script on comments

Categories
Programming lessons

A Simple html code to welcome visitors to your website

Reading Time: < 1 minute

Welcome to this new post which we will put this code that welcomes your website visitors according to time.
What’s the point of it?
Honestly, I liked the category of these codes because they beautify the site so much, that’s why I designed this model to put it on top of the blog.
Code
Please copy the code correctly and place it in position without modification.
  
var welcome;  
var date = new Date();  
var hour = date.getHours();  
var minute = date.getMinutes();  
var second = date.getSeconds();  
if (minute < 10) {   minute = "0" + minute;   }   if (second < 10) {   second = "0" + second;   }   if (hour < 12) {   welcome = "good morning";   18. } else if (hour < 17) {   welcome = "good afternoon";   } else {   welcome = "good evening";   }   document.write("

” + “” + welcome + “” + ” welcome to our website”);  
document.write(“
” + hour + “:” + minute + “:” + second);  
  
  

Categories
Blind games

Why are we developing games that aren’t ours?

Reading Time: < 1 minute

In the beginning we would like to clarify something we did not make these games from the beginning like the game the killer or war cry, but we are only developing on it to be more fun and we do not attribute them to us knowing that these games published a lot these days all the blind became able to get them and this means that the owner of these games has published his own project or has leaked a mistake We’re just developing of it, and we didn’t attribute it to us as perfectionists, but all the laws in these games have become our right because we are the owners of the server that hosts it, and that’s why we hope you evaluate our work according to your point of view.

Categories
Programming lessons

get who-will-win-the-million-java

Reading Time: < 1 minute

Welcome to this new explanation, which we will be showing you a nice game
About the game.
The name of the game.
who will win the million
Game programming language, Java
How to use.
First, download the Java program
get java from here.
Second, decompress the game using 7zip
After that you will find several files from it.
nbproject
src
test
build.xml
manifest.mf
What concerns us here is the src file, and here this file contains the game
To run the game
Open the file and here the game interface will appear
get game-src from here.
Note, this project is not owned by our team, but we would love to publish it for the benefit

Categories
computer programs

How to Install VestaCP on Debian 9

Reading Time: < 1 minute

Vesta control panel (often abbreviated as VestaCP) is an open source hosting control panel, allowing the user to manage websites, create email accounts, manage email accounts, manage FTP accounts, and more. During this guide, we will install VestaCP on Debian 9, which is a freely provided operating system designed to be similar to Unix systems and is a popular system used with cloud and dedicated server instances.
Getting Started
To get started installing VestaCP on Debian 9, you will need a node running Debian 9; you can choose to use a cloud server or dedicated server to host your node. Your node should be running the most up-to-date version of Debian 9.
Time to Install VestaCP on Debian 9
Now that you’ve selected your cloud or dedicated server, you’ve verified your node is running Debian 9, and you’ve confirmed Debian 9 is running the current software version, you’re ready to begin.
The first step is getting a Debian 9 minimal install on a virtual private server (VPS) or dedicated server.
Then it’s time to run the update for Debian 9 and reboot your node:
apt update && apt upgrade -y && reboot
Once the update is complete, you can download the VestaCP installation script:
curl -O http://vestacp.com/pub/vst-install.sh
After downloading the installation script, you can run it on your node:
bash vst-install.sh
If you need to customize your VestaCP installation, you can do so at https://vestacp.com/install/.
While running the installation script, you will be prompted to fill in the following questions with the appropriate answer:
Would you like to continue [y/n]: y
Please enter admin email address: your_email@email.com
Please enter FQDN hostname [vestacp]: server.example.com
The installation of VestaCP may take up to 15 minutes to complete.
Once the installation script completes, you may receive the following notification:

done

 
Live Chat

Hi, Your satisfaction is our top priority, we are ready to answer your questions...