vendredi 16 juillet 2021

Windows SystemGuard, the best solution for boosting your Windows 10 operating system.

 Windows SystemGuard is a new solution that works on a services whitelist. It continuously scans for running services and stops those that are not in the whitelist.

It incredibly boosts your Windows 10 performances, as useless services are immediately shutdown as soon as they start in background.

It can be a great solution for gamers but also for anyone who needs to get the maximum of power out of his/her computer.

You can download Windows System Guard at : https://github.com/reuniware/WindowsBooster

You can contact the developer at : InvestDataSystems@Yahoo.com


vendredi 28 mai 2021

jeudi 29 avril 2021

Trending cryptocurrencies on Binance (in USDT)

On 29th of April 2021, 8:00pm here are the trending cryptocurrencies to check in 4-hour timeframe on the Binance exchange :

$DOGE $BAKE $LINK $XRP $CHZ $CAKE $IOST $EGLD $XRP $BTT $ENJ $BONDLY $PERP $JUV $THETA $TFUEL $WIN $MTL $BAND $OGN $NKN $FTT $PNT $AUDIO $ATM $DGB $MKR $STORJ $FIO $UMA $XLM $CELR $GTO $LTO $BZX

One that is not listed on Binance and that is a "shitcoin" is :

$RFOX (promising shitcoin according to the Ichimoku market reading system).


vendredi 26 mars 2021

mercredi 3 février 2021

Blog Google Project Zero

 https://googleprojectzero.blogspot.com/


About Project Zero

Formed in 2014, Project Zero is a team of security researchers at Google who study zero-day vulnerabilities in the hardware and software systems that are depended upon by users around the world. Our mission is to make the discovery and exploitation of security vulnerabilities more difficult, and to significantly improve the safety and security of the Internet for everyone. 

We perform vulnerability research on popular software like mobile operating systems, web browsers, and open source libraries. We use the results from this research to patch serious security vulnerabilities, to improve our understanding of how exploit-based attacks work, and to drive long-term structural improvements to security.

vendredi 15 janvier 2021

How to view crash logs with adb logcat ?

 Use the following command, after the crash happens :

adb logcat AndroidRuntime:E *:S

jeudi 14 janvier 2021

How to build an universal APK when using NDK C++ in Android Studio ?

 In the module build.gradle, add the following lines in the android section :

splits {
abi {
enable true
reset()
universalApk true
}
}

Then when you build the APK (even the debug one), it will install on all Android devices.