Tessellated Intelligence System
레퍼런스 매뉴얼
음--
| // If you want to see an explanation of the code, please refer to the previous revisions | |
| (this.disablePingToDefault = () => { | |
| this.disablePingToDefault.interval = setInterval(() => { | |
| if (location.href !== this.disablePingToDefault.currentUrl) { | |
| if (this.disablePingToDefault.observer !== undefined) | |
| this.disablePingToDefault.observer.disconnect(); | |
| else { | |
| this.disablePingToDefault.observer = new MutationObserver(() => | |
| document.querySelector('div[class*="mentionButton"]')?.click() | |
| ); |
| <?php | |
| function get_ip(){ | |
| if( ! empty( $_SERVER['HTTP_CLIENT_IP'] ) ){ | |
| $ip = $_SERVER['HTTP_CLIENT_IP']; | |
| } | |
| elseif( ! empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ){ | |
| $ip = $_SERVER['HTTP_X_FORWARDED_FOR']; | |
| } | |
| else{ | |
| $ip = $_SERVER['REMOTE_ADDR']; |
| ############################################################################### | |
| # The MIT License | |
| # | |
| # Copyright 2012-2014 Jakub Jirutka <[email protected]>. | |
| # | |
| # 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 |