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
Nicehash | |
YOUR BTC MINING AND DEPOSIT ADDRESS: | |
Wallet: 3K3VYaiXtV2eMDi3rVanYhxsq1xvyYFVpV | |
Blockchain | |
Bitcoin: 1EJdALUCjrsDEQehtrE48vgm9aJD5q5Rss | |
Ethereum: 0xDA15e9682a3140C86e141F1CA1f7d7ED7Ae6A00B | |
Wallet id: b46e2ed2-5bc3-4759-8c65-208a4d0fca75 |
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 | |
$soapOptions = [ | |
'stream_context' => stream_context_create( | |
[ | |
'ssl' => [ | |
'verify_peer' => false, | |
'verify_peer_name' => false, | |
], | |
] | |
) |
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 | |
$soapOptions = [ | |
'stream_context' => stream_context_create( | |
[ | |
'ssl' => [ | |
'verify_peer' => false, | |
'verify_peer_name' => false, | |
], | |
] | |
) |
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
<form id="goto_mellat_bank" class="form-horizontal goto-bank-form" method="POST" action=""> | |
<input type="hidden" name="RefId" value="{{$refId}}" /> | |
<div class="control-group"> | |
<div class="controls"> | |
<button type="submit" class="btn btn-success">Goto MEllat Gateway</button> | |
</div> | |
</div> | |
</form> |
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 | |
$soapOptions = [ | |
'stream_context' => stream_context_create( | |
[ | |
'ssl' => [ | |
'verify_peer' => false, | |
'verify_peer_name' => false, | |
], | |
] | |
) |
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
CREATE PROCEDURE sp_InsertCustomer | |
@CustomerId uniqueidentifier, | |
@CustomerName nvarchar(150), | |
@CardNo nvarchar(50), | |
@PhoneNo nvarchar(50), | |
@Province nvarchar(100), | |
@City nvarchar(100), | |
@Address nvarchar(200), | |
@Mobile nvarchar(30), | |
@Flag tinyint, |
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/sh | |
# block torrent traffic by iptable/firewall for VPN/Proxy server | |
# [email protected] | |
# Delete all existing rules | |
iptables -F | |
# Set default chain policies | |
iptables -P INPUT DROP | |
iptables -P FORWARD DROP |
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/sh | |
# Installation | |
# - Move this to /etc/init.d/myservice | |
# - chmod +x this | |
# | |
# Starting and stopping | |
# - Start: `service myservice start` or `/etc/init.d/myservice start` | |
# - Stop: `service myservice stop` or `/etc/init.d/myservice stop` | |
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 | |
function ago($tm, $lang = 'fa', $ashtml = true) { | |
$local = array('style' => array('fa' => 'style="<a href="http://direction:rtl">direction:rtl</a>;"', | |
'en' => 'style="<a href="http://direction:ltr">direction:ltr</a>"'), | |
'times' => array( | |
'fa' => array('ثانیه', 'دقیقه', 'ساعت', 'روز', 'هفته', 'ماه', 'سال', 'دهه'), | |
'en' => array('second', 'minute', 'hour', 'day', 'week', 'month', 'year', 'decade')), | |
'ago' => array('fa' => 'پیش', 'en' => 'ago')); | |
if (intval($tm) > 0) { | |
$cur_tm = time(); |
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
# This is an example resource file for rTorrent. Copy to | |
# ~/.rtorrent.rc and enable/modify the options as needed. Remember to | |
# uncomment the options you wish to enable. | |
# Maximum and minimum number of peers to connect to per torrent. | |
min_peers = 1 | |
max_peers = 100 | |
# Same as above but for seeding completed torrents (-1 = same as downloading) |