HCPP DEV | (uint8_t)0x539
71 subscribers
327 photos
43 videos
69 files
296 links
Разработка на С++
в Visual Studio 2026 Community
И немного хуйни
пиздатый сайт мой https://hcpp20334.github.io
пиздатый гитхаб https://github.com/hcpp20334

помочь проекту
https://donationalerts.com/r/hcpp
Download Telegram
гайсы как работать с геймпадами в js?
Forwarded from HCPP DEV
Media is too big
VIEW IN TELEGRAM
бля мк11 имба на ультрах)
это я играю на пк)
стрим надо? Я в 20:00
Anonymous Poll
100%
да
0%
нет
Ок. Стриму быть) к 20:00 по мск. Но запущу раньше , чтобы технические моменты исправить
This media is not supported in your browser
VIEW IN TELEGRAM
Привет!! Хочу сегодня стрим запустить. Надо?
Final Results
36%
Да
64%
Нет
А завтра надо?
Final Results
67%
ДА
33%
НЕТ
окей ребята!! Завтра стрим будет
ГОООЙДА
🤡1
This media is not supported in your browser
VIEW IN TELEGRAM
😁2
это про тех кто клоуна ставит
This media is not supported in your browser
VIEW IN TELEGRAM
Зацените игру))
https://hcpp20334.github.io/wtfdx/
This media is not supported in your browser
VIEW IN TELEGRAM
🔥1
HCPP DEV
🌴 Sticker
А вот инета у меня нет.
😁2
Получение данных по IP

`
function logL(t){
console.log(t);
}
function dox(ip){
    let API_KEY = 'https://api.2ip.io/'+ip+'?token=<свой токен>&lang=ru';
    fetch(API_KEY) 
                .then( 
                  function(response) { 
                    if (response.status !== 200) { 
                      logL('Looks like there was a problem. Status Code: ' + 
                        response.status); 
                       
                      return; 
                    }
             
                    // Examine the text in the response 
                    response.json().then(function(data) { 
                       // LogL("YOU DOXSED");
                        logL("IP:"+data.ip);  
                        logL("country:"+data.country);
                        logL("lat:"+data.lat);
                        logL("lon:"+data.lon);
                        logL("timezone:"+data.timezone);
                        console.log(data);
                }); 
                  } 
                ) 
                .catch(function(err) { 
                  this.log('Fetch Error :-S' + err); 
                });
}