Jun 12 2013

Modify Windows Autoplay Menu

How To Add Programs To The Windows Autoplay Menu

When you put a DVD movie in your computer, Windows (Vista in this case) should pop open a menu asking you what you want to do.  This menu should contain a few different programs depending on what you have installed on your computer.  Lets say you had DVDFab as an option to copy and backup any DVD movies you insert.  For some reason, this option disappears (you upgraded the version etc).  This sometimes happens.

Now for the part that probably brought you here. I have not made a program or script to automate this yet so you will have to make changes to the registry by hand.  This is not complicated, but if you don’t even know what the Registry is, you probably should have someone help you.  There are programs that can do something like this as well.  I didn’t want to install anything or pay for anything that could be done with a simple registry tweak.  I will try to keep it simple so anyone very familiar with this will have to put up with it.  Before making changes, you should back up your Registry.

Ill be doing this with Vista, but it should be similar for the Windows 7 etc.  If not, search for your Windows version.  Click the pictures for a larger version.

Lets open the Registry Editor.

Click Start (or Windows pearl icon)PearlCapture

 

In the “Run” or “Search Box” type REGEDIT then hit Enter.
regeditcommand

Continue reading


Jun 11 2013

Patriotic Photos

20130611-183713.jpg

20130611-183722.jpg

20130611-183728.jpg


Jun 11 2013

Governor Brewer (AZ) Caves To Liberlaism

Once feted by grassroots conservatives nationwide, Arizona Governor Jan Brewer moved radically to the left in 2013. In her State of the State address, she surprised many by embracing Obamacare, calling for a massive expansion of Medicaid.

Like many state politicians, she claims the multi-billion dollar expansion would be largely funded by “free” federal money. Of course, the funding dries up in the out years and comes with strings attached that will tie up the state for years. And then there’s that tiny problem of the federal government having no money in the first place.

The GOP-controlled statehouse isn’t making it easy for Gov. Brewer, killing the expansion in committee yesterday. But all the Democrats, along with a few squishy Republicans, plan to reintroduce the issue on the floor — perhaps as early as today. Adding to the pressure, Brewer has promised to sign no legislation until Obama’s Medicaid expansion is sent to her desk. To prove her point, she quickly vetoed five bills.

Arizona’s current Medicaid system, called AHCCCS, is actually better than most states’ programs. A big reason for this is that the state held out for several years to get a better deal with the feds. As a result, AHCCCS is better at controlling costs while providing more options for the truly needy.

This time around, Gov. Brewer quickly caved to the Obama administration’s strong-arm tactics — an administration that has repeatedly sued and demonized both her and the state she claims to represent.

As usual, expansion supporters are insisting they are only doing this for the poor. But several studies suggest that Medicaid may actually hurt its supposed beneficiaries. A recent Oregon study showed that there is zero evidence that Medicaid saved any lives or made any improvements in several objective health markers.

The last time Arizona expanded AHCCCS, proponents insisted it would save money. Some legislators didn’t buy that claim and projected it would cost about $400 million, eight years later. The actual cost was more than $1.6 billion, four times as expensive as projected.

Far-left outlets like ThinkProgress are praising the governor for “sticking by her convictions.” Meanwhile, conservative publications like National Review are excoriating her for betraying her party, her state and basic economics:

Under law, the states cannot be forced to accept the Medicaid expansion. It is up to them. Some Republicans have stood strong against it, and some are rolling over for the Obama administration. Governor Brewer is for the moment unique in that she is throwing a gubernatorial temper tantrum on behalf of expanding government-run health care. Our hope is that Arizona’s legislators will keep the Medicaid expansion out of the budget and, for the good of the state, pass the budget over the governor’s veto. Governor Brewer may not be around to see the bill for the Medicaid expansion when it comes due, but Arizona taxpayers will.

For the people of Arizona, let’s hope state legislators stand firm so that Brewer’s tantrum isn’t rewarded.

Jon Gabriel on June 11, 2013

 


Jun 10 2013

Email Spoof For Fun Only

PHP / HTML script

This method is easy to use if you have your own hosting space (ie you have a website).  This works on a few hosting sites I tested.  Thanks to Sethioz for some of the code.

This basically sets up a form where you enter the fake email address, subject, and who you want to send it to.  The form then uses a script to actually send it.

NOTE: SMTP and PHP have to be supported.

These should be in the same folder.  Create a folder in your server.  Many sites use cPanel.  If so you  can go to the file manager and create new folder.  Now create two new files:

Name one index.html and the other spoof.php


put this code in index.html:

 <form action="spoofer.php" method="GET">
 <p>To Email: <input type="text" name="email" /></p>
 <p>Subject: <input type="text" name="header" /></p>
 <p>From Email: <input type="text" name="fake" /></p>
 <p>Email Message: <textarea name="message"></textarea></p>
 <p><input type="submit" value="Send Email"></p>
 </form>


 

Save it and put this code inside spoofer.php:
<?php
 if (!isset($_GET[email]) || empty($_GET[email]))
 {
 echo "TO field is empty";
 exit;
 }
 else
 {
 $to = $_GET[email];
 }
 if (!isset($_GET[header]) || empty($_GET[header]))
 {
 echo "Subject is missing";
 exit;
 }
 else
 {
 $subject = $_GET[header];
 }
 if (!isset($_GET[fake]) || empty($_GET[fake]))
 {
 echo "FROM email address is missing";
 exit;
 }
 else
 {
 $fake = $_GET[fake];
 }
 if (!isset($_GET[message]) || empty($_GET[message]))
 {
 echo "email message box is empty";
 exit;
 }
 else
 {
 $message = $_GET[message];
 }
 $headers = "MIME-Version: 1.0" . "\r\n";
 $headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n";
 $headers .= "From: " . $fake . " <" . $fake . ">" . "\r\n";
 if (mail($to, $subject, $message, $headers))
 {
 echo"<h1>Success</h1>\n";
 echo"<p>The e-mail was successfully sent to <i>" . $to . "</i></p>\n";
 echo"<p>From: <i>" . $fake . "</i></p>\n";
 echo"<p>Subject: <i>" . $subject . "</i></p>\n";
 echo"<p>Message:</p>\n";
 echo"<p><b>" . $message . "</b></p>";
 }
 else
 {
 echo"<h1>Error!</h1>\n";
 echo"<p>The mail() function failed.</p>";
 }
 ?>


Capture

Now save that and go to your site where you created the folder. For example, www.mysite.com/spoofedemail/ You should see the form pop up. Now test it on your address. Please note, your real address will show up in the header and anyone with more than cursory computer knowledge will know how to see that.

Capture2

Final Note: use at your own risk. This site nor anyone else is responsible for anything stupid you do with this script.


Jun 8 2013

The ‘Gay Pride’ Merit Badge – Boy Scouts Will End

“[A] good moral character is the first essential in a man, and that the habits contracted at your age are generally indelible, and your conduct here may stamp your character through life. It is therefore highly important that you should endeavor not only to be learned but virtuous.” –George Washington (1790)

2013-06-06-alexander-1

“On my honor, I will do my best to do my duty to God and my country and to obey the Scout Law; To help other people at all times; To keep myself physically strong, mentally awake and morally straight.” (Oath, Boy Scouts of America)

Six months ago, in a letter to an Eagle Scout, my son, I responded to his dismay over a proposal by the Boy Scouts of America National Board to remove the membership restriction regarding sexual orientation. As a long-time BSA Council member, Troop leader and father of another young man about to attain his Eagle rank, I shared my older son’s dismay — to put it mildly.

Two weeks ago, the Left’s relentless campaign of cultural degradation and devolution, specifically their crusade to undermine the “third pillar of Liberty,” faith and family, succeeded in a decade-long strategy to do to the uniformed ranks of the BSA what Barack Hussein Obama has done to the uniformed ranks of the U.S. military (and the rest of the nation).

As you might recall, one of Obama’s earliest campaign promises was to repeal the “Don’t Ask, Don’t Tell” proscription against open homosexuality in the military ranks. On December 22, 2010, Obama signed that repeal after it had been passed by his outgoing NeoCom House majority. This occurred just weeks before Tea Party Republicans, who decimated the Democrats in the 2010 midterm elections, took over the House.

Earlier this year, consistent with his assault on the moral fiber of our military, Obama quickly gave this verbatim endorsement of homosexuals scouts and leaders in the BSA: “I think that, uh, you know, my attitude is, is that gays and lesbians should have, uh, access, and, and, opportunity, uh, the same way everybody else does, uh, in every institution and walk of life, and, um, you know, the, the Scouts are a great institution, uh, that, are, uh, promoting, uh, young people and exposing them to, uh, you know, opportunities, and, and…” ad nauseam.

As dictated by the laws of gravity, the political effluent from Obama’s pathological narcissism, and the most faith-intolerant administration in the history of our Republic, flows downhill. On May 23, it swamped the BSA with its fetid waste.

At the 2013 annual meeting, the BSA’s National Board, under the “leadership” of wealthy corporate-types completely out of touch with grassroots Scouting values, promoted and implemented a national policy to invite open homosexuals into Scout troops. In doing so, they intentionally opened the door for a much broader “gay agenda.” Many of those elitist BSA board members have already implemented that agenda within their own corporations, so they fully understand and eagerly anticipate the consequences of this BSA policy change.

For two decades, the BSA has been stacking its national board with elitist execs, because they hobnob around in wealthy circles and can collect money for national BSA projects. While most BSA regional Councils like the one I serve are self-supporting, and in fact send a small percentage of locally raised funds to support the BSA corporate office, the national BSA board has obligated itself to major real estate developments that are seriously underfunded — thus, the pursuit of affluent board members as the solution.

But the BSA is, first and foremost, a faith-based organization, and the idolatry of wealth inevitably repels faith as oil does water. Consequently, stacking the national board with corporate elitists has resulted in the same decay in the BSA that it has in other once-great institutions across the nation. Indeed, “The love of money is a root of all kinds of evil.” And that evil is greatly amplified when such men are in positions of power, because, in the words of Lord Acton, “Power tends to corrupt, and absolute power corrupts absolutely.”

2013-06-06-alexander-2

In a national survey conducted earlier this year, tens of thousands of BSA leaders registered their objection to a BSA policy change on homosexuals, by a 61 percent majority. While I would rather the majority have been larger, in political terms, that’s known as a landslide. Now, my moral compass is not determined by popular opinion, but this national polling did reflect the grassroots moral compass of the BSA. It’s interesting to note that the more experienced the Scout leaders were (e.g., Boy Scout leaders compared to Cub Scout leaders), the greater was the opposition to the BSA board’s proposed change.

But at the national meeting in May, a much smaller group of 1,200 delegates voted to approve the policy change. That change would have been resoundingly defeated but for one person: Wayne Perry, the National Board President. Perry, a Mormon, convinced many of his fellow LDS Church members — one of the larger voting blocks of Scout Troop chartering organizations — to support the policy change, suggesting that it would be better to bring young homosexuals into the tent to surround them with sound moral and ethical teaching than to exclude them.

That sounds marginally logical on its face, but two decades ago, I fought a losing battle against a detached elite at the helm of the Episcopal Church USA, which promoted the acceptance of homosexuals under a similar doctrine, “love the sinner.” However, no sooner had the first homosexual bishop, Vicky Imogene Robinson, been seated than the old doctrine was converted to “love the sin,” which has undermined the moral foundation of the Church. The result has been the World Anglican Communion’s condemnation as apostate what’s left of ECUSA. The USA church is wealthy, however, and it can sustain itself materially if not spiritually.

For the record, the same foundational principals provoke my objection to the “gay agenda” infiltration of the BSA as that agenda in the Episcopal Church. I do not stand in judgment of what consenting adults want to do with each other behind closed doors, but I do object to the institutionalization of sexual behavior, which violates the most basic tenets of nature, and nature’s God. The tragic irony is that many of the loudest voices promoting the “normalization” of sexual deviation, including homosexual adults in “leadership roles” with young boys, are the voices of those who were subjected to sexual predation when they were young.

For the BSA, the misguided Mormon vote, combined with large representative voting blocs from the left coast and New England states, provided majority support for the homosexual policy change and the overturning of the “morally straight” clause of the Scout Oath. Many of those regional Scout Councils are, like the Episcopal Church USA, wealthy enough to be self-sustaining, but when this policy takes effect on January 1, 2014, the net effect will likely be similar to Canada Scouting. In that country, membership dropped more than 50 percent in the decade after a similar policy was adopted.

This week, the Southern Baptist Convention, a major BSA faith-based chartering group, announced that it plans to cut ties to the BSA. In addition, one of the nation’s largest churches, Southeast Christian Church in Louisville, announced that it will not renew its Troop charter. Additionally, the first Scout Council Executive, Rob Green, submitted his letter of resignation, with others to follow.

And if you have any doubt that the “gay agenda” has far greater aspirations for infiltrating the Boy Scouts, look no further than the California State Senate, which this week passed a bill to revoke the tax-exempt status of the state’s BSA councils, accusing them of discrimination against homosexual adults — “gay” Scout leaders.

Obama once again proclaimed the month of June “Lesbian, Gay, Bisexual, and Transgender Pride Month,” as he has done in each of the last four years of his abominable administration.

Obama declared, “For more than two centuries, our Nation has struggled to transform the ideals of liberty and equality from founding promise into lasting reality. Lesbian, gay, bisexual, and transgender (LGBT) Americans and their allies have been hard at work on the next great chapter of that history — from the patrons of The Stonewall Inn who sparked a movement to service members who can finally be honest about who they love to brave young people who come out and speak out every day. … We have a long way to go, but if we continue on this path together, I am confident that one day soon, from coast to coast, all of our young people will look to the future with the same sense of promise and possibility. I am confident because I have seen the talent, passion, and commitment of LGBT advocates and their allies, and I know that when voices are joined in common purpose, they cannot be stopped.”

Apparently, according to Obama’s American history text, our Founders’ fight for Liberty, and that of generations since, was all about “gay rights.”

Obama’s civilian controllers at the Department of Defense also dutifully recognized June as LGBT Pride Month, and they released a statement noting “the LGBT community has written a proud chapter in this fundamentally American story by reminding us that integrity and respect remain corner stones of our military and civilian culture.”

“Gay Pride” is an oxymoron.

Meanwhile, the Supreme Court is debating whether to overturn provisions of the Defense of Marriage Act and whether to overturn California’s Proposition 8, the voter-approved measure outlawing so-called “gay marriage.”

Perhaps a majority of the justices will recall these words from the Father of our Country, George Washington: “Let us with caution indulge the supposition that morality can be maintained without religion. Whatever may be conceded to the influence of refined education on minds of peculiar structure, reason and experience both forbid us to expect that national morality can prevail in exclusion of religious principle.”

Mark Alexander · June 6, 2013