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
| <!DOCTYPE html> | |
| <!--[if lt IE 7 ]><html class="ie ie6" <?php language_attributes();?>> <![endif]--> | |
| <!--[if IE 7 ]><html class="ie ie7" <?php language_attributes();?>> <![endif]--> | |
| <!--[if IE 8 ]><html class="ie ie8" <?php language_attributes();?>> <![endif]--> | |
| <!--[if IE 9 ]><html class="ie ie9" <?php language_attributes();?>> <![endif]--> | |
| <!--[if (gt IE 9)|!(IE)]><!--><html <?php language_attributes();?>> <!--<![endif]--> | |
| <head> | |
| <meta name="robots" content="INDEX,FOLLOW" /> | |
| <meta name="author" content="stem cells"> | |
| <title><?php if ( is_category() ) { |
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> | |
| int main() | |
| { | |
| float cel,far; | |
| int ch; printf("Enter ur celcious value1: \n"); | |
| scanf("%f",&cel); | |
| far=(cel*1.8)+32; | |
| printf("Fahrenheit: %0.2f",far); switch(ch) | |
| { |
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 | |
| /* | |
| * Class Name: class.mashsharer.php | |
| * Author: Rene Hermenau | |
| * @version 1.0.9 | |
| * @scince 1.1.1 | |
| * Description: main class for mashsharer | |
| */ | |
| // Exit if accessed directly |
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
| mashpy@mashpy-desktop:~$ ssh -i /home/mashpy/viralcamel.pem [email protected] -v | |
| OpenSSH_6.0p1 Debian-3ubuntu1, OpenSSL 1.0.1c 10 May 2012 | |
| debug1: Reading configuration data /etc/ssh/ssh_config | |
| debug1: /etc/ssh/ssh_config line 19: Applying options for * | |
| debug1: Connecting to 54.187.2.41 [54.187.2.41] port 22. | |
| debug1: Connection established. | |
| debug1: identity file /home/mashpy/viralcamel.pem type 1 | |
| debug1: Checking blacklist file /usr/share/ssh/blacklist.RSA-2048 | |
| debug1: Checking blacklist file /etc/ssh/blacklist.RSA-2048 | |
| debug1: identity file /home/mashpy/viralcamel.pem-cert type -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
| ১০ । এখন আমাদের www-data এর পারমিশন ঠিক করতে হবে । কমান্ড লিখুন - | |
| sudo chown username:www-data /var/www -R | |
| sudo chmod g+w /var/www -R | |
| এখানে আপনার পিসির বর্তমান লগিন থাকা অবস্থার ইউজার নেম লিখবেন। আমার ইউজার নেম poly তাই আমার কমান্ড - | |
| sudo chown poly:www-data /var/www -R | |
| sudo chmod g+w /var/www -R |
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
| Your Google Wallet is currently suspended because we were unable to verify the credit or debit card information for your recent transaction. For your security, we need you to follow a few simple steps to ensure your information is correct. | |
| What do I need to complete the form? To confirm your financial identity and protect your account, you'll need to scan or take pictures (using your cell phone, for example) of the following verification documents, and then upload them to this form: | |
| One non-expired government-issued identification. | |
| One document with your billing address dated within the last four months that shows the same address on file in your Google Wallet (if you can't remember the billing address in your Wallet, or you have multiple, use your most recent home address). | |
| What does this mean for my current order and charges on my card statement? Your order has been canceled and your card was not charged. If you see activity on your statement for your canceled order it's just an authorization, |
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
| if ( current_user_can( 'manage_options' ) ) { | |
| echo "do something"; | |
| } | |
| প্লাগিনে wp_current_user নিয়ে সমস্যা হতে পারে। সে জন্য এটা ব্যবহার করা যেতে পারে। | |
| if(!function_exists('wp_get_current_user')) { | |
| include(ABSPATH . "wp-includes/pluggable.php"); | |
| } | |
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://www.nitrous.io/join/SgphmYOSgV0?utm_source=nitrous.io&utm_medium=copypaste&utm_campaign=referral | |
| [email protected] | |
| [email protected] |
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.git init | |
| 2.git config user.name "someone" | |
| 3.git config user.email "[email protected]" | |
| 4.git add * | |
| 5.git commit -m "some init msg" |
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
| mysqldump -u [uname] -p[pass] db_name > db_backup.sql |