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
## Sublime Text 3 Serial key build is 3176 | |
> * Added these lines into /etc/hosts | |
127.0.0.1 www.sublimetext.com | |
127.0.0.1 license.sublimehq.com | |
> * Used the license key | |
----- BEGIN LICENSE ----- |
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
5 TOP PACKAGES | |
1. Path Intellisense | |
2. Project Manager | |
3. Auto Rename Tag | |
4. JavaScript (ES6) code snippets | |
5. Output Colorizer | |
You need to have |
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
<?php | |
/** | |
* 1. В таблице wp_options находим ключ yoast-seo-premium_license или wordpress-seo-premium_license | |
* и меняем его значение на `a:3:{s:3:"key";s:6:"zalupa";s:6:"status";s:5:"valid";s:11:"expiry_date";s:19:"2970-01-01 00:00:00";}` | |
* | |
* 2. Чтобы не слетали все ваши махинации после захода на страницу обновления или проверки лицензии, | |
* достаточно запретить плагину ломиться по своему АПИ на свой сайт. | |
* Я это сделал просто: в файле \wordpress-seo-premium\vendor\yoast\license-manager\class-update-manager.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
<div class="wrapper"> | |
<div class="rainbow"></div> | |
<div class="rainbow"></div> | |
<div class="rainbow"></div> | |
<div class="rainbow"></div> | |
<div class="rainbow"></div> | |
<div class="rainbow"></div> | |
<div class="rainbow"></div> | |
<div class="rainbow"></div> | |
<div class="rainbow"></div> |
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
<!-- | |
Appended to default to work with bh_core.sublime-settings brackethighlighter.default style | |
--> | |
<dict> | |
<key>name</key> | |
<string>Bracket Tag</string> | |
<key>scope</key> | |
<string>brackethighlighter.default</string> | |
<key>settings</key> | |
<dict> |
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
Show hidden characters
{ | |
"bracket_styles": { | |
"default": { | |
"icon": "dot", | |
// BH1's original default color for reference | |
// "color": "entity.name.class", | |
"color": "brackethighlighter.default", | |
"style": "highlight" | |
} | |
} |
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 script = document.createElement("script"); | |
script.setAttribute("src", "https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"); | |
script.addEventListener('load', function() { | |
var script = document.createElement("script"); | |
document.body.appendChild(script); | |
}, false); | |
document.body.appendChild(script); |
I guess you ever wanted to connect to a Linux desktop machine via ssh, but you did not have a way to do it.
The Reverse SSH Tunneling allows you to connect to a computer for it which you do not have access via ssh. The connection is established opening up a tunnel through another computer for it which you really have a ssh access. It works really good with UNIX systems.
NewerOlder