Skip to content

Instantly share code, notes, and snippets.

View AJ-Acevedo's full-sized avatar
🤓
Studying

AJ Acevedo AJ-Acevedo

🤓
Studying
View GitHub Profile
@AJ-Acevedo
AJ-Acevedo / NYRR.html
Created February 25, 2017 23:25
tcsnycmarathon.org - Custom Confirmation
<style>
.custom-confirmation {
margin-top: -4em;
}
#confirmed-page {
margin-top: -4em;
}
</style>
@AJ-Acevedo
AJ-Acevedo / UpdateDescription.ps1
Last active January 22, 2016 21:22
Update the Description of a Windows Computer with PowerShell
# Update-Description
# Description: Update the Computer Description of a Windows Computer with PowerShell. The description is updated in both Active Direcotry and on the PC.
# Usage: UpdateDescription -computername 420XX-XXXX -description "First Last Desktop"
#
# URL: AJAlabs.com
# Author: AJ Acevedo
# Copyright (c) 2016 AJ Acevedo
# License: MIT - https://opensource.org/licenses/MIT
#
# Version: v0.4
@AJ-Acevedo
AJ-Acevedo / myIP.sh
Created January 19, 2016 04:50
myIP - Show both the Public and Private IP Addresses on a Mac or Debian Linux system
#!/usr/bin/env bash
#
# myIP
# Description: Show both the Public and Private IP Addresses on a Mac or Debian Linux system.
# Usage: Drop this file in ~/bin, add ~/bin to your $PATH and just type myIP on the CLI. That's it!
#
# URL: AJAlabs.com
# Author: AJ Acevedo
# Copyright (c) 2016 AJ Acevedo
# License: MIT - https://opensource.org/licenses/MIT
@AJ-Acevedo
AJ-Acevedo / MAC2MAC
Last active August 29, 2015 14:18
Convert a Cisco MAC address to a properly formatted MAC address
cat MAC.csv | sed -e 's/[0-9a-fA-F]\{2\}/&:/g;s/.$//' >> REAL-MAC.csv
@AJ-Acevedo
AJ-Acevedo / github.php
Created October 26, 2014 23:39
GitHub Web Hook
<?php
`git pull origin master`;
?>
@AJ-Acevedo
AJ-Acevedo / ping8.ps1
Created July 17, 2014 14:06
PowerShell script to ping 8.8.8.8 for ten seconds
#PowerShell script to ping 8.8.8.8 for ten seconds
function ping8() {
ping 8.8.8.8
Start-Sleep -s 10
Exit
}
ping8
@AJ-Acevedo
AJ-Acevedo / sheep.js
Last active June 9, 2016 17:51
Code School - Javascript Roadtrip Part 2 - Level 2 Challenges 7
var numSheep = 4;
var monthsToPrint = 12;
for(var monthNumber = 1; monthNumber <= monthsToPrint; monthNumber++) {
if ( monthNumber % 4 == 0 ) {
numSheep /= 4;
console.log("Removing " + (numSheep * 3) + " sheep from the population. Phew!");
}
else if ( numSheep > 10000 ) {
@AJ-Acevedo
AJ-Acevedo / fizzbuzz_for_loop.js
Last active April 25, 2018 23:53
JavaScript - Fizz Buzz
#!/usr/bin/env node
/*
* JavaScript Fizz Buzz using a for loop
* Copyright (c) 2013 AJ Acevedo | http://ajacevedo.com
* This content is released under the MIT License.
* http://www.opensource.org/licenses/mit-license.php
* Version: 0.1
*/
@AJ-Acevedo
AJ-Acevedo / bs_contact.html
Created January 12, 2014 19:04
Bootstrap 3 Contact Form
<form role="form">
<div class="form-group">
<label for="contactForm">Contact Us</label>
</div>
<!-- TODO: Move styles into style.css -->
<div class="form-group">
<input type="text" class="form-control" style="width:233px" placeholder="Your First Name">
</div>
<div class="form-group">
<input type="text" class="form-control" id="lastInput" style="width:233px" placeholder="Your Last Name">
@AJ-Acevedo
AJ-Acevedo / csp-db.sql
Last active December 28, 2015 20:19
Convert the CSP database
UPDATE flightlu_posts SET guid = replace(guid, 'http://csp.ajacommerce.com', 'http://localhost');
UPDATE flightlu_posts SET post_content = replace(post_content, 'http://csp.ajacommerce.com', 'http://localhost');
UPDATE flightlu_postmeta SET meta_value = replace(meta_value,'http://csp.ajacommerce.com', 'http://localhost');
UPDATE flightlu_options SET option_value = replace(option_value, 'http://csp.ajacommerce.com', 'http://localhost') WHERE option_name = 'home' OR option_name = 'siteurl' OR option_name = 'dashboard_widget_options';