This file has been truncated, but you can view the full file.
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
!function(e){function t(t){for(var n,o,r=t[0],s=t[1],a=0,c=[];a<r.length;a++)o=r[a],Object.prototype.hasOwnProperty.call(i,o)&&i[o]&&c.push(i[o][0]),i[o]=0;for(n in s)Object.prototype.hasOwnProperty.call(s,n)&&(e[n]=s[n]);for(l&&l(t);c.length;)c.shift()()}var n={},i={0:0};function o(t){if(n[t])return n[t].exports;var i=n[t]={i:t,l:!1,exports:{}};return e[t].call(i.exports,i,i.exports,o),i.l=!0,i.exports}o.e=function(){return Promise.resolve()},o.m=e,o.c=n,o.d=function(e,t,n){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(o.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)o.d(n,i,function(t){return e[t]}.bind(null,i));return n},o.n=function(e){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
https://drive.google.com/folderview?id=1B-OfSxlbRYEseZrM1Jvn_4mEfLokcscd |
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
# It was helpful for me when I have to provide | |
for class_name in models.autogenerate: | |
serializer_name = class_name+'Serializer' | |
view_name = class_name+'SetAuto' | |
globals()[view_name] = type( | |
view_name, | |
(viewsets.ModelViewSet,), | |
{ |
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
<? | |
$arg = array( | |
'form_id' => $opts['subscription_form'], | |
'item_key' => FrmAppHelper::get_unique_key( | |
'', $pre . 'frm_items', 'item_key', 0 ), | |
'item_meta' => array( | |
$opts['subscription_id'] => $payment->response->getSubscriptionId(), | |
$opts['subscription_pre_payment_id'] => $payment->entry->id, | |
$opts['subscription_date'] => $metas[$opts['recur_date']], | |
$opts['subscription_amount'] => $metas[$opts['recur_amount']], |
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
select it.id as 'ID(child)', | |
it.parent_item_id as 'Parent ID', | |
parA.meta_value as 'Payment status(parent)', | |
parB.meta_value as 'Reg phase', | |
col0.meta_value as 'Attendee status', | |
colA.meta_value as 'First Name', | |
colB.meta_value as 'Last Name', | |
colC.meta_value as 'ASI Member', | |
COALESCE( |
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
<!--1) include something like that in your form or registration page --> | |
<a href='' class='show-exhibitor-map'><h4><span style="color:red;">IMPORTANT:</span> Select your booth here.</h4></a> | |
<!-- For exhibitor map --> | |
<div class='map-container'><div class='the-page'></div> </div> | |
<!-- End exhibitor 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
#!/bin/bash | |
EXPECTED_ARGS=3 | |
E_BADARGS=65 | |
MYSQL=`which mysql` | |
Q1="CREATE DATABASE IF NOT EXISTS $1;" | |
Q2="GRANT USAGE ON *.* TO $2@localhost IDENTIFIED BY '$3';" | |
Q3="GRANT ALL PRIVILEGES ON $1.* TO $2@localhost;" | |
Q4="FLUSH PRIVILEGES;" |
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 argparse | |
import subprocess | |
import os | |
import sys | |
import BaseHTTPServer | |
from SimpleHTTPServer import SimpleHTTPRequestHandler | |
import requests | |
from lxml import etree |
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
To fix option true to FALSE changed in this line of views/slider_list.php | |
<td><input type="checkbox" name="use_cache" <?php echo get_option('ls_use_cache', false) ? 'checked="checked"' : '' ?>></td> |