Skip to content

Instantly share code, notes, and snippets.

[1/25/17, 2:00:38 PM] Soporte L1 Xius: Please increase 61 field on the request of the inquiry, in this value you must send the value in field 37 of the recharge
[1/25/17, 2:01:56 PM] yildirim.serdar: oh
[1/25/17, 2:02:11 PM] yildirim.serdar: ok, give me a couple of minutes, i’ll try with field 61 set
[1/25/17, 2:05:12 PM] yildirim.serdar: ok, just did that and still getting the same response
[1/25/17, 2:05:20 PM] yildirim.serdar: request: 02202 �600000000000000200012522042655566601250011409159701116555666 JUVOTERM0000000000000000000000000000000000000050375314887 013010JUVO______840006555666
[1/25/17, 2:05:32 PM] yildirim.serdar: response: 02303A2084810BE1C00C600000000000000200000000000000012522042655566601250011409159701116555666 0000JUVOTERM0000000000000000000000000000000000000050375314887 013010JUVO______8400000065556660010
[1/25/17, 2:05:38 PM] Soporte L1 Xius: one moment
[1/25/17, 2:06:05 PM] Soporte L1 Xius: send a new recharges
[1/25/17, 2:07:07 PM] yildirim.serdar: sure
[1/25/17, 2:

Keybase proof

I hereby claim:

  • I am serdary on github.
  • I am serdary (https://keybase.io/serdary) on keybase.
  • I have a public key whose fingerprint is 2D12 6104 51A6 E922 5347 6077 7DE9 56F0 683C 8ED5

To claim this, I am signing this object:

@serdary
serdary / gist:9821773
Created March 27, 2014 23:47
node code to verify & listen facebook real time subscription events
var qs = require('querystring');
var verifyToken = 'tekken';
var processRequest = function(req, callback) {
var body = '';
req.on('data', function (data) {
body += data;
});
req.on('end', function () {
@serdary
serdary / das_download.rb
Last active December 11, 2015 00:59 — forked from kalbasit/das_download.rb
Edited to download ios screencast file too. - Downloads all DAS screencasts, forked from eMxyzptlk
#! /usr/bin/env ruby
# usage:
# $ das_download.rb email password [download_directory]
require 'mechanize'
# gem 'mechanize-progressbar'
email = ARGV[0] or raise('Please provide the email address for your account')
password = ARGV[1] or raise('Please provide the password for your account')
path = (ARGV[2] || './').gsub /\//,''