This file contains hidden or 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
| SELECT p.* | |
| FROM wp_postmeta AS pm | |
| INNER JOIN wp_posts AS p ON pm.meta_value=p.ID | |
| INNER JOIN wp_posts AS parent ON p.post_parent = parent.`ID` | |
| WHERE pm.meta_key = '_thumbnail_id' | |
| AND parent.post_status = 'publish' | |
| /* You can add more conditions for posts like post type etc. */ | |
| ORDER BY p.post_date DESC |
This file contains hidden or 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
| module.exports = { | |
| http: function(cont, options, next) { | |
| if (cont.$root.$get('nanobar.value') > 1) { | |
| return false; | |
| } | |
| cont.$root.$get('nanobar').go(20) |
This file contains hidden or 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
| .htaccess | |
| ----- | |
| RewriteEngine on | |
| RewriteRule ^([a-z]{2}(-[A-Z]{2})?)/(.*) $3?lang=$1 [L,QSA] | |
| index.php | |
| ----- | |
| <?php |
This file contains hidden or 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
| ffmpeg -loop 1 -i img.jpg -t 30 output.mp4 |
This file contains hidden or 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
| sudo killall httpd | |
| sudo apachectl -k restart | |
| sudo apachectl -k stop | |
| sudo apachectl stop |
This file contains hidden or 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
| var sviti = 0; | |
| function rozsvit() { | |
| var zarovka = document.getElementById('zarovka'); | |
| if (sviti == 0) { | |
| zarovka.src = "zarovka_sviti.jpg"; | |
| sviti = 1; | |
| } else { |
This file contains hidden or 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
| #ctverec{ | |
| width: 200px; | |
| height: 200px; | |
| background-color: pink; | |
| position: absolute; | |
| top: 100px; | |
| left: 100px; | |
| border-radius: 100%; | |
This file contains hidden or 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
| $file = __DIR__ . '/../data/twitter.json'; | |
| $tweets = array(); | |
| if(!file_exists($file) || (file_exists($file) && time()-filemtime($file) >= 3600)){ | |
| try { | |
| $data = self::get_twitter_data(); | |
| } catch (Exception $e) { | |
| $data = array(); | |
| } |
This file contains hidden or 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
| add_action('phpmailer_init', function( PHPMailer $phpmailer ){ | |
| $phpmailer->isSMTP(); | |
| $phpmailer->Host = 'smtp.mandrillapp.com'; | |
| $phpmailer->SMTPAuth = true; | |
| $phpmailer->Port = 587; | |
| $phpmailer->Username = 'USERNAME'; | |
| $phpmailer->Password = 'APIKEY'; | |
| $phpmailer->SMTPSecure = 'tls'; | |
| $phpmailer->addCustomHeader('X-MC-Subaccount', 'SUBACCOUNT'); | |
| $phpmailer->setFrom('[email protected]', 'Default Title'); |
This file contains hidden or 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
| configure: creating cache /Users/ladislavjanecek/.phpbrew/cache/config.cache | |
| ./configure: line 3188: /Users/ladislavjanecek/.phpbrew/cache/config.cache: No such file or directory | |
| checking for grep that handles long lines and -e... /usr/bin/grep | |
| checking for egrep... /usr/bin/grep -E | |
| checking for a sed that does not truncate output... /usr/bin/sed | |
| checking build system type... x86_64-apple-darwin19.4.0 | |
| checking host system type... x86_64-apple-darwin19.4.0 | |
| checking target system type... x86_64-apple-darwin19.4.0 | |
| checking for cc... cc | |
| checking whether the C compiler works... yes |
OlderNewer