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 | |
/** | |
* Download a large distant file to a local destination. | |
* | |
* This method is very memory efficient :-) | |
* The file can be huge, PHP doesn't load it in memory. | |
* | |
* /!\ Warning, the return value is always true, you must use === to test the response type too. | |
* | |
* @author dalexandre |
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
@ECHO OFF | |
TITLE System Hide/Unhide directory or file | |
GOTO :SET_DIR | |
:SET_DIR | |
SET /P DIRNAME=Enter file/folder name: | |
IF NOT EXIST %CD%\%DIRNAME% GOTO :NOTHING_FOUND |
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> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Shuffle.js</title> | |
<style> | |
body { | |
max-width: 1170px; | |
margin: auto; | |
} |
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 | |
if( class_exists( 'KC_Section_Importer' ) ) { | |
return; | |
} | |
class KC_Section_Importer { | |
/** | |
* Define the post_type & taxonomy to use | |
*/ |
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 | |
/** | |
* Taxonomy term options for Codestar Framework: https://github.com/Codestar/codestar-framework | |
* | |
* Contributed by http://themestones.net | |
*/ | |
if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access pages directly. | |
if( ! class_exists( 'CSFramework_Taxonomy' ) ) : |