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
| John | Doe | 120 jefferson st. | Riverside | NJ | 08075 | |
|---|---|---|---|---|---|---|
| Jack | McGinnis | 220 hobo Av. | Phila | PA | 09119 | |
| John "Da Man" | Repici | 120 Jefferson St. | Riverside | NJ | 08075 | |
| Stephen | Tyler | 7452 Terrace "At the Plaza" road | SomeTown | SD | 91234 | |
| Blankman | SomeTown | SD | 00298 | |||
| Joan "the bone", Anne | Jet | 9th, at Terrace plc | Desert City | CO | 00123 |
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
| " =============================================================== | |
| " OceanicNext | |
| " Author: Mike Hartington | |
| " =============================================================== | |
| " {{{ Setup | |
| set background=dark | |
| hi clear | |
| if exists("syntax_on") |
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
| <%@ page language="java" contentType="text/html; charset=ISO-8859-1" | |
| pageEncoding="ISO-8859-1"%> | |
| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> | |
| <title>Guru Registration Form</title> | |
| <style> | |
| body { | |
| background-image: url("img_tree.png"); |
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
| set MYSQLUSER=username | |
| set MYSQLPASS=password | |
| set BATCHFILE=C:\Temp\auto_built_sql_dump.bat | |
| set DUMPPATH=Z:\ | |
| set DRIVE=Z: | |
| net use %DRIVE% \\somehost\some\networkdrive /user:domain\user password | |
| rem building time stamp | |
| set tmp_time=%time:~-11,2%.%time:~-8,2%.%time:~-5,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
| function [density, pts_PCn, di_min] = eval_density(data, points) | |
| [n,d] = size(data); | |
| n_points = size(points,1); | |
| Datan = (data-ones(n,1)*mean(data))./(ones(n,1)*std(data)); | |
| [U,S,V] = svd(Datan,0); | |
| PC = Datan*V; | |
| PCn = PC./(ones(n,1)*std(PC)); | |
| Pointsn = (points-ones(n_points,1)*mean(data))./(ones(n_points,1)*std(data)); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| <!--- NOTE: ColdFusion 11 was in BETA at the time of this writing. ---> | |
| <cfscript> | |
| // Testing unscoped values. | |
| elvis = ( theKing ?: "default" ); | |
| nully = ( isNull( theKing ) ? "default" : "false-positive" ); | |
| writeOutput( "Elvis: " & elvis & "<br />" ); | |
| writeOutput( "Nully: " & nully & "<br />" ); |
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
| * check it out, hello world in cobol lulz | |
| identification division. | |
| program-id. hello. | |
| procedure division. | |
| display "Hi, world!". | |
| stop run. |
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
| #include <iostream> | |
| using namespace std; | |
| int main() | |
| { | |
| int a; | |
| int num=0; | |
| a=9; | |
| for (int i=0; i<a;i++){ |
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
| ## | |
| # Docker client with docker-compose && sshd | |
| # | |
| # use on a Docker host to allow you to ssh and access Docker and Compose remotely | |
| # e.g., as part of CI/CD on a private network. | |
| # ** Not for production use on publicly-exposed server ** | |
| # | |
| # mount for docker host socket: | |
| # -v /var/run/docker.sock:/var/run/docker.sock:ro | |
| # mount for docker-compose access (optional): |