Skip to content

Instantly share code, notes, and snippets.

View sampathsl's full-sized avatar
😊
It's working ....

Sampath Thennakoon sampathsl

😊
It's working ....
View GitHub Profile
@moraes
moraes / gist:2141121
Last active May 1, 2023 19:02
LIFO Stack and FIFO Queue in golang
package main
import (
"fmt"
)
type Node struct {
Value int
}
@martinlau
martinlau / standard-form-with-liferay-action-url.jsp
Created August 14, 2012 12:02
Portlet JSP illustrating liferay's actionURL and form
<%@ taglib prefix="liferay-portlet" uri="http://liferay.com/tld/portlet" %>
<liferay-portlet:actionURL varImpl="submitURL" />
<form action="${submitURL}" method="get">
<liferay-portlet:renderURLParams varImpl="submitURL" />
<input type="text" name="query" />
<input type="submit" />
</form>
@PurpleBooth
PurpleBooth / README-Template.md
Last active April 22, 2024 11:45
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites