This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function($) { | |
var backgroundColors = ['#00AAF7','#FF6C00','#243341','#FF0D3E','#64BB21']; | |
$('.profilebox li img').each(function(){ | |
if ($(this).attr('src').indexOf('nophoto.png') !== -1) | |
{ | |
var userName = $(this).attr('alt').replace('\'s Avatar','');; | |
console.log(userName); | |
var matches = userName.match(/\b(\w)/g); | |
console.log(matches); | |
if (matches) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Please see my video: https://drive.google.com/file/d/0B0q3Kha3KEfUZFhsdFA2MlpuU2s/view?usp=sharing | |
//Code: | |
//ID of password field | |
$field_id = 28; | |
//List of password | |
$accepted = array('bravebits','joomlashine','woorocket','sellersmith','golden','river'); | |
if (!in_array($post['password'][$field_id][0], $accepted)) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GET /entitlements/v1/token | |
GET /lol-account-verification/v1/device | |
POST /lol-account-verification/v1/invalidate | |
GET /lol-account-verification/v1/is-verified | |
POST /lol-account-verification/v1/send-token | |
POST /lol-account-verification/v1/verify | |
POST /lol-acs/v1/acs-endpoint-override | |
GET /lol-acs/v1/delta | |
GET /lol-acs/v1/games/{gameId} | |
GET /lol-acs/v1/gametimelines/{gameId} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
READ AND REMOVE ME: Replace this.$store.state.blogs.data by your items array | |
READ AND REMOVE ME: currentScrollPosition + 1000 mean only render from current position + 1000px, you can change as you want | |
<template> | |
<table class="table table-fixed"> | |
<thead> | |
<tr> | |
<th scope="col">Content</th> | |
</tr> | |
</thead> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Random rd = new Random(); | |
string remote_port = rd.Next(9000, 9999).ToString(); | |
// Open real Chrome | |
Process process = new Process(); | |
process.StartInfo.UseShellExecute = true; | |
process.StartInfo.FileName = "chrome"; | |
process.StartInfo.Arguments = "https://thgiang.com --load-extension=\"C:\\Users\\Admin\\Desktop\\my_extension\" --disable-gpu --new-window --remote-debugging-port=" + remote_port + " --user-data-dir=\"C:\\Profile\" --proxy-server=\""+proxy+"\" --disable-infobars --disable-notifications --window-size=1366,768"; //--window-position=0,0 --window-size=1200,800 --disable-images | |
process.Start(); | |
Thread.Sleep(1000); |