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
function incUrlString(str){ | |
var singles = str.split(''); | |
var incNext = false; | |
var extendIt = false; | |
for(var i = singles.length - 1; i > -1; i --){ | |
if(incNext || i == singles.length - 1){ | |
incNext = false; | |
var ascii = singles[i].charCodeAt(0); | |
if(ascii == 57){ | |
ascii = 65; |
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
const incHash = (str) => { | |
const singles = str.split(''); | |
let incNext = false; | |
let extendIt = false; | |
for(let i = singles.length - 1; i > -1; i --){ | |
if(incNext || i == singles.length - 1){ | |
incNext = false; | |
let ascii = singles[i].charCodeAt(0); | |
if(ascii == 57){ | |
ascii = 65; |
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
import fs from 'fs'; | |
import finder from 'fs-finder'; | |
import cheerio from 'cheerio'; | |
import colors from 'colors'; | |
import S from 'string'; | |
//To refresh target folder, rm -rf target, mkdir target, cp -a backup/. target | |
// npm Script: "reset": "rm -rf target && mkdir target && cp -a backup/. target" -> npm run reset | |
console.log('Starting node Widgeter Script...'.green); |
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
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/js-cookie/2.1.3/js.cookie.min.js"></script> | |
<script type="text/javascript"> | |
(function($){ | |
var getParameterByName = function(name, url) { | |
if (!url) { | |
url = window.location.href; | |
} | |
name = name.replace(/[\[\]]/g, "\\$&"); | |
var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"), | |
results = regex.exec(url); |
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
/** | |
* Get the vimeo id. | |
* @param {string} str - the url from which you want to extract the id | |
* @returns {string|undefined} | |
*/ | |
function vimeo(str) { | |
if (str.indexOf('#') > -1) { | |
str = str.split('#')[0]; | |
} | |
var id; |
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
[ | |
{ "keys": ["super+shift+o"], "command": "prompt_add_folder" }, | |
{ "keys": ["/"], "command": "close_tag", "args": { "insert_slash": true }, "context": | |
[ | |
{ "key": "selector", "operator": "equal", "operand": "(text.html, text.xml, meta.jsx.js) - string - comment", "match_all": true }, | |
{ "key": "preceding_text", "operator": "regex_match", "operand": ".*<$", "match_all": true }, | |
{ "key": "setting.auto_close_tags" } | |
] | |
}, | |
{"keys": ["alt+shift+f"], "command": "reindent", "args": {"single_line": false}} |
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
(function(window, document){ | |
var load = function(){ | |
var script = document.createElement('script'); | |
script.async = true; | |
script.type = 'text/javascript'; | |
script.src = 'THE_SOURCE_OF_JS_LIB_HERE.js'; | |
var firstScript = document.getElementsByTagName('script')[0]; | |
firstScript.parentNode.insertBefore(script, firstScript); | |
}; | |
if(document.readyState === "complete"){ |
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
function your_shortcode_function( $atts ){ | |
// $atts in case you want to receive attributes | |
// This lets you set default results for attributes that aren't provided. | |
$attributes = shortcode_atts(array( | |
"text" => "some text", | |
"link" => "Some link" | |
), $atts); |
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
import React, { useEffect } from "react"; | |
import Frame, { FrameContextConsumer } from "react-frame-component"; | |
import { iframeResize } from "iframe-resizer"; | |
import iFrameResizeContentWindowScript from "!raw-loader!iframe-resizer/js/iframeResizer.contentWindow.min.js"; // eslint-disable-line | |
const SmartFrame = ({ children, ...props }) => { | |
const ref = React.createRef(); | |
// Component did mount | |
useEffect(() => { |
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
const path = require("path"); | |
const MiniCssExtractPlugin = require("mini-css-extract-plugin"); | |
const StyleLintPlugin = require("stylelint-webpack-plugin"); | |
const FriendlyErrorsPlugin = require("friendly-errors-webpack-plugin"); | |
const { CleanWebpackPlugin } = require("clean-webpack-plugin"); | |
const ImageminPlugin = require("imagemin-webpack-plugin").default; | |
const TerserPlugin = require("terser-webpack-plugin"); | |
const CopyPlugin = require("copy-webpack-plugin"); | |
const { NODE_ENV: mode = "development" } = process.env; |
OlderNewer