Blog Spot!


10 Linux GUI tools for sysadmins

Has administering Linux via the command line confounded you? Here are 10 GUI tools that might make your life as a Linux administrator much easier.

  1. MySQL Workbench
  2. phpMyAdmin
  3. Webmin
  4. YaST
  5. Shorewall
  6. Apache Directory
  7. CUPS
  8. cPanel
  9. Zenmap
  10. Cockpit

techrepublic

Added on 01.Nov.2015
Tags: linux admin support system

Sticking divs on top of each other

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>JS Bin</title>
    <style id="jsbin-css">
    .one {
        border: 1px solid black;
        position: relative;
        height: 120px;
        width 120px;
    }

    .two {
        position: absolute;
        border: 1px solid red;
        width: 50%;
        top: -1px;
        left: -1px;
        bottom: -1px;
    }
    </style>
</head>
<body>
    <div class="one">X
        <div class="two">O</div>
    </div>
</body>
</html>

Added on 29.Oct.2015
Tags: css html stacking

Example, haw to open new browser without toolbar and scrols

function play(url) {
    window.open(url, "_blank", "toolbar=no", "scrolls=no");
}

works best in Firefox

Added on 27.Oct.2015
Tags: js new browser tool

Cross-Origin Resource Sharing (CORS) AJAX Requests Between jQuery And Node.js

CORS (Cross-Origin Resource Sharing) is both simple and complex. It is quite simple in philosophy; but, the devil, as always, is in the details.

CORS is AJAX. What makes CORS special is that the AJAX request is being posted to a domain different than that of the client. Historically, this type of request has been deemed a security threat and has been denied by the browser. With the prevalence of AJAX and the transformation of thick-client applications, however, modern browsers have been evolved to embrace the idea that critical information doesn't necessarily come from the host domain.

Cors-Ajax-Requests jQuery & NodeJS

Added on 22.Oct.2015
Tags: cors ajax nodejs jquery

How to set/unset cookie with jQuery

  • Set

    $.cookie("test", 1);
  • Delete

    $.removeCookie("test");
  • Extra Parameters

    $.cookie("test", 1, { expires : 10 });
  • Get
    var cookieValue = $.cookie("test");

stackoverflow

Added on 22.Oct.2015
Tags: set unse cookie js jquery

Search


PHP Libraries


Carbon lib / docs
Idiorm lib / docs
Image Workshop lib / docs
lorenzos/Minixed lib / docs
Parsedown lib / docs
PHP Paginator lib / docs
PHP Redis lib / docs
QrCode lib / docs
Requests lib / docs
Slim lib / docs
Spyc lib / docs
TWIG lib / docs
Upload lib / docs
Validation lib / docs
Zebra Image lib / docs

JS Libraries


AJV lib / docs
BackboneJS lib / docs
Bootstrap Notify lib / docs
C3.js lib / docs
ChartJS lib / docs
FastMD5 lib / docs
HighlightJS lib / docs
jQuery-Storage lib / docs
JS-Cookie lib / docs
Leaflet JS lib / docs
LowDB lib / docs
Marked lib / docs
NeedlyJS lib / docs
ParcelJS lib / docs
RequireJS lib / docs
Swig lib / docs
Toastr lib / docs
Underscore lib / docs
ValidateJS lib / docs
top