do_action( 'make_api_loaded', $Make );
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
<html> | |
<head></head> | |
<body>Hello</body> | |
</html> |
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
{ | |
"success":true, | |
"data":{ | |
"name":"Contact Form to Manage and respond to conversations with customers \u2014 HappyForms", | |
"slug":"happyforms-upgrade", | |
"version":"1.17.5", | |
"author":"HappyForms", | |
"requires":"5.0.3", | |
"tested":"5.4.2", | |
"requires_php":"5.3", |
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
{ | |
"name": "Filous" | |
} |
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
= 1.8.8 - May 10 2017 = | |
* New feature: Added a setting to control background position for sections. | |
* Improved: Settings in overlays are now categorized into expandable sections. | |
* Improved: Better styling for the background color picker. | |
* Improved: Settings backend specification for sections was refactored for easier tweaking. | |
* Improved: Background controls in the overlay now show up only when a background media is selected. | |
* Improved: Media overlay sidebars are now contextual to the selected media. | |
* Improved: Compatibility with WooCommerce 3.0 product galleries. | |
* Improved: Removed legacy General -> Logo panel from Customizer. | |
* Improved: Wording of input labels in various builder sections. |
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
-- Andrew's monotone chain convex hull algorithm | |
-- https://en.wikibooks.org/wiki/Algorithm_Implementation/Geometry/Convex_hull/Monotone_chain | |
-- Direct port from Javascript version | |
function march(points) | |
local p = #points | |
local cross = function(p, q, r) | |
return (q[2] - p[2]) * (r[1] - q[1]) - (q[1] - p[1]) * (r[2] - q[2]) | |
end |
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
""" Usage: python diff.py FILE1 FILE2 | |
A primitive `diff` in 50 lines of Python. | |
Explained here: http://pynash.org/2013/02/26/diff-in-50-lines.html | |
""" | |
def longest_matching_slice(a, a0, a1, b, b0, b1): | |
sa, sb, n = a0, b0, 0 | |
runs = {} |
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
// Programma di esempio: | |
// * Apri una finestra | |
// * Ascolta l'evento "quit" di SDL | |
// * Crea un renderer | |
// * Carica una bitmap da un percorso | |
// * Crea una texture dalla bitmap | |
// * Disegna la texture sul renderer | |
#include <SDL2/SDL.h> | |
#include <SDL2_image/SDL_image.h> |
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
<link rel="import" href="../core-drawer-panel/core-drawer-panel.html"> | |
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { |
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
/*! normalize.css v2.1.2 | MIT License | git.io/normalize */ | |
/* ========================================================================== | |
HTML5 display definitions | |
========================================================================== */ | |
/** | |
* Correct `block` display not defined in IE 8/9. | |
*/ |
NewerOlder