Note
to active Office without crack, just follow https://github.com/WindowsAddict/IDM-Activation-Script,
you wiil only need to run
irm https://massgrave.dev/ias | iex
#!/bin/sh | |
set -e | |
vendor/bin/phpunit | |
npm run prod | |
git add . | |
(git commit -m "Build frontend assets for deployment to production") || true | |
(git push) || true |
Note
to active Office without crack, just follow https://github.com/WindowsAddict/IDM-Activation-Script,
you wiil only need to run
irm https://massgrave.dev/ias | iex
Skip this:
brew tap homebrew/dupes
brew tap homebrew/versions
As:
Warning: homebrew/dupes was deprecated. This tap is now empty as all its formulae were migrated.
Warning: homebrew/versions was deprecated. This tap is now empty as all its formulae were migrated.
(function() { | |
tinymce.PluginManager.add('blockquote_cite', function( editor, url ) { | |
editor.addButton( 'blockquote_cite', { | |
title: 'Blockquote & Cite', | |
icon: "icon dashicons-testimonial", | |
onclick: function() { | |
editor.windowManager.open( { | |
title: 'Insert Blockquote and Citation', | |
body: [ | |
{ |
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Scrolling URL Hash</title> | |
<meta name="description" content="Webpage for xxxx"> | |
<style> | |
body { | |
height: 2000px; | |
} |
function sec2time(timeInSeconds) { | |
var pad = function(num, size) { return ('000' + num).slice(size * -1); }, | |
time = parseFloat(timeInSeconds).toFixed(3), | |
hours = Math.floor(time / 60 / 60), | |
minutes = Math.floor(time / 60) % 60, | |
seconds = Math.floor(time - minutes * 60), | |
milliseconds = time.slice(-3); | |
return pad(hours, 2) + ':' + pad(minutes, 2) + ':' + pad(seconds, 2) + ',' + pad(milliseconds, 3); | |
} |
<?php | |
$this->Html->link($artist->name, ['action' => 'view', $artis->id, 'name' => $artist->name]); |