This file contains 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
/** | |
* @author Mahadir Ahmad | |
**/ | |
#include <iostream> | |
#include <fstream> | |
#include <string> | |
using namespace std; | |
This file contains 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 | |
/** | |
* Created by PhpStorm. | |
* User: Mahadir | |
* Date: 6/22/2015 | |
* Time: 7:23 AM | |
* | |
* Forking 50 threads which each thread | |
* have processing time within 0-3 seconds | |
* The Total Execution Time should be |
This file contains 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
/** | |
*@author Mahadir Ahmad | |
*Revision | |
* 22/11/2015 - Able to grab lesson or series | |
* | |
* Laracast Video download link grabber | |
* This script is used with IDM | |
* 0. Visit any laracast series (eg: https://laracasts.com/series/whats-new-in-laravel-5-1/episodes/1) | |
* 1. Open Chrome console | |
* 2. paste this script and hit enter |
This file contains 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 | |
/** | |
* Created by PhpStorm. | |
* User: Mahadir | |
* Date: 3/15/2016 | |
* Time: 2:12 PM | |
*/ | |
class Dice { |
This file contains 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 | |
/** | |
* Created by PhpStorm. | |
* User: Mahadir | |
* Date: 2/6/2016 | |
* Time: 10:04 PM | |
*/ | |
date_default_timezone_set("Asia/Kuala_Lumpur"); | |
set_time_limit ( 300); | |
error_reporting(E_ALL ^ E_NOTICE); |
This file contains 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 | |
$offerId = intval($_GET['offer_id']); | |
$orderId = $_GET['adv_sub']; | |
$amount = floatval($_GET['amount']); | |
$transactionId = $_GET['transaction_id']; | |
//do whatever you want to do with the variables | |
//ie cross check database for clicks and save into database |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
x1 | x2 | y | ||
---|---|---|---|---|
0 | 2.3168004303372607 | 2.899064354233701 | 61.17221552432652 | |
1 | 2.0237264103698185 | 2.1412428090988036 | 29.149660910376042 | |
2 | 2.4835479882676395 | 2.81328188438866 | 61.75170142264721 | |
3 | 2.0583352195322435 | 2.994135717555901 | 57.97075305521006 | |
4 | 2.681822629278009 | 2.8698354246937043 | 69.38952395076802 | |
5 | 2.4591808193357796 | 2.739151704330056 | 57.96588982491449 | |
6 | 2.1624758562131063 | 2.114451893392963 | 30.373634154994257 | |
7 | 2.8036711741614107 | 2.712502358656134 | 64.8062957132921 | |
8 | 2.5257448771289788 | 2.186162614369698 | 37.92313916718973 |
This file contains 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.zjw.wearheart.service; | |
import android.annotation.SuppressLint; | |
import android.app.Notification; | |
import android.app.PendingIntent; | |
import android.app.Service; | |
import android.bluetooth.BluetoothAdapter; | |
import android.bluetooth.BluetoothAdapter.LeScanCallback; | |
import android.bluetooth.BluetoothDevice; | |
import android.bluetooth.BluetoothGatt; |
This file contains 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
-----BEGIN PUBLIC KEY----- | |
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmKdQSV+JwuIQF+t1iISu | |
kHNffIDWMcr6v8L9CI1U+9LOF1xNPw7IlhubU+nLWUqGxKnFfadkB7lQCthoK+lb | |
wbVCUmUXx3vao8N61BWwWLJtlvZdp5Pz2oMQzadzIU4swzIZtTg3uPHtx+p3y5Yc | |
EKkDk3hMcEPWLzvIxSmgDTlI8HSehX7QCM29hXUpl9iXXnAAcipXQtOktmWaU731 | |
X4SMs93XIFlW2ujyde7zvd3/XTmQWTwYPQhk+OyYIBRFWijOrXGp9q5Vbz5Z+XHY | |
1esaH64xfiZZON6xLAWqh3AadqXSEJy0gqmg2MOu0CD1RgPT+mAiVXbayHWe3GnY | |
bwIDAQAB | |
-----END PUBLIC KEY----- |
OlderNewer