https://stackoverflow.com/questions/45203848/create-signal-from-input-in-gtk3-python https://www.apple.com/lae/mac/ https://www.macrumors.com https://en.wikipedia.org/wiki/MacOS
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
package com.kdn.evcs.service; | |
import Kisinfo.Check.IPINClient; | |
import NiceID.Check.CPClient; | |
import com.kdn.evcs.common.BaseConstant; | |
import com.kdn.evcs.common.LogHelper; | |
import org.springframework.stereotype.Service; | |
import java.util.HashMap; | |
import java.util.Map; |
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
float speed = 0.3; // speed of the movement along the Lissajous curves | |
float size = 3; // amplitude of the curves | |
for (uint8_t y = 0; y < Height; y++) { | |
for (uint8_t x = 0; x < Width; x++) { | |
float cx = y + float(size * (sinf (float(speed * 0.003 * float(millis() ))) ) ) - 8; // the 8 centers the middle on a 16x16 | |
float cy = x + float(size * (cosf (float(speed * 0.0022 * float(millis()))) ) ) - 8; | |
float v = 127 * (1 + sinf ( sqrtf ( ((cx * cx) + (cy * cy)) ) )); | |
uint8_t data = v; |
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
jQuery.fn.dataTableExt.oApi.fnSetFilterDebounce = function ( oSettings, iDelay ) { | |
/* | |
* Type: Plugin for DataTables (www.datatables.net) JQuery plugin. | |
* Name: dataTableExt.oApi.fnSetFilterDebounce | |
* Version: 0.01 | |
* Description: Enables filtration debouncing which prevents filter from | |
* happening until keypresses have stopped for [iDelay] milliseconds. | |
* Uses code from Zygimantas' fnSetFilteringDelay | |
* Inputs: object:oSettings - dataTables settings object |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
<?php | |
/** | |
* WordPress Query Comprehensive Reference | |
* Compiled by luetkemj - luetkemj.com | |
* | |
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters | |
* Source: https://core.trac.wordpress.org/browser/tags/3.9/src/wp-includes/query.php | |
*/ | |
$args = array( |
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
all: assets-json | |
assets-json: | |
go-bindata -o bindata.go assets | |
go build |