Skip to content

Instantly share code, notes, and snippets.

View 7x7x7eq51's full-sized avatar
🎯
Focusing

7x7 7x7x7eq51

🎯
Focusing
  • 7xxss
  • from localhost
View GitHub Profile
@7x7x7eq51
7x7x7eq51 / using-raw-socket-io-in-sails.js
Created December 8, 2015 04:22 — forked from mikermcneil/using-raw-socket-io-in-sails.js
Using raw socket.io functionality in a Sails.js controller
module.exports = {
/**
*
* Using raw socket.io functionality from a Sails.js controller
*
*/
index: function (req,res) {
@7x7x7eq51
7x7x7eq51 / haproxy.cfg
Created November 27, 2015 08:35 — forked from roylines/haproxy.cfg
haproxy configuration for using with prerender.io
# Change YOUR_TOKEN to your prerender token
# Change http://example.com (server_name) to your website url
frontend my-frontend
mode http
bind :80
# prerender.io
acl user-agent-bot hdr_sub(User-Agent) -i baiduspider twitterbot facebookexternalhit rogerbot linkedinbot embedly showyoubot outbrain pinterest slackbot vkShare W3C_Validator
acl url-asset path_end js css xml less png jpg jpeg gif pdf doc txt ico rss zip mp3 rar exe wmv doc avi ppt mpg mpeg tif wav mov psd ai xls mp4 m4a swf dat dmg iso flv m4v torrent ttf woff
@7x7x7eq51
7x7x7eq51 / utf8-regex.js
Created November 3, 2015 06:42 — forked from chrisveness/utf8-regex.js
Utf8 string encode/decode using regular expressions
/**
* Encodes multi-byte Unicode string into utf-8 multiple single-byte characters
* (BMP / basic multilingual plane only).
*
* Chars in range U+0080 - U+07FF are encoded in 2 chars, U+0800 - U+FFFF in 3 chars.
*
* Can be achieved in JavaScript by unescape(encodeURIComponent(str)),
* but this approach may be useful in other languages.
*
* @param {string} strUni Unicode string to be encoded as UTF-8.
@7x7x7eq51
7x7x7eq51 / Linux Static IP
Created October 22, 2015 08:09 — forked from fernandoaleman/Linux Static IP
How To Configure Static IP On CentOS 6
## Configure eth0
#
# vi /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE="eth0"
NM_CONTROLLED="yes"
ONBOOT=yes
HWADDR=A4:BA:DB:37:F1:04
TYPE=Ethernet
BOOTPROTO=static
@7x7x7eq51
7x7x7eq51 / require-service.htm
Last active September 14, 2015 10:49 — forked from bennadel/require-service.htm
Creating A RequireJS Service For AngularJS Applications
<!doctype html>
<html ng-app="Demo">
<head>
<meta charset="utf-8" />
<title>
Creating A RequireJS Service For AngularJS
</title>
<style type="text/css">