اپلیکیشن چینی بدهکاران را لو می دهد!

به نقل از سایت اخبار فناوری اطلاعات و ارتباطات ، فن آوری های نوین :    

به گزارش خبرگزاری مهر به نقل از دیلی میل، مقامات چینی اپلیکیشنی ساخته اند که افراد بدهکار ی که در نزدیکی کاربر هستند را نشان می دهد.

به نوشته روزنامه چاینا دیلی، مقامات ایالت «هبی» (Hebi) اپلیکیشنی به نام «نقشه بدهکاران بدحساب» را ابداع کرده اند که می توان از طریق شبکه اجتماعی WeChat به آن دسترسی یافت. هنگامیکه کاربر  در ۵۰۰ متری یک بدهکار بدحساب باشد، این اپلیکیشن به کاربر هشدار می دهد.

 همچنین این اپلیکیشن مکان دقیق بدهکار را نشان می دهد هرچند  مشخص نیست اطلاعات شخصی او نمایش داده می شود یا خیر.

این ابزار با هدف نظارت بر افراد بدهکار ابداع شده و هنوز مشخص نیست فرد با چه میزان بدهی در این اپلیکیشن نشان داده می شود.

همچنین کاربران می توانند با کمک اپلیکیشن بدهکارانی که توانایی پرداخت بدهی خود را دارند نیز لو بدهند.

اپلیکیشن مذکور در حالی عرضه می شود که چین قصد دارد با ایجاد اصلاحاتی در سیستم اعتبار اجتماعی تغییراتی در حوزه وام ایجاد کند.

115
0 0

لینک های مفید

طراحی لوگو دراصفهان

بانک اطلاعات مشاغل رایگان
لوازم یدکی جک JAC

کتاب های ادبیات آمریکای لاتین

سنگ چینی

کرم گریم


$(window).load(function () { 'use strict'; function activeStickyKit() { $('[data-sticky_column]').stick_in_parent({ parent: '[data-sticky_parent]' }); // bootstrap col position $('[data-sticky_column]') .on('sticky_kit:bottom', function (e) { $(this).parent().css('position', 'static'); }) .on('sticky_kit:unbottom', function (e) { $(this).parent().css('position', 'relative'); }); }; activeStickyKit(); function detachStickyKit() { $('[data-sticky_column]').trigger("sticky_kit:detach"); }; var screen = 768; var windowHeight, windowWidth; windowWidth = $(window).width(); if ((windowWidth < screen)) { detachStickyKit(); } else { activeStickyKit(); } // windowSize // window resize function windowSize() { windowHeight = window.innerHeight ? window.innerHeight : $(window).height(); windowWidth = window.innerWidth ? window.innerWidth : $(window).width(); } windowSize(); // Returns a function, that, as long as it continues to be invoked, will not // be triggered. The function will be called after it stops being called for // N milliseconds. If `immediate` is passed, trigger the function on the // leading edge, instead of the trailing. function debounce(func, wait, immediate) { var timeout; return function () { var context = this, args = arguments; var later = function () { timeout = null; if (!immediate) func.apply(context, args); }; var callNow = immediate && !timeout; clearTimeout(timeout); timeout = setTimeout(later, wait); if (callNow) func.apply(context, args); }; }; $(window).resize(debounce(function () { windowSize(); $(document.body).trigger("sticky_kit:recalc"); if (windowWidth < screen) { detachStickyKit(); } else { activeStickyKit(); } }, 250)); });