Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
Ctrl+C | copy current line (if no selection) |
Ctrl+X | cut current line (if no selection) |
Ctrl+⇧+K | delete line |
Ctrl+↩ | insert line after |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
Ctrl+C | copy current line (if no selection) |
Ctrl+X | cut current line (if no selection) |
Ctrl+⇧+K | delete line |
Ctrl+↩ | insert line after |
xx_xxxxxxx::xxxxxxx(xxxx = (xx_xxxxxxx * xxxxx) 0xxxx3x38,xxxxxxxx = (xx_xxxxxxxx &) @0xxxxxx568: { | |
xxxxxx_xxxx_xxxxxxx = 0x0, | |
xxxxxx_xxxxx = 0x0, | |
xxxxxxx = 0x178869x0, | |
xxxxxxx = 0xxxxxx638, | |
xxxxxx_xxxxxx = 0x19010010, | |
xxxxxx = 0xxxxxx1x8, | |
xxxxxxxx = xx_xxxxxxxx::xxxxxxxx_xxxxxxxx, | |
xxxxx_xxxxxx = 0xx6x2xx8, | |
xxxxx_xxxx = 0xx6x1xx8, |
#include <stdio.h> | |
extern void print1(); | |
extern void print2(); | |
int main() | |
{ | |
printf("Two values printed below should be different?\n"); | |
print1(); | |
print2(); |
Process: Sublime Text 2 [31360] | |
Path: /Applications/Sublime Text 2.app/Contents/MacOS/Sublime Text 2 | |
Identifier: com.sublimetext.2 | |
Version: Build 2218 (2218) | |
Code Type: X86-64 (Native) | |
Parent Process: launchd [259] | |
User ID: 501 | |
Date/Time: 2012-08-08 01:14:43.155 +0200 | |
OS Version: Mac OS X 10.8 (12A269) |
// Activate window with specified title. | |
// | |
#include <iostream> | |
#include <windows.h> | |
using namespace std; | |
int main(int argc, char* argv[]) | |
{ |
A complete gdb to lldb command map.
(lldb) po responseObject
(lldb) po [responseObject objectForKey@"state"]
<!doctype html> | |
<html> | |
<body> | |
<a href="http://ipv4.download.thinkbroadband.com/200MB?1.zip">Link 1</a> | |
<a href="http://ipv4.download.thinkbroadband.com/200MB?2.zip">Link 2</a> | |
<a href="http://ipv4.download.thinkbroadband.com/200MB?3.zip">Link 3</a> | |
<a href="http://ipv4.download.thinkbroadband.com/200MB?4.zip">Link 4</a> | |
<a href="http://ipv4.download.thinkbroadband.com/200MB?5.zip">Link 5</a> | |
<a href="http://ipv4.download.thinkbroadband.com/200MB?6.zip">Link 6</a> | |
</body> |
/*eslint-disable no-undef*/ | |
import { createMatcher } from '../../../src/create-matcher' | |
const routes = [ | |
{ path: '/', name: 'home', component: { name: 'home' }}, | |
{ path: '/foo', name: 'foo', component: { name: 'foo' }}, | |
{ path: '/baz/:testparam', name: 'baz', component: { name: 'baz' }}, | |
{ path: '*', name: 'catch-all', props: true, component: { name: 'notFound' }} | |
] |
Home assistant doesn't properly support Central Scene
events currently. This is how to make it recognize those events.
zwcfg_0x*xml
file in configuration folder, in block for NodOn switch (search for name="NodOn"
), replace <CommandClass id="91" name="COMMAND_CLASS_CENTRAL_SCENE"...
block with: <CommandClass id="91" name="COMMAND_CLASS_CENTRAL_SCENE" version="1" request_flags="4" innif="true" scenecount="4">
<Instance index="1" />
<Value type="int" genre="system" instance="1" index="0" label="Scene Count" units="" read_only="true" write_only="false" verify_changes="false" poll_intensity="0" min="-2147483648" max="2147483647" value="4" />
<Value type="int" genre="user" instance="1" index="1" label="Button 1" units="" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="-2147483648" max="2147483647" value="0" />
import sublime | |
import sublime_plugin | |
import re | |
class PluginEventProfileListener(sublime_plugin.ViewEventListener): | |
def on_activated_async(self): | |
view = self.view | |
if not view.is_scratch() or not view.name() or view.name() != 'Plugin Event Profile': | |
return |