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 | |
/* | |
Plugin Name: Xpert Feature | |
Plugin URI: http://themexpert.com/wordpress-plugins/xpert-team | |
Version: 1.0 | |
Author: ThemeXpert | |
Authro URI : http://www.themexpert.com | |
Description: Supercharge your WordPress team plugin | |
License: GPLv2 or later | |
Text Domain: xf |
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 | |
/* | |
Plugin Name: Xpert Feature | |
Plugin URI: http://themexpert.com/wordpress-plugins/xpert-team | |
Version: 1.0 | |
Author: ThemeXpert | |
Authro URI : http://www.themexpert.com | |
Description: Supercharge your WordPress team plugin | |
License: GPLv2 or later | |
Text Domain: xf |
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($) { | |
$( "#sortable" ).sortable({ | |
placeholder: "portlet-placeholder ui-corner-all", | |
revert: true | |
}); | |
$( ".draggable" ).draggable({ | |
connectToSortable: "#sortable", | |
helper: "clone", |
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="wp-social-box"> | |
<h3>Xpert Optin Option</h3> | |
<form class="optin-form" method="post"> | |
<div class="width-70"> | |
<label for="title">On Page Load</label> | |
<input type="checkbox" name="block_one" value="onloadValue"></input> | |
</div> | |
<div class="width-70"> | |
<label for="block_one_position">Select</label> |
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
#include <stdio.h> | |
#include <stdlib.h> | |
int flag = 0, | |
output = 0, | |
loopInt = 0, | |
modulus = 0, | |
mutiplication = 0, | |
sum = 0; | |
//int square = 1; |
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 ObscuringReferences | |
attr_reader :data | |
def initialize(data) | |
@data = data | |
end | |
def diameters | |
data.collect { |cell| | |
cell[0] + (cell[1] * 2) } | |
end |
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
//Recursive function | |
#include <stdio.h> | |
#include <stdlib.h> | |
int arg; | |
int newVar; | |
int modulus[10]; | |
int i=0; | |
void recusiveMain(arg){ |
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 = 'Hi' | |
puts "#@var there!" #=> "Hi there!" | |
$var = 'Hi' | |
puts "#$var there!" #=> "Hi there!" |
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
//Decimal To Octal Recursive function | |
#include <stdio.h> | |
#include <stdlib.h> | |
int arg; | |
int newVar; | |
int modulus[10]; | |
int i=0; | |
void recusiveMain(arg){ |
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
//Decimal To Binary Recursive function | |
#include <stdio.h> | |
#include <stdlib.h> | |
int arg; | |
int newVar; | |
int modulus[10]; | |
int i=0; | |
void myFunction(arg){ |