Showing posts with label can. Show all posts
Showing posts with label can. Show all posts

Tuesday, April 18, 2017

How can I capture a video of my screen in fedora

How can I capture a video of my screen in fedora


Use VLC Player

How to install vlc?
from a terminal
su -c yum -y install vlc
How to make a screencast using Vlc?


Select OPEN MEDIA
Select CAPTURE DEVICE tab
Change capture mode to DESKTOP
Change Options to 25 f/s
Choose CONVERT option instead of play option
In the Convert window add the destination file via the BROWSE
button then name the file TEST.MPG (VLC does require the extension so the file becomes TEST.MPG rather than just TEST)
Change the PROFILE to VIDEO - H.264 + AAC (TS)
Click the setting button and change the VIDEO CODEC options to:
BITRATE 1200kb/s
FRAME RATE 25.00 fps
Click SAVE
Choose the DEINTERLACE option
Click START


Available link for download

Read more »

Sunday, April 9, 2017

Hackers reveals Secret of iphone 4s Siri Can Control Your Car via Voice Command !

Hackers reveals Secret of iphone 4s Siri Can Control Your Car via Voice Command !



The most Amazing phone Iphone 4S (Siri)  
can Control your car via Voice Command 

An iOS hacker demonstrate how can an iPhone 4S control a car by just using a voice command. according to the latest hacking,  users can control the car which depicts the capabilities of SIRI. You can see in this video how an Siri user start and stop a car by a voice command connected from its iPhone. He sent a command to a viper server then relayed via cellular connection to the car. The car then broadcast an update via RF to the key chain remote.








Available link for download

Read more »

Saturday, April 8, 2017

How can I add more CentOS repositories

How can I add more CentOS repositories


After installing CentOS, your system has only a few repositories, therefore offering a limited range of applications. It is possible and easy to add more repositories that are unofficial but trusted by the community. By doing so, you will access a wide range or applications for your CentOS system.
You have two ways to add more Centos repositories:
  • Drop .repo files into your /etc/yum.repos.d/ directory
  • Add a repository entry in your /etc/yum.conf file
In this example, we will use yum.conf only, for more consistency.

Adding official CentOS repositories

Here is the list of official repository entries that you can add to your /etc/yum.conf file:
[base]
name=CentOS-$releasever - Base
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os
#baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4
enabled=1
#released updates
[update]
name=CentOS-$releasever - Updates
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates
#baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4
enabled=1
#packages used/produced in the build but not released
[addons]
name=CentOS-$releasever - Addons
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=addons
#baseurl=http://mirror.centos.org/centos/$releasever/addons/$basearch/
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4
enabled=1
#additional packages that may be useful
[extras]
name=CentOS-$releasever - Extras
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras
#baseurl=http://mirror.centos.org/centos/$releasever/extras/$basearch/
gpgcheck=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4
enabled=1
#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus
#baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/
gpgcheck=1
enabled=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4
#contrib - packages by Centos Users
[contrib]
name=CentOS-$releasever - Contrib
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=contrib
#baseurl=http://mirror.centos.org/centos/$releasever/contrib/$basearch/
gpgcheck=1
enabled=1
gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4

Additional third-party CentOS repositories

The following repositories dont belong to the CentOS project but are trustworthy and provide additional software:
[dries]
name=Extra Fedora rpms dries - $releasever - $basearch
baseurl=http://ftp.belnet.be/packages/dries.ulyssis.org/redhat/el4/en/i386/dries/RPMS
gpgcheck=1
enabled=1
[dag]
name=Dag RPM Repository for Red Hat Enterprise Linux
baseurl=http://apt.sw.be/redhat/el$releasever/en/$basearch/dag
gpgcheck=1
enabled=1
[kbs-CentOS-Extras]
name=CentOS.Karan.Org-EL$releasever - Stable
gpgcheck=1
gpgkey=http://centos.karan.org/RPM-GPG-KEY-karan.org.txt
enabled=1
baseurl=http://centos.karan.org/el$releasever/extras/stable/$basearch/RPMS/
[kbs-CentOS-Misc]
name=CentOS.Karan.Org-EL$releasever - Stable
gpgkey=http://centos.karan.org/RPM-GPG-KEY-karan.org.txt
gpgcheck=1
enabled=1
baseurl=http://centos.karan.org/el$releasever/misc/stable/$basearch/RPMS/
[kbs-CentOS-Misc-Testing]
name=CentOS.Karan.Org-EL$releasever - Testing
gpgkey=http://centos.karan.org/RPM-GPG-KEY-karan.org.txt
gpgcheck=1
enabled=1
baseurl=http://centos.karan.org/el$releasever/misc/testing/i386/RPMS/
[atrpms]
name=Fedora Core $releasever - $basearch - ATrpms
baseurl=http://dl.atrpms.net/fc$releasever-$basearch/atrpms/stable
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms
gpgcheck=1enabled=1
To use the above repositories, you need to add their GPG key for authentication:
$ su -
# rpm --import http://centos.karan.org/RPM-GPG-KEY-karan.org.txt
# rpm --import http://dries.ulyssis.org/rpm/RPM-GPG-KEY.dries.txt
# rpm --import http://dag.wieers.com/packages/RPM-GPG-KEY.dag.txt
# rpm --import http://ATrpms.net/RPM-GPG-KEY.atrpms
With all these repositories, you should be able to find most applications you need.


Available link for download

Read more »

Friday, March 31, 2017

How Can I Improve My Web Sites Search Results Ranking

How Can I Improve My Web Sites Search Results Ranking


Tonight my friend contacted me and asked how she could get her stores new website to show up in search results.  While I dont claim to be an expert I do have a little experience with web sites, ecommerce, blogging and SEO (search engine optimization).  Heres a list of what I told her just shooting from the hip.

I told her its definitely a multi-faceted approach.  First, her site looks good, is easy to navigate and has relevant information.  Without a decent place to start none of the rest of this will matter.

  1. Start with a good site with good, relevant content.
  2. Be patient. It takes time to rise to the top, or even to rise at all.
  3. Get visitors. The more traffic your site gets naturally (sometimes called type-in traffic) the better it will rank in search results. Give the URL to all your customers. Print it on their receipt, on the merchandise bags, put a flyer in their bag. Put your sites address up in your stores. Outside the stores. Basically anywhere you can. Get your existing customers to go to the site.
  4. Add content (merchandise and info) to your site often as possible.  Keep the site fresh. Use the island names (or your location) in product descriptions if/when possible. Basically you want the search words people would use to find what you offer throughout your site as much as possible.
  5. Have your own blog and use it to make announcements about new products, etc.  This helps fulfill the previous suggestion. And post to it regularly. Again using key words.  And make sure it links back to your store.
  6. Inbound links are invaluable, particularly from higher traffic sites. Post the link on facebook, twitter or anywhere you can. Try to get written up and linked in your local paper, citysearch, kudzu, places like that. Trade links with other sites where it makes sense, etc. Inbound links are the holy grail of high-ranking search results, and ultimately more site traffic.
  7. Work your networks, get people going there, linking to it etc.
  8. Use site analytics.  Make sure to enable some kind of site analytics (either from your hosting provider or Google Analytics or other) so you can monitor activity to your site over time; and track key words people used to find your site; and where they came from (search engines, inbound links, etc.).
  9. While its harder and harder these days to get good domain names it really helps if the site name is something that makes sense, is easy to remember.  It is also really important for it to match the name of your business.
Again, be patient.  It takes time to build traffic, especially search traffic and to get ranked higher in search results. While no one knows exactly the algorithms that Google and other search engines use it is no doubt a combination of the things listed above (and certainly more).  Build your traffic organically using the customers already interacting with you.  Make sure your site is easy to navigate, looks good and has lots of content, particularly the key words you believe people might use to find products or services you offer.

If youre ever in the Charleston, SC area go to Islands Mercantile on both Seabrook and Kiawah islands for some great T-shirts, hats and other souvenirs.


Available link for download

Read more »

Saturday, February 11, 2017

How Can I Check How Fast My Internet Is

How Can I Check How Fast My Internet Is


Pictures of How Can I Check How Fast My Internet Is

Belkin Wireless Cable/DSL Gateway Router
Knowing your Belkin Router . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4-5 you can check to see if they Internet. My connection type is Dynamic IP Address. I cannot connect to the ... Fetch Content

Pictures of How Can I Check How Fast My Internet Is

HOW TO COLLECT YOUR MONEY AFTER YOU WIN YOUR CASE
The Small Claims Advisor can answer your questions about your case and assist with your forms. For the Small Claims Advisor’s Onsite Schedule, please contact your local courthouse or click here. For the Small Claims Workshop Calendar click here. ... Fetch Full Source

How Can I Check How Fast My Internet Is Images

How Do I… Get Proof Of My U.S. Citizenship
My birth certificate? Check with the Department of Health (Vital Records) Can I apply to have my citizenship recognized? On the Internet at: www.uscis.gov . For more copies of this guide, ... Access Doc

Pictures of How Can I Check How Fast My Internet Is

Help! My Parents Are Millennials
They’ve shaped the culture of always being on. Now millennials have a new focus: their children ... Read News

Photos of How Can I Check How Fast My Internet Is

An Internet-performance Comparison Of Three Smart TVs
With the Sony Internet TV was nearly twice as fast as on the Samsung 8000 and nearly 1.5 times as fast as on 16. In the Step 7 of 7 Set up AV Receiver control screen, highlight No, I use my TV speakers, and select When you get a warning screen asking to check the antenna connection ... Access Full Source

Images of How Can I Check How Fast My Internet Is

Identity Theft And Your Social Security Number
Dishonest person who has your Social Security number can use it to get other personal information about you. Identity complaint with the Internet Crime . Complaint Center (IC3) at www.ic3.gov. The IC3 gives victims of cybercrime . ... Get Doc

Pictures of How Can I Check How Fast My Internet Is

AIRAVE™ Frequently Asked Questions - Sprint
Sprint AIRAVE requires broadband Internet connectivity via DSL, cable, FT1, T1 or Under what circumstances should I restrict my Sprint AIRAVE? Although you can limit access to your AIRAVE by calling Sprint Customer Service at check if the area you are traveling to supports AIRAVE, ... Access Content

Free House Cleaning Images For Business Cards
Wednesday, February 20, 2013. Free House Cleaning Images For Business Cards ... View Video

How Can I Check How Fast My Internet Is

Your Social Security Number And Card
You also can check your earnings record . on your . Social Security Statement. The . Statement. is available online to workers How can I protect my Social Security number? You should treat your Social Security . number as confidential information and avoid giving it out unnecessarily. ... Document Viewer

Pictures of How Can I Check How Fast My Internet Is

Speed Up Everything - PC World
12 Speed up Windows by Stripping it down You can’t tell a gigabit network port from a fast ethernet port just by looking at it. instead, You can check the performance potential of your motherboard’s network connection in just ... Access Full Source

Images of How Can I Check How Fast My Internet Is

AT&T VoiceMail UserGuide
Plus, you can check your calendar at the same time you are checking your other messages. • Does my AT&T VoiceMail box filter SPAM? Q: instead of a court by a judge or through a class action. ... Fetch Here

How Can I Check How Fast My Internet Is


For a payroll card. Where can I use my internet purchases – millions of locations How can I receive cash using my card? You can withdraw your money at any ATM that accepts MasterCard, or by visiting a MasterCard member bank and requesting a bank teller withdrawal. How can I check my card ... Get Content Here

Online Study: Read Online Study Books
Read Online Study Books International Business: Top Books International Business ... Read Article

How Can I Check How Fast My Internet Is

IRS: Show Internet Explorer Address Bar
And then clearing or checking the check mark for the Address bar. Where's My Refund? - Microsoft Internet Explorer Home Contact IRS About IRS Site Mao Español Help SEARCH TAX PROFESSIONALS RETIREMENT PLANS COMMUNITY TAX EXEMPT BOND COMMUNITY o ... Document Retrieval

Annuity
Alice Thaties http://www.blogger.com/profile/07838786552077084439 noreply@blogger.com Blogger 4993 1 25 tag:blogger.com,1999:blog-9113246954808132891.post-4267957276753804694 2014-12-31T08:57:00.000-08:00 2014-12-31T08:57:00.202-08:00 ... View Video

How Can I Check How Fast My Internet Is

What Is A Pacemaker? - American Heart Association
• Your heart beats too slow or too fast. How do I live with my pacemaker? • Check your pulse and keep a record of it the way your doctor tells you. type can be worn on a belt. What Is a Pacemaker? ANSWERS by heart Treatments + Tests A pacemaker is ... Document Retrieval

House Cleaning
Here are a few of my lazy mom cheats to fake a "clean" house. Please check out my blog at: www.clutterbug.me Visit my Facebook page at View Video. Top 10 Tips For Abandoning The Chaos Of The Internet Based Mom One House Cleaning Tip That Feels Magical ... Read Article

Head Gasket Repair: September 2014
Expensive leak search and repair Refrigeration & Heating Quality Products for Coil Cleaners Indoor Air The Macrame SiteAbout.com’s He opens his Heating You've come to the Internet searching for an affordable alternative to the high cost Fast Moving Parts Guide ... Read Article

How Can I Check How Fast My Internet Is Images

HP ENVY 4500 E-All-in-One Series
You can check the print status on HP Connected (www.hpconnected.com). The HP ENVY 4500 series supports a rear USB 2.0 High Speed port for connection to a computer. If you have Internet access, you can get acoustic information from the HP website. Go to: ... Document Retrieval

How Can I Check How Fast My Internet Is Photos

Telstra Pre-Paid Wireless
Now you get super fast internet access so you have more freedom to stay You can check your account balance, recharge and You do not need to be connected to the internet to access My Account, but you ... Return Document

How Can I Check How Fast My Internet Is Pictures

TurnItIn FAQ's
Instructions on how to submit an assessment using Turnitin can be found at my.navitas-profesional>Student Resources. Q. documents on the Internet, This means that the student can check for plagiarism and, if required, amend ... Fetch This Document

How Can I Check How Fast My Internet Is Photos

I Filed My Claim What Happens Now? - IDES - State Of Illinois
I Filed My Claim What Happens Now? 1 Illinois Department of Employment Security The best way to certify for benefits is the internet. You can certify for benefits online at www.ides.illinois.gov/certify. You To check the status of your claim (also to request Federal Income Tax form 1099G) ... Access Doc

How Can I Check How Fast My Internet Is

How Do I Use E-Verify? - Homepage | USCIS
Use E-Verify? E-Verify is an Internet-based system. Can I terminate my participation in E-Verify at any time? check the status of an application, and more. It’s a great place to start! If you don’t have Internet access at home ... Fetch Doc


Available link for download

Read more »

Sunday, November 27, 2016

How Falling In Love Can Help You Lose Weight

How Falling In Love Can Help You Lose Weight


How Falling In Love Can Help You Lose Weight

Img Src: msn

Struggling to lose weight before getting back into the dating scene? It may be because youre doing things in the wrong order. 

We understand that you want to feel confident about your bod before putting yourself out there, but saying yes to a few dates may just help you reach your goal, according to Harvard Medical School researchers. How? When you fall in love, snuggle up with your sweetie, kiss or have sex, levels of the hormone oxytocin increase. In turn, appetite decreases, which can can aid weight-loss efforts.


To reach this conclusion, researchers recruited 25 young men with various BMIs and gave them either an oxytocin nasal spray or a placebo. They were told to order breakfast from a menu and were then given two portions of whatever they asked for. The scientists then calculated the number of calories each man consumed during the meal. Two months later, the experiment was repeated, but this time those who received the placebo were given the oxytocin and vice-versa. The researchers found that, on average, those given the oxytocin spray consumed 122 fewer calories and 9 fewer grams of fat than those in the placebo group. Men in the oxytocin group also used more of their stored body fat for fuel than their counterparts and showed improved insulin sensitivity and an increase in metabolism.

So don’t wait until you’ve sculpted your ideal body to hit the dating scene: Sign up for Match or Tinder or say “yes” to that cutie whos been asking you out, today! Not only can dating help you look better in your bathing suit you may just meet that special someone you’ve been looking for. Not ready to spice up your love life quite yet? Add one of the to your plate. Capsaicin, the compound responsible for giving chilli powder its heat, reduces belly fat, suppresses appetite and helps the body burn food as energy more efficiently. Can’t stand the heat? Try cinnamon. The spice has been shown to improve insulin sensitivity, which can help ward off dangerous belly fat.

source : msn


Available link for download

Read more »