Skip to main content

Posts

Showing posts from December, 2019

PS3 - Rayman Legends – RPCS3 Settings

Hi GuyZ, Today, I am going to show you, how to play PS3 games on PC using the RPCS3 Emulator. It is very easy to set up and play PS3 Games. Prerequisites: RPCS3 Emulator PS3 Update File Microsoft Visual C++ 2019 Redistributable PS3 .pkg and Rap File Important Tip : Before downloading any game make sure it comes under the playable section of rpcs3 compatibility. To check which game you can play using RPCS3 click HERE. Games that are showing in the Playable Section are actually the games that are in running state and can be played using RPCS3 Emulator. After downloading everything 1. Extract RPCS3 File. 2. Open the folder and double click on rpcs3 icon. 3. Go to File -> Install Firmware and select the PS3 Update file. 4. Once the installation gets completed. 5. Go to File -> Install .pkg and select the .pkg file and press Open. 6. Once installation is done. 7. Copy your .rap file in dev_hdd0 -> home – > 00000001 -> exdata folder. 8. In your RPCS3 Emulator right click on...

PS3 - Dragon Ball Z Battle Of Z - RPCS3 Setting

Hi GuyZ, Today, I am going to show you, how to play PS3 games on PC using the RPCS3 Emulator. It is very easy to set up and play PS3 Games. I got to know about this emulator some time ago and I thought I should give it a try . Initially I was not sure that whether it would work or not. But at last, it worked. I found it very easy to set up and play PS3 games . Although this emulator is still in the development stage so you may encounter some errors. I haven’t got any errors. In this tutorial, I am using the PS3 PKG file. This emulator also supports dumping ps3 disc and ISO Images. Prerequisites: RPCS3 Emulator PS3 Update File Microsoft Visual C++ 2019 Redistributable PS3 .pkg and Rap File Important Tip Before downloading any game make sure it comes under the playable section of rpcs3 compatibility. To check which game you can play using RPCS3 click HERE. Games that are showing in the Playable Section are actually the games that are in running state and can be played using RPCS3 E...

Devops - Docker Compose Part 1

1. version –   Version is the first attribute which your specify in your docker compose file. At the time of writing this post the latest version was 3.7 and which was introduced with docker engine  18.06.0+ version. If you will not specify the version you will probably get the error when you will try to run docker-compose up.   Example – version: ‘3.7’ 2. services  – This is the second attribute which we specify after version in our docker-compose.yaml file. It is also a mandatory attribute otherwise you will encounter an error. Under services attribute we specify our docker containers . You can specify any no. of docker containers inside this.  3. Service Name  – As we discussed under services attribute we specify our services name. For example myql: followed by colon(mandatory). Then inside our service we further add our different service attributes like container_name, networks, depends_on, volumes etc.  E...

Block any website without using any software.

Hi Guys, Today in this article Block any website without using any software.  I am going to discuss about the ways by which we can any website. This trick does not require any third party software to be installed on your system as well as you don’t need any programming skill to do this. All you need the is the text editor like notepad, wordpad, notepad++ etc. Are you trying to block a website on your PC? You need not to setup firewall filters to do this. Here is a simple trick to block the site on your system. First of all I need to describe about the “Hosts” file It is a file located in C:\WINDOWS\system32\drivers\etc  and it contains information about the hosts on your system… Here are the steps 1. Go to the location C:\WINDOWS\system32\drivers\etc 2. You will find a file by name “hosts” with no extension. 3. Open that file in “Notepad” 4. Go to the bottom of the page where you could find the following line “127.0.0.1 localhost...

Who Used Your Pc In Your Absence

Hi , In this article i will discuss about how we can find out who turned on our computer when your are not at home. STEPS: Go to  -> start > run >eventvwr.msc Press Enter Window will be opened and then click expand Windows Logs Windows Events are stored in three log files Application Security System. Click on “ System ” in the left-hand column for a list of events. Look for a date and time when you weren’t home and your computer should have been off. double click on the info and it will show you the detail. You can also use this log to see how long someone was on the computer. Just look at the time the computer was turned on and off for that day.

How to Choose the Best Computer Memory

This article helps you choose the best computer memory (RAM) for your gaming computer. RAM (Random Access Memory) is the memory in a computer used to store running programs. The more RAM you have, the faster your games and other programs will run.Investing in a decent amount of RAM from a trusted company is a smart idea. The performance of your gaming computer will be greatly affected by the type and amount of RAM you have on-board. Firstly, let’s take a look at the different types of RAM available to you. Types of RAM There are different types of RAM you can buy for your computer, such as SDRAM, DDR2 RAM, and DDR3 RAM. The memory type you select will depend on which type is supported by your motherboard. * SDRAM –  This is an older form of memory that was superseded by DDR SDRAM. These days it has been taken over by better and faster forms of memory, so you won’t need to worry about this type of RAM. * DDR2 RAM – DDR (Double Data Rate 2) RAM is very fast, and h...

Automation - Update Naukri Profile Using Selenium

Recently one of my friend came to me with a problem. He is looking out for new job but he feels quite boring to update  his profile on daily basis. As some people says updating profile in the morning gives you more calls as it keeps the newly updated profile on top (Although i don’t know whether naukri works this way or not 😀 ). As i was more interested to solve his problem.  After listening his problem i came to solution that instead of updating it manually lets make this job automatic. And it is quite interesting how we can automate our daily boring task with automation. Another day i came with the solution . And the solution was to make it automatic using selenium (Those who are not aware about selenium do check this link) In short, Selenium is a Testing automation Framework. And it is for automating web applications for testing purposes, but is certainly not limited to just that. Boring web-based administration tasks can (and should) also be automated as well....