The order within each category is by preference, while categories are in alphabetical order.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Set updateSession = CreateObject("Microsoft.Update.Session") | |
updateSession.ClientApplicationID = "MSDN Sample Script" | |
Set updateSearcher = updateSession.CreateUpdateSearcher() | |
WScript.Echo "Searching for updates..." & vbCRLF | |
Set searchResult = _ | |
updateSearcher.Search("IsInstalled=0 and Type='Software' and IsHidden=0") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is the main Apache server configuration file. It contains the | |
# configuration directives that give the server its instructions. | |
# See http://httpd.apache.org/docs/2.4/ for detailed information about | |
# the directives and /usr/share/doc/apache2/README.Debian about Debian specific | |
# hints. | |
# | |
# | |
# Summary of how the Apache 2 configuration works in Debian: | |
# The Apache 2 web server configuration in Debian is quite different to | |
# upstream's suggested way to configure the web server. This is because Debian's |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$labels = array( | |
'name' => _x( '__POST__s', 'post type general name', 'steel' ), | |
'singular_name' => _x( '__POST__', 'post type singular name', 'steel' ), | |
'menu_name' => __( '__MENU__', 'steel' ), | |
'name_admin_bar' => __( '__POST__s', 'steel' ), | |
'add_new' => __( 'Add New', 'steel' ), | |
'add_new_item' => __( 'Add New __POST__', 'steel' ), | |
'edit_item' => __( 'Edit __POST__', 'steel' ), | |
'new_item' => __( 'New __POST__', 'steel' ), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Make sure all git repos are using the latest csscomb rules | |
# Uses Flint's rules as master | |
# | |
for repo in $(cat /usr/local/repos.git) | |
do | |
cd $repo | |
echo $(basename $repo) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias rsync-ssh='rsync -az -e ssh' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
find . -name '*.php' -not -path './node_modules/*' -not -path './tests/*' -not -path './vendor/*' -exec php -lf '{}' \; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
php_flag display_startup_errors on | |
php_flag display_errors on | |
php_flag html_errors on | |
php_flag log_errors on | |
RewriteEngine On | |
RewriteRule ^extra/([^/]*)$ /fcc-signup/extras.php?id=$1 [L] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* lookforbadguys.php 2011-09-27 | |
Copyright (C)2011 Karen Chun, Steven Whitney. | |
Initially published by http://25yearsofprogramming.com. | |
This program is free software; you can redistribute it and/or | |
modify it under the terms of the GNU General Public License (GPL) | |
Version 3 as published by the Free Software Foundation. | |
This program is distributed in the hope that it will be useful, | |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!--[if lt IE 9]><html lang="en-US" class="ie"><![endif]--> | |
<!--[if gte IE 9]><!--><html lang="en-US"><!--<![endif]--> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Site Suspended</title> | |
<link rel="profile" href="http://gmpg.org/xfn/11"> | |
<!--[if lt IE 9]> |
NewerOlder