This file contains hidden or 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
You could also try using PowerShell, a powerful Windows command line tool. You'd run this command: | |
Full Command: | |
get-childitem *.mp3 | foreach { rename-item $_ $_.Name.Replace("Radiohead -", "") } | |
Analyzing it: | |
get-childitem *.mp3 | |
This lists all files whose names end with .mp3. They are then piped to the next command with the | operator. |
This file contains hidden or 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
<style> | |
.persona_promo_video { | |
background-size: cover; | |
background-position: center center; | |
background-repeat: no-repeat; | |
height: 315px; | |
width: 563px; | |
} | |
.persona_video_tablecell { | |
width: 100%; |
This file contains hidden or 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
//[Custom Javascript] | |
$(window).scroll(function() { | |
var scroll = $(window).scrollTop(); | |
if (scroll >= 50) { | |
$(".banner_right").addClass("banner_right_img"); | |
} else { | |
$(".banner_right").removeClass("banner_right_img"); |
This file contains hidden or 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
<!--[if !mso]><!-- If Not Outlook, Show This --> | |
<td id="order_date" class="" background="http://dev.vitaminpacks.com/emails/images/header-bg.png" width="600" height="88" valign="top"> | |
<!--<![endif]--> | |
<!--[if gte mso 9]> | |
<td id="order_date" class="" width="600" height="88" valign="top"> | |
<![endif]--> | |
</td> |
This file contains hidden or 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
<nav class="navbar navbar-default"> | |
<div class="container-fluid"> | |
<div class="navbar-header"> | |
<a class="navbar-brand" href="#">WebSiteName</a> | |
</div> | |
<ul class="nav navbar-nav menu_wrapper"> | |
<li class="active"><a class="menu_item" href="#">Home</a></li> | |
<li><a class="menu_item" href="#">Page 1</a></li> | |
<li><a class="menu_item" href="#">Page 2</a></li> | |
<li><a class="menu_item" href="#">Page 3</a></li> |
This file contains hidden or 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
<span id="changing_text">wellness</span> | |
<script> | |
$(document).ready(function() { | |
var texts = ["wellness", "energy", "sleep", "stress", "diet", "digestion"]; | |
var count = 0; | |
function changeText() { | |
$("#changing_text").text(texts[count]); | |
count < 6 ? count++ : count = 0; | |
} |
This file contains hidden or 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
<div class="container"> | |
<h1>Play YouTube or Vimeo Videos in Bootstrap 4 Modal</h1> | |
<!-- Button trigger modal --> | |
<button type="button" class="btn btn-primary video-btn" data-toggle="modal" data-src="https://www.youtube.com/embed/Jfrjeg26Cwk" data-target="#myModal"> | |
Play Video 1 - autoplay | |
</button> | |
<!-- Button trigger modal --> |
This file contains hidden or 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
<style>/* https://gist.github.com/toddparker/32fc9647ecc56ef2b38a */ | |
/* Some basic page styles */ | |
body { | |
font: 100%/1.5 AvenirNext-Regular, Corbel, "Lucida Grande", "Trebuchet Ms", sans-serif; | |
color: #111; | |
background-color: #fff; | |
margin: 2em 10% | |
} |
This file contains hidden or 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
https://stackoverflow.com/questions/15517718/find-php-version-on-windows-command-line |
This file contains hidden or 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
// Modal Trigger | |
<a class="terms_scroll" href="#" data-toggle="modal" data-target="#privacyPolicy" data-section="section-1"> Subscription Services</a> | |
//Model window scroll to subscription renewal section script | |
$(document).ready(function(){ | |
$('#privacyPolicy').on('shown.bs.modal', function(event) { | |
// reset the scroll to top | |
$('#privacyPolicy .privacy_policy_content').scrollTop(0); | |
// get the section using data | |
var section = $(event.relatedTarget).data('section'); |