# This example does an AJAX lookup and is in CoffeeScript
$('.typeahead').typeahead(
# source can be a function
source: (typeahead, query) ->
# this function receives the typeahead object and the query string
This file contains 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
$firstname = WP_Form_Element::create('text')->set_name('first-name')->set_label('First Name'); | |
$firstname->set_view(new WP_Form_View_Input()); | |
$firstname->add_decorator('WP_Form_Decorator_Label', array()); | |
$firstname->add_decorator('WP_Form_Decorator_Description', array()); | |
$firstname->add_decorator('WP_Form_Decorator_HtmlTag', array('tag' => 'div', 'attributes' => array( 'class' => 'control-group' ))); | |
$lastname = WP_Form_Element::create('text')->set_name('last-name')->set_label('Last Name'); | |
$lastname->set_view(new WP_Form_View_Input()); | |
$lastname->add_decorator('WP_Form_Decorator_Label', array('position' => WP_Form_Decorator::POSITION_BEFORE)); | |
$lastname->add_decorator('WP_Form_Decorator_Description', array()); |
I have this travis build
https://travis-ci.org/emeraldjava/spring-social-yammer/builds/191685784
which started failing with this error today
This job is running on container-based infrastructure, which does not allow use of 'sudo', setuid and setguid executables.
If you require sudo, add 'sudo: required' to your .travis.yml
See https://docs.travis-ci.com/user/workers/container-based-infrastructure/ for details.
This file contains 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
#!/usr/bin/python | |
import os | |
import sys | |
import argparse | |
import iso8601 | |
import re | |
import subprocess | |
import logging | |
import json |
This file contains 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> | |
<header> | |
<title>Supabase</title> | |
<script src="https://cdn.jsdelivr.net/npm/@supabase/supabase-js"></script> | |
</header> | |
<body> | |
<h2>supabase</h2> | |
<script> | |
const { createClient } = supabase | |
supabase = createClient('https://dxxxxxz.supabase.co', 'api-key') |
This file contains 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
{ | |
"meta": { "version": "2022.06.18", "lastModified": "2022-06-08T10:29:37.844Z" }, | |
"basics": { | |
"label": "Lead Software Development Engineer", | |
"characterClass": "Programmer", | |
"quote": "Can we automate it?.", | |
"phone": "", | |
"email": "[email protected]", | |
"other": [], | |
"website": "", |