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| var bodyData = 'ECWID PAYLOAD'; | |
| var clientId = 'YOUR CLIENT SECRET'; | |
| // Added required padding to make the payload a multiple of 4. We can do this using a repeat or a simple while. | |
| // var paddingLength = 4 - (bodyData.length % 4); | |
| // if (paddingLength !== 4) { | |
| // bodyData + '='.repeat(paddingLength); | |
| // } |
| <!-- 👇 Scroll down 👇 --> | |
| {# variables #} | |
| {% set my_variable = 'Hello world' %} | |
| {# get variables from somewhere else #} | |
| {% import 'path/to/hubl-variables.html' as site_vars %} | |
| {{ site_vars.my_external_variable }} | |
| <? | |
| # MIT license, do whatever you want with it | |
| # | |
| # This is my invoice.php page which I use to make invoices that customers want, | |
| # with their address on it and which are easily printable. I love Stripe but | |
| # their invoices and receipts were too wild for my customers on Remote OK | |
| # | |
| require_once(__DIR__.'/../vendor/autoload.php'); |
| # This gist gives instructions to build a basic deb package of netatalk-3.1.11 using checkinstall on Ubuntu 18.04. | |
| # With the idea being that you build the deb on your build server and install from the resulting deb in production. | |
| # Given that the deb is packaged using checkinstall with basic options, think home use, not real production. | |
| # Note that this build does not provide the spotlight feature. | |
| # The tracker packages have been left out as the intent was to provide TimeMachine functionality only. | |
| #------------------------------------------------------------ | |
| # STEP ONE - Make the Netatalk deb on a build machine |
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| [AllowAnonymous] | |
| [HttpGet] | |
| public HttpResponseMessage GetAllMessages() | |
| { | |
| try | |
| { | |
| //Load Data Into List | |
| var mm = new MessageManager(); | |
| List<Message> msgs = mm.GetAllMessages(); |
Direct copy of pre-encoded file:
$ ffmpeg -i filename.mp4 -codec: copy -start_number 0 -hls_time 10 -hls_list_size 0 -f hls filename.m3u8
| // JS array equivalents to C# LINQ methods - by Dan B. | |
| // First: This version using older JavaScript notation for universal browser support (scroll down for ES6 version): | |
| // Here's a simple array of "person" objects | |
| var people = [ | |
| { name: "John", age: 20 }, | |
| { name: "Mary", age: 35 }, | |
| { name: "Arthur", age: 78 }, | |
| { name: "Mike", age: 27 }, |
| # This is a template .gitignore file for git-managed WordPress projects. | |
| # | |
| # Fact: you don't want WordPress core files, or your server-specific | |
| # configuration files etc., in your project's repository. You just don't. | |
| # | |
| # Solution: stick this file up your repository root (which it assumes is | |
| # also the WordPress root directory) and add exceptions for any plugins, | |
| # themes, and other directories that should be under version control. | |
| # | |
| # See the comments below for more info on how to add exceptions for your |