This file contains 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
# Simple No-ip.com Dynamic DNS Updater | |
# | |
# 1) Install DUC (Dynamic Update Client) and create the configuration file | |
# as described on noip website https://my.noip.com/#!/dynamic-dns/duc | |
# 2) Copy this file noip2.service to /etc/systemd/system/ | |
# 3) Execute `sudo systemctl enable noip2` | |
# 4) Execute `sudo systemctl start noip2` | |
[Unit] | |
Description=No-ip.com Dynamic Update Client |
This file contains 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
; /usr/local/bin/nasm -f macho 32.asm && ld -macosx_version_min 10.7.0 -o 32 32.o && ./32 | |
global start | |
section .text | |
start: | |
push dword msg.len | |
push dword msg | |
push dword 1 | |
mov eax, 4 |
This file contains 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> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Selector test</title> | |
<link rel="stylesheet" href="test.css" /> | |
<link rel="stylesheet" href="test2.css" /> | |
<link rel="stylesheet" href="test3.css" /> | |
</head> | |
<body> |
This file contains 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
<?php | |
// ...<snip>... | |
<span class="milestone"><# wp.hooks.applyFilters('milestonerevs.metadata', data) #></span> | |
// ...<snip>... | |
add_action( 'admin_footer-revision.php', 'wpse151630_test' ); | |
function wpse151630_test() { | |
?> | |
<script> |