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
This is our 61st weekly listing as we sail past 900 members, jam packed with conscious dance, contact improv and live music to dance wildly to | |
🙏😍🏃♂️ | |
Conscious dance highlights include Tuesday Vibration, the highly acclaimed Natural Dance on Wednesday, Good Friday 5R with Bernadette and Special Blindfolded CI on Saturday | |
💃🙏🏃♂️ | |
Live music highlights include [???] |
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
{ | |
"basePath": "/api", | |
"consumes": [ | |
"application/json" | |
], | |
"host": "myapi.com", | |
"info": { | |
"title": "Swagger API for CollegeBackerWeb.RestApi" | |
}, | |
"paths": { |
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
var contributors = [ | |
{ id: 35, firstName: "Mark", lastName: "Spencer", photo:"https://placekitten.com/200/201" }, | |
{ id: 89, firstName: "Jordan", lastName: "Salinger", photo:"https://placekitten.com/200/202" }, | |
{ id: 90, firstName: "Carl", lastName: "Jung", photo:"https://placekitten.com/200/203" }, | |
{ id: 11, firstName: "Dwight", lastName: "Eisenhower", photo:"https://placekitten.com/200/204" }, | |
{ id: 22, firstName: "Walter", lastName: "White", photo:"https://placekitten.com/200/205" }, | |
{ id: 67, firstName: "Roger", lastName: "Rabbit", photo:"https://placekitten.com/200/206" }, | |
{ id: 98, firstName: "Pen", lastName: "Pineapple", photo:"https://placekitten.com/200/207" } | |
] |
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
127.0.0.1 noths.juppy.noths.com juppy.noths.com www.juppy.noths.com assets0.juppy.noths.com assets1.juppy.noths.com assets2.juppy.noths.com assets3.juppy.noths.com assets4.juppy.noths.com |
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
import sublime, sublime_plugin | |
class SampleCommand(sublime_plugin.TextCommand): | |
############################# | |
# Main | |
############################# | |
def run(self, edit): | |
self.edit = edit |
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
/************************************************* | |
* Detecting ajax calls | |
*/ | |
// bind a function to the start of every ajax call on the page | |
$("body").bind("ajaxStart", function(){ | |
$("html").attr("data-processingAjax", true); | |
}); | |
// bind a function to the end of every ajax call on the page |
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
class RobotDance | |
def initialize (&block) | |
instance_eval &block if block | |
end | |
def move_arms | |
puts "swosh!" | |
end | |
def shake_booty |
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 | |
function curry() { | |
$curryArgs = func_get_args(); | |
return function() use ($curryArgs){ | |
$function = array_shift($curryArgs); | |
$mergedArgs = array_merge($curryArgs, func_get_args()); | |
return call_user_func_array($function, $mergedArgs); | |
}; | |
} |
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
<div class='tt-calendar'> | |
<span class="vevent"> | |
<a class="url" href="http://www.web2con.com/">http://www.web2con.com/</a> | |
<span class="summary">Web 2.0 Conference</span>: | |
<span class="dtstart" title="2010-03-03T19:30+00:00">3 March 2010 at 19:30</span> | |
<span class="dtend" title="2010-03-06T18:30+00:00">6 March 2010 at 18:30</span> | |
<span class="location">Argent Hotel, San Francisco, CA</span> | |
</span> | |
... |