- știri: http://www.mcsi.ro/Minister/Actualizari
- proiecte acte normative: http://www.mcsi.ro/Transparenta-decizionala/Proiecte-2015
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from math import sin, cos, pi | |
DEG = pi / 180 | |
POSTS = [ | |
(110, 50), | |
(210, 75), | |
(315, 125), | |
(120, 120), | |
( 60, 50), | |
(180, 80), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
.node circle { | |
stroke: #fff; | |
stroke-width: 1.5px; | |
} | |
.link { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
server_name ~^(?<name>.+)\.static\.devel$; | |
root /var/local/www-static/$name; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<scxml xmlns="http://www.w3.org/2005/07/scxml" name="device" datamodel="ecmascript" version="1.0"> | |
<state id="OK"> | |
<state id="on"> | |
<transition target="off" event="device.turnOff"/> | |
</state> | |
<state id="off"> | |
<transition target="on" event="device.turnOn"/> | |
</state> | |
<transition target="error" event="device.error"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.factual-scorecard { | |
width: 558px; | |
height: 360px; | |
position: relative; | |
font-family: "Open Sans", sans-serif; | |
} | |
.factual-scorecard img.factual-scorecard-photo { | |
position: absolute; | |
top: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"children": [ | |
{ | |
"id": "A", | |
"children": [ | |
{ | |
"id": "B", | |
"labels": [{"text": "B"}], | |
"width": 40, | |
"height": 40 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
svg.on('click', function() { | |
var coord = projection.invert([d3.event.x, d3.event.y]); | |
window.prompt('copy', '['+[d3.round(coord[0], 2), d3.round(coord[1], 2)]+']'); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* https://gist.github.com/cmod/1d00fc552d21d5dfdd65 */ | |
#rightCol { display: none !important; } | |
#pagelet_bluebar { display: none !important; } | |
#pagelet_dock { display: none !important; } | |
#pagelet_sidebar { display: none !important; } | |
#globalContainer { padding-right: 0 !important; } | |
.fbx #globalContainer { width: auto !important; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
swconfig dev eth1 show | |
swconfig dev eth1 set enable_vlan 1 | |
swconfig dev eth1 set apply |