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 add(int num1,int num2) | |
| { | |
| __asm { | |
| mov eax, num1 | |
| add eax, num2 | |
| } | |
| } |
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 | |
| /* | |
| * A way to to type cast objects before php7 | |
| */ | |
| class test{ | |
| private $string = array('typeof' => 'string', 'value' => null); | |
| private $int = array('typeof' => 'integer', 'value' => null); | |
| private $double = array('typeof' => 'double', 'value' => null); | |
| private $testObj = array('typeof' => 'test', 'value' => null); |
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 | |
| /** | |
| * wooManager to manage subscription based products | |
| * Written By Derek Sisco | |
| */ | |
| class wooManager | |
| { |
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
| package com.tracker.mainecivichackers.tracker; | |
| import android.os.AsyncTask; | |
| import java.io.BufferedReader; | |
| import java.io.IOException; | |
| import java.io.InputStreamReader; | |
| import java.net.CookieHandler; | |
| import java.net.CookieManager; | |
| import java.net.CookiePolicy; |