Skip to content

Instantly share code, notes, and snippets.

View leifjones's full-sized avatar

LJ Jones leifjones

  • Cedar Rapids, Iowa, United States
View GitHub Profile
/*
* This is the work D.B. of South Hamilton High School.
* It draws on the started code from SparkFun.
*/
const int SENSOR_PIN = 0;
const int BUZZER_PIN = 9;
const int c_pin = 2;
void update() {
pitchChange = analogRead(leftRight);
pitch = pitch + pitchChange;
volChange = analogRead(volume);
vol = vol + colChange
}
// Create our 'main' state that will contain the game
var mainState = {
preload: function() {
// This function will be executed at the beginning
// That's where we load the images and sounds
},
create: function() {
// This function is called after the preload function
// Here we set up the game, display sprites, etc.
<DOCTYPE! html>
<html>
<head>
</head>
<body>
</body>
</html>
<!DOCTYPE html><html lang="en"><head><style>.cta{}.default-theme{}#dood{}.fkbx{}#fkbx-hht{}.fkbx-hht-s{}#fkbx-text{}.hide-sf{}.init{}.left-align-attr{}.light-text{}.mv-dot{}.mv-dot-bg{}.mv-focused{}.mv-link-hide{}.mv-locthumb{}.mv-locgradient{}.mv-loctitle{}.mv-locfallback{}#mv-single{}.mv-tiles{}.mv-x{}.mv-x-inner{}.prm-pt{}.prm{}.prt{}.pt{}@-webkit-keyframes init-hide {0%{opacity:0}99%{opacity:0}100%{opacity:1}}body{font:small arial,sans-serif;margin:0;min-height:616px;text-align:-webkit-center}body.hide,body.hide-sf #fkbx,body.hide-sf #lga{visibility:hidden}body.init{-webkit-animation:init-hide 0.5s linear}#lga.init,#fkbx.init{-webkit-animation:init-hide 2s linear}a{color:#1a0dab;text-decoration:none}a:hover,a:active{text-decoration:underline}a:visited{color:#609}#most-visited{-webkit-user-select:none;z-index:1}#mv-tiles{margin:0;overflow:hidden;position:relative;text-align:start}#mv-single{border:none;height:100%;width:100%}.mv-tile{-webkit-transition-duration:200ms;-webkit-transition-property:-webkit-tr
<?php
$query_args = array(
'foo' => 'bar',
'apple' => 'orange',
'posts_per_page' => 50,
'offset' => 0,
);
$some_posts = new WP_Query( $query_args );
while ( $some_posts->have_posts() ) {
/*
Verifying my Blockstack ID is secured with the address 1ASCfLqmmmZjBQVQajPxP81QzRTVrd1r5c https://explorer.blockstack.org/address/1ASCfLqmmmZjBQVQajPxP81QzRTVrd1r5c
85bfa074a7635741f5f8e105ebef69ad0dee0616a62f7375f7a067530ed1e215c089b243eda23d95cbcf2ab66797c1d321f4d0f9485fdfb0e6b57ba547cd2807
BEGIN MESSAGE.
1yARvXTgc9uDnUd 22P7OUZK2mXz8rb 87UwuhoHK0kg12w S9NYdVq8HT7JFUj
pvxlVjL7kusXBUL NvLZ1LKSKwnTCKq 6Xr2MZHgg6SWHtr OyHRxsdvEh4Z8Jx
8hFsKgusGPwz0Nt SIw5yxkdrjF8Xyn giiYqhbInA5lAtD 0FOPxXXRbm2jeLK
b5mYZJuGOmTByNY G1LDcTp1LKG231I QyIK22IP.
END MESSAGE.

Regarding

[prototyping] some backend functionality for a WebApp (using GraphQL or REST to CRUD a json feed...) (message on coda.io forum)

JHipster, and open-source tool for generating webapps with Java (Spring) back ends is great at this and can give you some excellent bonus features for free. Potential entry points, or things you may want to touch on along the way:

  • Their introductory video
  • Use JDL-Studio to map out the schema for an app.
  • Use JHipster to generate the webapp, and use the resulting README to get it started. Options include:
  • what to generate