Settings: System Preferences » Keyboard » Key Repeat/Delay Until Repeat
Use the commands below to increase the key repeat rate on macOS beyond the possible settings via the user interface. The changes aren't applied until you restart your computer.
#include <stdint.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
// munged from https://github.com/simontime/Resead | |
namespace sead | |
{ | |
class Random | |
{ |
<script src="https://f.convertkit.com/ckjs/ck.5.js"></script> | |
<form action="https://app.convertkit.com/forms/FORM_ID/subscriptions" method="post" data-sv-form="FORM_ID" data-uid="UID_FROM_FORM_HTML"> | |
<ul data-element="errors"></ul> | |
<div data-element="fields"> | |
<input name="fields[first_name]" type="text"> | |
<input name="email_address"> | |
<button data-element="submit">Subscribe</button> | |
</div> | |
</form> |
Settings: System Preferences » Keyboard » Key Repeat/Delay Until Repeat
Use the commands below to increase the key repeat rate on macOS beyond the possible settings via the user interface. The changes aren't applied until you restart your computer.
-- Inspired by https://github.com/jasoncodes/dotfiles/blob/master/hammerspoon/control_escape.lua | |
-- You'll also have to install Karabiner Elements and map caps_lock to left_control there | |
len = function(t) | |
local length = 0 | |
for k, v in pairs(t) do | |
length = length + 1 | |
end | |
return length | |
end |
I like (love ?) Keynote because it
If I could remove that last argument, I would, but the fact is that, as a consultant, the final document is almost always expected to be a powerpoint document. Don't ask me why, it is just so. I am fighting against it but I did not win the battle so far ...
ctrl_table = { | |
sends_escape = true, | |
last_mods = {} | |
} | |
control_key_timer = hs.timer.delayed.new(0.15, function() | |
ctrl_table["send_escape"] = false | |
-- log.i("timer fired") | |
-- control_key_timer:stop() | |
end |
# If you worked with React and JSX you probably noticed that you can't use JS comments when inside JSX sections | |
# Add this to your Atom init script | |
# Then add 'ctrl-cmd-/': 'comment-jsx' to your keymap.cson | |
# Then when you are on a JS/JSX file, just press cmd+ctrl+/ to use JSX-style comments that work with JSX elements | |
# Is not the most efficient way, but it's the cleanest and reliable one | |
atom.commands.add 'atom-workspace', 'comment-jsx', -> | |
atom.config.set('editor.commentStart', '{/*', {scopeSelector: '.source.js.jsx'}) | |
atom.config.set('editor.commentEnd', '*/}', {scopeSelector: '.source.js.jsx'}) | |
for selection in atom.workspace.getActiveTextEditor().selections |
<?xml version="1.0"?> | |
<root> | |
<item> | |
<name>Tarmak transitional layout</name> | |
<!-- http://forum.colemak.com/viewtopic.php?pid=8786#p8786 --> | |
<item> | |
<name>Tarmak1(E) transitional layout (E>K>N>J)</name> | |
<identifier>private.tarmak.tarmak_1_e</identifier> | |
<autogen>__KeyToKey__ KeyCode::K, KeyCode::E</autogen> | |
<autogen>__KeyToKey__ KeyCode::N, KeyCode::K</autogen> |