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
// Find and Execute recursive -maxdepth 1 | |
find /xfaces -type f -name "*.xhtml" -execdir node /home/sp/xhtml2html/xhtml2html.js {} \; |
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
// html | |
<span style="fill:#000;"> | |
<span ui-include="'icon.svg'"></span> | |
</span> | |
// svg inherit color | |
<svg fill="currentColor"> |
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
// Current Context | |
-- current()/@href | |
<xsl:apply-templates select="//cd[@title=current()/@ref]"/> | |
// Template Matchings | |
-- Attribute Value StartWith | |
<xsl:template match="input[starts-with(@type, '$')]"> | |
-- Tag Proxying |
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
require('net') | |
.createServer( function(socket) | |
{ | |
socket.write('SSH-3.0-OpenSSH_1.2_Guard\r\n'); | |
console.log('SSHD Noop Service - '+socket.remoteAddress ); | |
}) | |
.listen(22, function() | |
{ | |
console.log('SSHD Noop Service - Started at 22 port') | |
}) |
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
::devd.exe -a -p 3000 -l . http://192.168.99.1:8080 | |
::devd.exe -a -p 3000 -l . /rest/=http://192.168.99.1:8080/rest/ | |
devd.exe -x "{**.bat,**.md,**.xml,**.tc,,**.map}" -a -p 80 -l . /rest/=http://192.168.99.1:8080/rest/ /auth/=http://192.168.99.1:8180/auth/ | |
devd.exe -x "**/*.bat" -x "**/*.ts" -x "**/*.map" -x "**/*.xml" -a -p 80 -l . /rest/=http://192.168.99.1:8080/rest/ /auth/=http://192.168.99.1:8180/auth/ static/assets=./assets --debug --crossdomain |
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> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Scrollable</title> | |
<script src="https://code.jquery.com/jquery-1.12.4.min.js" type="application/javascript"></script> | |
<style> | |
html,body { width: 100%; height:100%; display: block; } | |
* { box-sizing: border-box; padding: 0; margin: 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
Dism.exe /online /Cleanup-Image /StartComponentCleanup | |
Dism.exe /online /Cleanup-Image /StartComponentCleanup /ResetBase | |
Dism.exe /online /Cleanup-Image /SPSuperseded | |
SUB FOLDERS & SIZES | |
11.4 GB C:\Windows\winsxs | |
2.4 GB C:\Windows\System32 | |
2.2 GB C:\Windows\Installer | |
1.7 GB C:\Windows\assembly | |
1.2 GB C:\Windows\SysWOW64 |
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
Конфигурация NGINX | |
root /var/nginx/www/my.kazpost.kz; | |
location / { | |
try_files /500.html @conf; | |
} | |
location @conf { | |
proxy_redirect off; |
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
<VirtualHost *:80> | |
DocumentRoot "I:\[ Work ]\_Kazpost\monitor.kazpost.kz\site" | |
ServerName monitor.kazpost.loc | |
DirectoryIndex index.html index.xhtml | |
AddType text/xsl .xsl | |
<Directory "I:/[ Work ]/_Kazpost/monitor.kazpost.kz/site"> | |
Options Indexes FollowSymLinks |
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
BEGIN | |
BEGIN EXECUTE IMMEDIATE 'DROP TABLE confluence.bandana_tmp'; | |
EXCEPTION WHEN OTHERS THEN dbms_output.put_line('Not Dropped'); END; | |
EXECUTE IMMEDIATE 'CREATE TABLE confluence.bandana_tmp AS SELECT * FROM confluence.bandana WHERE ROWNUM < 2'; | |
EXECUTE IMMEDIATE 'DELETE FROM bandana_tmp'; | |
FOR a IN ( | |
SELECT ROWNUM, a.bandanaid, a.bandanacontext, a.bandanakey, a.bandanavalue |