(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
:
ּ_בּ | |
בּ_בּ | |
טּ_טּ | |
כּ‗כּ | |
לּ_לּ | |
מּ_מּ | |
סּ_סּ | |
תּ_תּ | |
٩(×̯×)۶ | |
٩(̾●̮̮̃̾•̃̾)۶ |
angular.module("MyApp", ["SocketProvider"]) | |
.controller("MyController", ["$scope", "socket", function($scope, socket) { | |
// Fetch initial data | |
$scope.person = null; | |
socket.get("/person/1").success(function(data) { | |
$scope.person = data; | |
}).error(function() { |
#!/bin/bash | |
# "Bridge" Networking between KVM Guest and Host | |
# | |
# Copyright (c) 2014 Jesse J. Cook | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is |
#!/usr/bin/env node | |
var args = process.argv.slice(2); | |
if (args[0] == '-h' || args[0] == undefined) { | |
console.log('\nUsage : ovpn2nm.js [file]'); | |
console.log('Example : ovpn2nm.js client.ovpn'); | |
console.log('\nVersion 0.0.1'); | |
return 0; | |
}; |
// ==UserScript== | |
// @name Github Bengali Font Fix | |
// @namespace thesabbir.github.fontfix | |
// @version 0.3 | |
// @description Tampermonkey userscript for fixing broken bengali font rendering on github sites. | |
// @match https://github.com/* | |
// @match https://*.github.com/* | |
// @copyright 2014 Sabbir Ahmed | |
// ==/UserScript== |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="format-detection" content="telephone=no" /> | |
<meta name="msapplication-tap-highlight" content="no" /> | |
<!-- WARNING: for iOS 7, remove the width=device-width and | |
height=device-height attributes. See | |
https://issues.apache.org/jira/browse/CB-4323 --> | |
<meta name="viewport" |
Aniruddh Agarwal blogged A short tour of PHP, and this is one of the negatives he identified:
Community: I know. I said that PHPs community was an advantage to it, but it is also a disadvantage, because of BAD CODE. Beginners are not taught the best practices and they go on to write bad code and distribute it, either as answers on Stack Overflow or similar websites or blog about it, which encourages other beginners to adopt those practices. There is a lot of misinformation out there, and it is very difficult to separate the good from the bad. This is perhaps the worst thing about PHP, because PHP is an entry-level language and people learning it are usually not aware of the best practices.
The existence of BAD CODE being copied and pasted by newcomers is probably the biggest source of exploitable security vulnerabilities in the entire industry.
The biggest offenders are often the highest ranking search results on Google and other search eng
#!/usr/bin/lua | |
-- Original script: https://github.com/nileshgr/utilities/blob/master/general/updateip.lua | |
-- http://nileshgr.com/2015/09/23/cloudflare-dynamic-dns-using-openwrt | |
-- For use with openwrt since openwrt supports LUA. | |
-- Prerequisites: | |
-- luasec | |
-- luasocket | |
-- libubus-lua |