Milestones completed per version.
Okay, we have to make it so that all of the pages don't have errors then add some tests.
Then we have to add pay walls.
| <?php | |
| // enqueue these scripts and styles before admin_head | |
| wp_enqueue_script( 'jquery-ui-dialog' ); // jquery and jquery-ui should be dependencies, didn't check though... | |
| wp_enqueue_style( 'wp-jquery-ui-dialog' ); | |
| ?> | |
| <!-- The modal / dialog box, hidden somewhere near the footer --> | |
| <div id="my-dialog" class="hidden" style="max-width:800px"> | |
| <h3>Dialog content</h3> | |
| <p>This is some terribly exciting content inside this dialog. Don't you agree?</p> |
| #!/bin/bash | |
| #http://blog.oscarliang.net/raspberry-pi-voice-recognition-works-like-siri/ | |
| echo “Recording… Press Ctrl+C to Stop.” | |
| arecord -D “plughw:1,0” -q -f cd -t wav | ffmpeg -loglevel panic -y -i – -ar 16000 -acodec flac file.flac > /dev/null 2>&1 | |
| echo “Processing…” | |
| wget -q -U “Mozilla/5.0” –post-file file.flac –header “Content-Type: audio/x-flac; rate=16000” -O – “http://www.google.com/speech-api/v1/recognize?lang=en-us&client=chromium” | cut -d” -f12 >stt.txt | |
| echo -n “You Said: ” |
| { | |
| "git.enableSmartCommit": true, | |
| "git.confirmSync": false, | |
| "git.autofetch": true, | |
| "editor.minimap.enabled": false, | |
| "intelephense.stubs": [ | |
| "apache", | |
| "bcmath", | |
| "bz2", | |
| "calendar", |
| Useful vim commands: | |
| Insert the date but this date would be in the format of MM/DD/YY | |
| :r !echo -n $(date +\%m/\%d/\%y) |
| /* | |
| ============================================================================== | |
| This file is part of the JUCE examples. | |
| Copyright (c) 2020 - Raw Material Software Limited | |
| The code included in this file is provided under the terms of the ISC license | |
| http://www.isc.org/downloads/software-support-policy/isc-license. Permission | |
| To use, copy, modify, and/or distribute this software for any purpose with or | |
| without fee is hereby granted provided that the above copyright notice and | |
| this permission notice appear in all copies. | |
| THE SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, |
| #!/usr/bin/bash | |
| # zn - as zettell | |
| # new export variables EDITOR for your editor and | |
| #+ NOTES for your notes folder. | |
| main () { | |
| note_id=$(date +'%Y%m%d%H%M%S') | |
| $EDITOR $NOTES/"$note_id".md | |
| } |
| What else can you do? | |
| How to clone repository to a specific commit? (full clone) | |
| # Create empty repository to store your content | |
| git clone <url> | |
| git reset <sha-1> --hard | |
| More info: | |
| How to clone single branch? |
| <?php // do not copy this line | |
| function rewrite_wc_bookings_get_time_slots_html( $block_html, $available_blocks, $blocks ) { | |
| $block_html = ''; | |
| foreach ( $available_blocks as $block => $quantity ) { | |
| if ( $quantity['available'] > 0 ) { | |
| $block_html .= '<li class="block" data-block="' . esc_attr( date( 'Hi', $block ) ) . '"><a href="#" data-value="' . date( 'c', $block ) . '">' . date_i18n( get_option( 'time_format' ), $block ) . ' <small class="booking-spaces-left">(' . sprintf( _n( '%d left', '%d left', $quantity['available'], 'woocommerce-bookings' ), absint( $quantity['available'] ) ) . ')</small></a></li>'; | |
| } |
| #include "Student.h" | |
| using namespace std; | |
| Student::Student(string theName, double theGpa) : name(theName), gpa(-1) { | |
| set_gpa(theGpa); | |
| } | |
| // accessor |