Microsoft Visual C++ 2005 Redistributable Package (x64)
Microsoft Visual C++ 2005 Redistributable Package (x86)
Microsoft Visual C++ 2005 SP1 Redistributable Package (x86)
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript"></script> | |
| <script src="http://connect.facebook.net/fr_FR/all.js"></script> | |
| <script> | |
| // Replace the id by any other public page id | |
| FB.api('170913076256527/feed', { limit: 3 }, function(result) { | |
| $('#fb-feed').empty(); | |
| $(result.data).each(function(i, post) { | |
| entry = $('<div class="fb-item"></div>'); | |
| if (post.icon) { | |
| entry.append('<img class="icon" src="' + post.icon + '" />'); |
| """ | |
| MIT License | |
| Copyright (c) 2017 Cyrille Rossant | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is |
| MIT License | |
| Copyright (c) 2014 Piotr Kuczynski | |
| Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |
| The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | |
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWAR |
| 1. Check Python3 root | |
| >>> import sys | |
| >>> import os | |
| >>> sys.executable | |
| '/usr/local/bin/python3' | |
| OR | |
| $ which python3 | |
| /usr/local/bin/python3 |
| ### | |
| ### | |
| ### UPDATE: For Win 11, I recommend using this tool in place of this script: | |
| ### https://christitus.com/windows-tool/ | |
| ### https://github.com/ChrisTitusTech/winutil | |
| ### https://www.youtube.com/watch?v=6UQZ5oQg8XA | |
| ### iwr -useb https://christitus.com/win | iex | |
| ### | |
| ### OR take a look at | |
| ### https://github.com/HotCakeX/Harden-Windows-Security |
| <Name>IDM Full ToolKit</Name> | |
| <Version>4.7</Version> | |
| <Download>https://onedrive.live.com/download?cid=860C6C270D0296DF&resid=860C6C270D0296DF%21175&authkey=APaTYii-uJSRpD0</Download> | |
| link khác: | |
| https://uploading.vn/vtyktzy6ukao | |
| https://veryfiles.com/apcik7jdp3wz | |
| [IDM Toolbar] | |
| <URL>https://drive.google.com/uc?export=download&id=0B3sqdC3gTItxWDNubEFCZEI0RkE</URL> |
| // No Security | |
| { | |
| "rules": { | |
| ".read": true, | |
| ".write": true | |
| } | |
| } |
| /* | |
| * Server.cpp | |
| * | |
| * EventServer is a simple C++ TCP socket server implementation, | |
| * to serve as an example to anyone who wants to learn it. | |
| * It can interface with the rest of your program using three callback functions. | |
| * - onConnect, which fires when a new client connects. the client's fd is passed. | |
| * - onDisconnect, which fires when a client disconnects. passes fd. | |
| * - onInput, fires when input is received from a client. passes fd and char* | |
| * |
| import requests | |
| import json | |
| USER_TOKEN = "" #Fill your fb user token (open https://facebook.com/me, ctrl +u and copy access token | |
| SHIELD_ENABLE = "true" #Change to false if turn off shield | |
| def get_userid(token): | |
| url = "https://graph.facebook.com/me?access_token=%s" % token |