Troubleshoot ‘no display’ problem of your computer

Now troubleshoot your computer’s “no display” problem by your own

People usually call a computer technician when they found, that there is no display on their computer screen after booting, its a very serious problem and without any display you cannot operate your computer. Its a very common problem people face using computer and nowadays without computer our life seems to be impossible. Many people earning for living from their home by using computer, for them every seconds count.

Read ore on Troubleshoot ‘no display’ problem of your computer

Here is a complete guide how to troubleshoot your computer’s “no display” problem by your own without any computer hardware troubleshooting degree or any experience.

List of tools you need

1) Screwdriver set
2) Digital multimeter
3) Brush

Note : Power onn the computer

Step 1

Now the first thing you should check if the monitor’s power LED is onn or off. If You see the LED is onn then your monitor is getting power. If the power LED is off try another power cord to check, is it your monitor’s power cord needed to be change or if it still does’nt work with a new power cord then its time to change the monitor.

Tip : Check the plugin board from where the computer is getting power, may be the problem is in the switchboard and not in the computer

So If your monitor is getting power and there is still no display lets move to step 2

Check : How to create a new drive without formatting

Step 2

So now the next thing we’ll check is the VGA of the computer.Carefully remove the VGA cord from the monitor, if now you can see its displaying (No signal) or some words dancing on the screen then its seems to be the monitor’s VGA is fine.

Tip : Check with a new VGA cord to make sure the old VGA cord is working or not.

Now, that you know the monitor is not responsible for the problem, we can move a step ahead

Note : Cut power off from the computer

Now use the screwdriver to open the desktop cabinet cover with the motherboard facing upwards, so you can see all the components inside the cabinet.

Tip: Use the brush to clean the dust inside the cabinet

Step 3

Now carefully take the RAM out from the slot, rub gently the chip of the RAM with an eraser (the one we use to erase pencil marks).Now power onn the computer and check if the display is back or not (most of the time display problem occurs due to rust on the RAM chip).if there is still no display on the monitor, use the multimeter to check the voltage of RAM, if not use another SMPS.

Tip : If there is still no voltage in the RAM slot even after trying with a new SMPS, the problem can be in the RAM slot.

There is another possibility, that if the system has been upgraded recently, may be you need more powerful Ram.

By following this guide you can troubleshoot your own computer and skip paying to a technician and also you can save alot of time, even you can earn some extra cash by helping people troubleshooting their computer problem.

Private CocoaPods – Practical Advise

IntroRecently I was faced with a challenge of sharing a source code of a privately developed iOS app with a group of customers. In this app I used several helper pods which I found using the official CocoaPods search engine and also the pods which were developed privately. All privately developed pods were synchronized with a BitBucket repository and I didn’t want to give every customer access to it.

As far as I can see, there are such options that could be used in this case:

  • Distribute the source code as is and ask the customers to reconfigure the project in accordance with their own private repository;
  • Give every customer read access to my private repository
  • Copy private pods into the main project folder and use the relative references in a podfile
  • Use some other mechanism instead of CocoaPods

Read full article on on Private CocoaPods – Practical Advise

I wanted to make the process of app configuration for customers as simple as possible so I decided to avoid the first option and look for another ways which would fulfill all my requirements.
I could, of course, give every customer read access to my private repository but, obviously, this is not a very scalable and flexible solution. So after doing some research I have finally chosen the third option, i.e. distributing the private pods alongside the main source code folder and using the relative references.
I this blog post I want to describe the precise steps of private pods configuration. Also I would like to show you how to distribute the source code containing private pods which would require zero-configuration and how to associate your private pod with a private repository.Private Repos

There are a lot of articles in the internet describing the benefits of using a version control system (VCS) for your project changes management. In short words, with the help of VCS it is possible to undo all the messed-up things you’ve made in a few clicks. I would like to quote Troy Hunt here to encourage you to use VCS (in case if you don’t):

The only measure of progress is working code in source control. If it’s not in source control, it doesn’t exist.

Besides the flexibility that VCS gives you for free it also can act as a backup tool because:

  1. Every collaborator has a full-fledged project version saved on his disk (including the project’s complete history)
  2. The full project package is also stored in the center repository (which should be created in the dedicated sever)

Depending on your project type, you can choose, basically,  between two repository configurations:

  1. Private repository
  2. Public repository
Public repositories are viewed by anyone who has a computer with access to the internet. They are usually used for open-source projects, when you don’t need to control access to the source code and just want to show the world your great work and, perhaps, to draw attention of the potential collaborators.
If your application is closed-source, the private repositories would be your preferred choice. By using the private repos you can protect you code from being stolen by some bad guys. Of course, it’s possible to indicates in the license notes that the derivative works and commercial usage are not allowed. But it’s up to you to find out whether your code is used legally or not.
There are many services you can use to create either public or private repositories. Each service provider has different terms and conditions.
For example, GitHub allows you to create unlimited number of public repos, but at the same time to make it possible to create a private repo you should have a paid account.
Personally, for all my closed-source apps I’ve chosen BitBucket service. You can read more about its pricing model here. What sets it above all other solutions is that it’s completely free for small teams (up to 5 developers) and you can have unlimited number of public and private repositories.
Before continue to the next section you should have already configured the private repo containing your app’s source code using the preferred service. For example, to configure a BitBucket private repo you should follow these instructions.
Private Spec Repo
When you run the following command from the project main directory:
pod install

the CocoaPods installed on your system, first of all, scans this directory for the presence of podfile. If the podfile has been found it starts to analyze the instructions contained in this file which specify how to resolve all dependencies required by the current project.

As an example, the podfile could look like the next code snippet:

platform :ios, '8.0'
use_frameworks!

source 'https://github.com/CocoaPods/Specs.git'

def common_pods
    pod 'XCGLogger', '~> 3.3'
    pod 'SVProgressHUD', '~> 2.0'
end

target 'YOUR_PROJECT_TARGET' do
    common_pods
 
    target 'YOUR_PROJECT_TEST_TARGET' do
      inherit! :search_paths

    end
end

As you can see, in the podfile we only indicate the required libraries names and the preferred versions. This file is, basically, just a declarative way used to describe what pods do you need for your app. But CocoaPods system also needs to know the exact instructions of how to integrate these pods with the Xcode project. Podspec files include exactly these details.

By default, as depicted in the previous code snippet, the podspec files are located in the CocoaPods public Spec repository. It is specified by this line:

source 'https://github.com/CocoaPods/Specs.git'

So if your goal is to make all things to be private you should create your own private Spec repository. This can be an ordinary repository just like the one you have created in the previous section using BitBucket’s tutorial (or instructions of your preferred service provider).

Don’t push anything to the private Spec repository for now. You will use CocoaPods pod tool for this purpose in the next section.

What you should understand now is that all podspec files of your privately developed pods are hosted in your private Spec repository. And to correctly integrate private pods with your project the URL of this repo must be specified in the podfile like this:

source 'URL_TO_YOUR_PRIVATE_SPEC_REPO'

Note: You shouldn’t be worried about the source lines order unless your pods are located in both repositories. In the last case CocoaPods will use the highest version of a Pod of the first source which includes the Pod.

Add Private Spec Repo to CocoaPods

To simplify the process of adding the podspec files to you private Spec repo you should firstly add this Spec repo to CocoaPods installed on your local machine. It can be done with the help of the following command:

pod repo add REPO_NAME SOURCE_URL

As a REPO_NAME you can use any name you want (for example, this can be “my-cool-pods-spec”).

A SOURCE_URL must match the URL of the previusly configured private Spec repo.

It’s worth noting that you can always check which Spec repos you have already added by using the next command:

cd ~/.cocoapods/repos/; ls

On my test machine this command gives the output that is depicted in the following image:

The output that shows all added Spec repos names

Push Podspec Files to Private Spec Repo

Now to push the podspec files of your privately developed pods to the private Spec repo all you need to do is to run the following command:

pod repo push REPO_NAME SPEC_NAME.podspec

REPO_NAME is a name of the previously added private Spec repo  to your local CocoaPods installation.

SPEC_NAME.podspec is a podspec file of some privately developed pod.

CocoaPods will automatically run all the required validation tests (like pod spec lint) and configure the remote private Spec repo without your intrusion.

Note: I assume that you already know how to create and configure the pod libraries. I can create another blog post regarding this subject. Please, let me know in the comments whether you need it.

This is all configuration that must be done for the development stage. But if also you want to distribute the source code to your customers and to make it possible for them to run your app just by double-clicking the PROJECT_NAME.xcworkspace file (without preliminary setup), please, read the next section.

Distribute Source Code to Customers

To simplify the process of source code configuration for your customers you can follow the next advices:

  • Before distributing the source code copy all the required private pods into the main project directory. Let’s call it ‘Private Pods‘.
  • In your podfile add the relative references to each private pod used in the project. It can be done like this:
pod 'MyCoolPrivatePod', :path => './Private Pods/MyCoolPrivatePod'
Now when the customers run pod install command all required pods will be installed automatically without the need of the private repos configuration. Hence, the line with the source URL should be removed (or commented out) from your podfile as it is no longer required:

#source 'URL_TO_YOUR_PRIVATE_SPEC_REPO'

Also don’t forget about the following edge cases:

  • Do not add Pods folder to .gitignore, this way your project could be compiled out of the box without the need to run pod install
  • It’s fine to add Private Pods folder to .gitignore because every private pod should be already under the source control system
That’s it. Thanks for your time. Hope this blog post will be helpful for you.

Used Software Versions

CocoaPods: 1.0.1
Xcode: 7.3.1

DCP 120C Brother Printer and its Toner Cartridges

The DCP 120C Brother printer is an exclusive, all-in-one printer which is suitable for the users who needs to make a perfect presentation for their client. This printer is designed specifically for the office purpose. But, other than office requirement, the printer can also be used for your specific needs. They are reliable and capable of printing numerous copies whenever required. When saying about its printing capacity, the next thing that hits our mind is, what could be its printing speed? Every time while using the printer, the printing conditions are not the same. They are different in various aspect. The printing speed also varies depending on printing conditions which include computer configuration, operating system, the complexity of the document, printing frequency, software, and more.

read full article on DCP 120C Brother Printer and its Toner Cartridges

Features, Functions, and Advantages of DCP 120C Brother printer

This printer features an automatic document feeder which helps the user to scan easily and copies multiple pages. DCP 120C brother printer is a multifunction printer with straightforward handling. The printer settings can be adjusted with the help of monochrome LCD on the right with various buttons. It is suitable for both small offices and home office setting. There are many benefits of using this printer. As previously stated, it is a multifunctional printer and you can save the required desk space by placing the paper input and output features of the printer on the front of the machine. The DCP 120C brother printer produces very high-quality printouts. Some of its functions are,

  • The input paper tray can support up to 100 A4 sheets
  •  It is capable functioning as a scanner, copier, and printer
  • Uses color inkjet printer technology
  • Print up to 20 pages per minute
  •  Has digital camera media card slot to print photos.
  • Always produce professional looking documents.

 

How Customers Can Purchase Toners?

You can enjoy the crisp and clear documents with the help of DCP 120C brother printer. After some period of time, the printer will definitely consume your ink. Then you will be searching for replacing the toner cartridges. But, it may be expensive at that point of time. So it is better to search it for online as you can save more cash by ordering online. There are different cartridge models available for DCP 120C printer. Here are some of the models which are suitable for DCP 120C printer.
LC-41CL3PK: This model brother color ink cartridge can yield up to 400 pages per cartridge. You can save some amount as this model is available in multipack in many online stores instead of individual cartridges. You can receive the best performance from your printer, fax machines, and all-in-ones.
LC-41BK2PK: It is Brother black ink cartridge model which are available in 2 packs instead of individual cartridges. It can yield up to 500 pages per cartridge. You can get the best performance only from the original model
LC-41: This model brother ink cartridge is suitable for DCP 120C brother printer which is available in four colors namely black, cyan, magenta, and yellow (LC41BK, LC41C, LC41Y, LC41M). Except black, all other color models can yield up to 400 pages per cartridge. The black model yields up to 500 pages and only this black model is available in 2 packs instead of individual cartridges.

How to improve your Internet Security

In this scenario, technology plays a vital role to connect with your relatives, family members and friends. Internet security, providing various services like online shopping, banking, surfing internet and many more, is overlooked in terms of security. Attackers usually infect your computer with malicious software like virus, Trojan horse, worms, spam, spyware, adware, and scareware. By taking advantage of unsafe and unsecured computer features, hackers steal all the sensitive information and misuses for various purposes. The attacker can also change your computer configuration causing your computer to perform in an uncertain way by installing other malwares.

To eradicate the risks and threats and to improve your internet security, you can follow certain things:-

Read more on  How to improve your Internet Security

How to download android apps to your computer

Today we all have android phone,so we need various android apps.But sometime we need to download big sized game or apps.some times it difficult to download in phone.If we can download android apps in computer it will be very good news.
In today’s world almost every one has android phone or tablet computer.As an android user you need to download lot of apps for daily use like dictionary, calculator,memo,flash light,photo editor bla bla bla.And if you like playing games there is no doubt you want to download new games and want to install good graphic game,you must like the process of downloading android apps or game from google playstore to your computer and laptop.so here is the process.
At 1st go to the google play store.then in the search box you have to search your apps or game what you want to download.Then click to details,in the details page copy the URL.Then go to the google search box and search ‘APK DOWNLOADER’ in the 1st page click the top one which is evozi.com.And you will find a url submit box.Submit your copied URL and click generate.After that you will find download link.Click download.
To see the video process go to youtube

How to increase computer speed and performance

ways to increase your computer  speed

there  are many ways to boost computer speed
1. improving your hard disk

the hard disk is a vital component which can dictate your computers performance.
the hard disk should be free of any viruses which reduce the speed of the computer. a virus is a malicious sent to a computer to do malicious activities in the background. Hence there is a great need of making your computer free of any viruses. this can be done by either by formatting the computer or using antiviruses.. it is recommended that you install your computer with an antivirus. there are different antivirus software in the market today. some of the best are

  • avast
  • kapserskey
  • smardav
  •  mcafee

that is just to mention a few.. this antiviruses must be updated regularly.

make sure that your computer hard disk has more than 15% of the total capacity. if it is less than the specified you can try to buy a new hard disk or delete programs that are not being used in the computer.

2. try using speed boosting software.
3. regularly leave your computer on standby mode for your computer to scan for malicious software

Private CocoaPods – Practical Advise

Intro

Recently I was faced with a challenge of sharing a source code of a privately developed iOS app with a group of customers. In this app I used several helper pods which I found using the official CocoaPods search engine and also the pods which were developed privately. All privately developed pods were synchronized with a BitBucket repository and I didn’t want to give every customer access to it.

As far as I can see, there are such options that could be used in this case:

  • Distribute the source code as is and ask the customers to reconfigure the project in accordance with their own private repository;
  • Give every customer read access to my private repository
  • Copy private pods into the main project folder and use the relative references in a podfile
  • Use some other mechanism instead of CocoaPods

Read full article on on Private CocoaPods – Practical Advise

How To Overcome Android bootloop, Total Off and Not Want Start

How To Overcome Android bootloop, Total Off and Not Want Start- Android Smartphone bootloop, totally dead, or suddenly could not restart frequently occur and experienced Android users. This problem often create panic and despair. How to cope with the Android smartphone boot loop, or the total dead? How mengatasiAndroid bootlooppaling simple and easy is a return to “factory settings” or “Factory Reset” melaluiRecovery Mode.Buat you are not tahuFactory Reset, we need to clarify, bahwaFactory Resetadalah restore settings Android smartphone on the initial conditions, such as when you first purchased, alias settings directly from the Android pabrik.Beberapa bootloop bullet type known:

1. Android Light Bootloop
Uselly for users of Android phones, tablets during normal usage, install applications, play games, etc., but arrived -Arrived Android, Tablet you reboot or restart automatically, but when turned on again only until the logo and stop.

2. Medium Bootloop
Android users appear due to tamper with Android and go to system Recovery, which is used to unlock the system (rooting) , This includes damage category menengah.Ketiga, Android Hard Bootloop Android hard bootloopterjadi because we edit sricpt in Android. For example, Upgrading OS, usually if we intend to edit sricptnya we should be rooting Android us to get into the system admin android. Android bootloop jenisini usually has a characteristic when ignited hanyasampai logo alone, motionless lagi.Umumnya almost every problem on phone and Android tablets can be taken to help langkahFactory Reset.
However, these measures can have an impact on the loss of important data that have been previous install, so the need to reinstall. Preferably, do factory reset as a last option. if all alternative solutions have been done and have not succeeded.
If you believe, there is no solution and way to overcome android boot loop, the total dead, or can not start, then you would perform the “Factory Reset” in the following way:

How to cope with Android Bootloop

Open menu Settings >> Privacy >> Factory Data Reset

If smartphone / mobile / Android Tablet shuts it down, did not want to restart, bagaimana cara cope? .Lakukan “Factory Reset” with through prosedur Recovery Mode. Recovery Mode is, choice of solutions through menu options that can be used to repair damage Android.Tidak software on all HP / Android tablet available menu tersebut, it can use the other party created, seperti ClockwordMod Recover or xRecovery.Apa heck Recovery Mode function. If Android smartphone, Android tablet you run into problems as follows:

1. If the tablet / Android Phone can not start or stop and get a logo alone (regular disebutbootloopAndroid). It is caused by several factors, for example due to an application error, it could be because just install applications that are not compatible with the type of phone (in many cases, after menginstallfont changer) .
2.the inside case of HP / tablet / smartphone Android can be turned on, but do not want respond from users, such as touch screen Android unwilling or unable to enter the phone menu / tablet.
3.if you forget your PIN, password, or you too much experimenting draw a pattern (pattern) lock Android phones that cause you can not get into menu.
4.damage to other Android software.

How To Overcome Android bootloop, matitotal, do not want start How to perform a factory reset via the mode in quick recovery be executed in two steps

1: Go to recovery mode menu recovery mode to Android, turn off the cell phone / tablet> press and hold some Android buttons simultaneously ( eg buttons vol Up + Vol Down + power simultaneously)> then enter into dalamrecovery mode.

Caution: How to enter recovery mode (the button that must be pressed) can vary from one type to the another type .screen Recovery mode only in the form teks only. In menurecovery mode, normally you can not menggunakantouch screen, or not functioning. For the purposes of navigation up and down, you can use the volume buttons (depending tipehandphone Android) .

2: Perform Wipe Data / Factory ResetSetelah currently on menurecovery mode, choose the feature “Wipe Data / Factory Reset”
3. restart your handphone.

For your convenience, here we give examples of how melakukanfactory reset on Android phone Samsung Galaxy Young:
1. still enough battery power (minimum 70%)
2. Turn off handphone
3.press simultaneously and hold Volume Up + HOME + Power some seconds> then enter into menu recovery Android
4.use mode Volume buttons , point the cursor to be in writing “Factory reset / wipe data
” 5. Press the HOME button to start the process> wait a moment, and please be patient when you are experiencing boot process berlangsung
6.Reboot phone if loop on the mobile phone / Android tablet, so if you forget akanpasswordatau Android phone lock pattern, you need to do go to into recovery mode> do a Factory Reset / Wipe data. To enter into menu Recovery Mode can only be done on the condition of the phone off (off) On masalahHP Android bootloop, if factory resetternyata can not solve the problem boot loop or Android still can not enter the menu, then the solution is usually done in a way to flash firmware , atauinstallulang mobile operating system) . explanation tentangcara overtime bootloop android, the total dead, and will not start, may help solve the problem you are facing.

How To Create A Yahoo! Email Address for Free

Hello guys, in my last post I shared with you a simple guide on how to create a Google Gmail account easily. So today, am going to show you the exact easy way to open a Yahoo! Email address for free.

Let’s get started…

STEP 1:

Follow this link to go to the yahoo email registration page like the one in the picture below and fill in your First name, last name and the username you will like to use as your new email address.

Now type your password in the next box that is labelled “password” then move to the next box and select your country form the dropdown lists of countries and your country dialling code will be added automatically for you. Type your phone number in the box that is labelled “mobile phone number” and move to the next box where you will need to select your Birth month, Day and year.

Next is your gender. Select your gender by clicking the “gender (optional)”.  Click “Continue” after reviewing your information to proceed to the next step.

Up next is your phone number verification. Check your phone number to be sure you have not made any mistake while typing the number and hit “Text me an account key”. You will receive a message containing your verification key like the one below.

Now type the account key you received from the SMS in the next page like the one in the picture below and hit “Verify” to verify your account.

Congratulations! Now you have a brand new yahoo email address up and running. Now you can send and receive emails from anywhere, anytime. click the let’s get started button to view your new email address

Don’t forget to leave a comment below to let us know if this worked for you or simply share with your friends on social media below.

How to Change Location Map GPS Pokemon GO (Fake GPS Tutorial Full)

Tutorial Fake GPS Pokemon GO is changing the location of the GPS map so that we do not need to bother – hard running to look for Pokemon. We just need to sit quietly until it finds a Pokemon appears. But to do that you need to follow the tutorial below. Immediately, see reviews below for more details.


How to Change Location Map GPS Pokemon GO, Tutorial Fake GPS

  1. Download first the necessary ingredients, namely  Lucky PatcherFake GPS Location spoofer  and Disable Service  and also make sure that the phone is in ROOT first
  2. Then Install  Lucky Patcher  and run  Lucky Patcher  Android.
  3. Tap on the menu  Rebuild & Install  in the bottom right corner
  4. Now find the app  Fake GPS  have you downloaded earlier and install as a system app by selecting “Install as System App
  5. Run the application Fake GPS. Go to Settings and check the option ” Expert Mode
  6. Now find the location you want to search for Pokemon using the search feature in the app Fake GPS.Choose a New York because there certainly will be many Pokestop. Once completed, tap on the icon Play  in the lower right corner.
  7. Now we have to turn off the GPS feature on our android. The trick, install the  Disable Service  have you downloaded earlier.
  8. Run  Disble Service  and move to the menu tab  System . Search for ” Fused Location ” and uncheck all. Then look again ” LocationServices ” and uncheck all who were there.
  9. Once this is done,  reboot  your Android phone.
  10. Now, before opening the GO Pokemon first you must open the app Fake GPS and click the  Play Maps . Then to make the gps can keep moving you should activate the “Move Around fake Location” in the Settings menu.
This method can be used for you who do not want to leave the house but still search for Pokemon in Pokemon GO  and be more saving time and labor. Okay, so the article on  How to Change Location Map GPS in Pokemon GO (Fake GPS)  this. So much from me, thank you.