You won't get a fully-functional installation! At the time of writing, it turned out gem
is kind of broken on Ruby 2.3.0. Ruby gem installation fails with an error like kernel_require.rb:54:in
require': cannot load such file -- win32/resolv`.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
<!-- about us --> | |
<section style="display:flex;justify-content:center;flex-wrap:wrap;margin-top:30px"> | |
<div style="display:flex;align-items:center"> | |
<div class="icon" style="margin:7px;width:252px;"> | |
<img src="https://img.icons8.com/ios-glyphs/90/000000/batman-new.png"> | |
</div> | |
<div class="description"> | |
<h2>Quality Materials</h2> | |
<p>A good product that is looked after is likely to have an extended life, which means we don't need to make as many of them. As proof of our commitment to making long-lasting products, our axes come with a 20 year guarantee.</p> |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
<style> | |
button{ | |
min-width: 45px; | |
/*background-color: #FFCC66;*/ | |
} |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> | |
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script> | |
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script> | |
</head> | |
<body> |
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
// Variables - переменные | |
// var lol; | |
// lol = "мое настоящее имя"; | |
// alert(lol); | |
// var name2, $, _, _name, myName; // a-z, A-Z, 0-9, $, _ | |
// Variables - Let | |
// let name="igor", age=31; | |
// let name="zahar"; //error, cannot define twice |
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
Go to menu: | |
Find -> Find in Files... (windows: ctrl+shift+f) | |
Switch on reg_ex button (windows: alt+r) | |
Find: | |
^.*\S+.*$ | |
Where: | |
c:\your_folder\,*.php,*.js,*.inc,*.html,*.htm,*.scss, -*/folder_to_exclude/*, -*.min.js |
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
Make sure libxml2-devel, libxslt-devel and libiconv-devel are installed: | |
$ gem install nokogiri -- --use-system-libraries --with-xml2-include=/usr/include/libxml2 --with-xml2-lib=/usr/lib --with-xslt-dir=/usr/include/libxslt --with-iconv-include=/usr/include --with-iconv-lib=/usr/lib |
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 p2.*, m2.*, GROUP_CONCAT(p2.id) | |
FROM wp_posts p2 | |
INNER JOIN wp_postmeta m2 ON m2.post_id=p2.id | |
where p2.post_type='product' and (`meta_key`='additional_sizes' or `meta_key`='additional_colors') | |
GROUP BY case when m2.meta_value='' | |
then m2.post_id | |
else m2.meta_value | |
end | |
order by `menu_order` | |
limit 10 |
NewerOlder