(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| $('form[action*="search"]').live('submit', function(event) { | |
| event.preventDefault(); | |
| arr_input = $('form').serializeArray(); | |
| arr_input.shift(); | |
| keywords_count = 0; | |
| $.map(arr_input, function(el){ | |
| if(el.value != ""){keywords_count = keywords_count + 1} | |
| }); | |
| if(keywords_count <= 0){ | |
| if($('.error.empty-search').length < 1){ |
| // url : http://id.wikipedia.org/wiki/Daftar_provinsi_Indonesia | |
| arr = new Array(); | |
| // random id from 0 - 5 | |
| random_country_id = Math.floor(Math.random() * (5 - 1 + 1) + 1); | |
| $('.wikitable.sortable.jquery-tablesorter tr').each(function(i, tr){ | |
| td = $(tr).children()[2] | |
| name = $(td).text(); | |
| if(i < 11){ |
| script = document.createElement("script"); | |
| script.setAttribute("src", "http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"); | |
| document.body.appendChild(script); |
| $(document).keydown(function(e){ | |
| speed = 3 | |
| switch (e.keyCode) { | |
| case 37: // Move Left | |
| $('.dialog').offset({left: $('.dialog').offset().left - speed}); | |
| break; | |
| case 39: // Move Right | |
| $('.dialog').offset({left: $('.dialog').offset().left + speed}); | |
| break; |
| tell application "iTerm" | |
| activate | |
| -- buat window baru | |
| set myterm to (make new terminal) | |
| tell myterm | |
| -- perintah2 yang akan di eksekusi tiap di setiap tab | |
| set thelistOfCommands to {"cleopatra && rsd", "satutempat_api && rsd1", "mongoserver", "redis-server", "fake_start"} |
| for i in `seq 1 114`; do | |
| if [ $i -lt 10 ]; then | |
| file="00$i" | |
| elif [ $i -lt 100 ]; then | |
| file="0$i" | |
| else | |
| file=$i | |
| fi | |
| wget "http://download.quranicaudio.com/quran/mishaari_raashid_al_3afaasee/$file.mp3" |
| require 'rubygems' | |
| require 'nokogiri' | |
| youtube_xml = ARGV[0] | |
| xml = File.open(ARGV[0]) | |
| srt = File.open(ARGV[1] || youtube_xml.gsub('.xml', '.srt'), 'w+') | |
| doc = Nokogiri::XML(xml) | |
| doc.children.children.each_with_index do |text, idx| |
| keyword = "(Part" | |
| files = Dir.entries('.').select{|x| x.include?(keyword)} | |
| files.each do |file| | |
| wor = file.match(/( \()(.+)(?=.mp4)/)[0] | |
| num = wor.match(/([0-9]+)/)[0] | |
| num = (num.to_i < 10)? "#{0}#{num}" : num | |
| new_name = "#{num}. #{file.gsub(wor, '')}" | |
| File.rename(file, "#{Dir.pwd}/#{new_name}") | |
| end |
| import React from 'react' | |
| import ReactDOM from 'react-dom' | |
| const App = () => { | |
| return( | |
| <h1> Hello from React Webpacker </h1> | |
| ) | |
| } | |
| document.addEventListener('DOMContentLoaded', () => { |