Internet Services, Platforms, Software, Information Technology, Data and Analytics, Privacy and Security, Content and Publishing, Mobile, Apps, Mobile, Commerce and Shopping, Community and Lifestyle, Cloud Computing, Database, Open Source, PaaS, Design, Education.
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
package main | |
//#include<stdio.h> | |
//void inC() { | |
// printf("I am in C code now!\n"); | |
//} | |
import "C" | |
import "fmt" | |
func main() { |
To see a list of downloaded Go packages use this command:
go list all
To see Go environmental variables the command is:
go env
Here is one simple way to center content on a HTML page. This method is using the CSS text-align and vertical-align properties.
<!DOCTYPE html>
<html>
<head>
<title>Center V2</title>
<link href="https://fonts.googleapis.com/css?family=Lato:100" rel="stylesheet" type="text/css">
<style>
This repository is viewable on sourcegraph.com.
Pick is the programing language used with UniVerse database. But PICK has many flavors. The one PICK flavor used with Universe is UniBASIC. More detailed info on it is available in the Rocket UniVerse BASIC Commands Reference. UniVerse is the database that powers Eclipse ERP.
MATPARSE
LOCATE
For Loop
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> | |
<title>Center of Page</title> | |
<meta charset="utf-8" /> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<style type="text/css"> | |
body { |
On Widows this batch file will export to text file a full list of files and directories on the C drive.
@ECHO OFF
SET dd=%DATE:~7,2%
SET mm=%DATE:~4,2%
SET yyyy=%DATE:~10,4%
SET hh=%TIME:~0,2%
IF "%hh:~0,1%"==" " SET hh=0%hh:~1,1%