Skip to content

Instantly share code, notes, and snippets.

View hendisantika's full-sized avatar
💻
Coding... coding.. coding.... and coding..!

Hendi Santika hendisantika

💻
Coding... coding.. coding.... and coding..!
View GitHub Profile
@hendisantika
hendisantika / index.html
Created November 4, 2018 14:09
Real Time Javascript Calculation Based On Form Inputs
<!DOCTYPE html>
<html>
<head>
<title>Tes Form</title>
</head>
<body>
<input id='first' type="text" class="form-control formBlock" name="bus_ticket" placeholder="Bus Ticket..." required/><br />
<input id='second' type="text" class="form-control formBlock" name="plane_ticket" placeholder="Plane Ticket..." required/><br />
package com.hendisantika.test.tes3;
import java.util.HashMap;
import java.util.Map;
/**
* Created by IntelliJ IDEA.
* Project : test-java
* User: hendisantika
* Email: hendisantika@gmail.com
public class Solution {
public int countHillNValley(int[] nums) {
if(nums == null || nums.length == 0)
return 0;
if(nums.length == 1)
return 1;
int count = 1;
int i = 0, j = i + 1;
while(i < nums.length && j < nums.length){
if(nums[j] == nums[i]){
def hill_and_vally(s):
d=[x1-x0 for x0,x1 in zip(s,s[1:]) if x1!=x0]
return 2+sum(d0*d1<0 for d0,d1 in zip(d,d[1:]))
#>>> hill_and_vally([1,0,0,0,1])
#3
#>>> hill_and_vally([0,1,0,1,0])
#5
#>>> hill_and_vally([0,2,2,1,1,0,0])
#3
@hendisantika
hendisantika / JavaLoopII.java
Created February 15, 2019 04:13
Java Loop II
class Solution{
public static void main(String []argh){
Scanner in = new Scanner(System.in);
int t=in.nextInt();
for(int i=0;i<t;i++){
int a = in.nextInt();
int b = in.nextInt();
int n = in.nextInt();
int sum=0;
for(int j=1;j<=n;j++)
@hendisantika
hendisantika / postgres-cheatsheet.md
Created February 28, 2019 09:52 — forked from Kartones/postgres-cheatsheet.md
PostgreSQL command line cheatsheet

PSQL

Magic words:

psql -U postgres

Some interesting flags (to see all, use -h or --help depending on your psql version):

  • -E: will describe the underlaying queries of the \ commands (cool for learning!)
  • -l: psql will list all databases and then exit (useful if the user you connect with doesn't has a default database, like at AWS RDS)
@hendisantika
hendisantika / docker-machine-mac-osx.md
Created March 26, 2019 23:52 — forked from Integralist/docker-machine-mac-osx.md
Docker Machine on Mac OS X

VirtualBox

  • https://www.docker.com/toolbox
  • docker-machine create --driver virtualbox dev
  • docker-machine env dev (add values to ~/.zshrc)
    • e.g. echo eval "$(docker-machine env dev)" >> ~/.zshrc
  • docker-machine ls
  • docker ps (might need to re-source .zshrc file; e.g. . ~/.zshrc)
  • docker run hello-world
  • docker-machine ip dev
@hendisantika
hendisantika / StringCompare.md
Created May 7, 2019 23:57 — forked from Yengas/StringCompare.md
Java String comparison, differences between ==, equals, matches, compareTo

String Comparison

In this gist, i will try to explain you what is the main differences between known string comparison techniques and where to use them.

Explanation of methods

==

This is the main equality operator in Java. To summarize it, this method compares the left and right hands references to eachother and returns boolean. This means this operator returns true only if left and right variable both point at the same Object in the memory. As in most of the class comparisons, this operators is discouraged to use if you're not really intented to check if two variables point to same object.

@hendisantika
hendisantika / build.gradle
Created May 23, 2019 21:19
Gradle Plugin
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'no.nils:wsdl2java:0.10'
}
}
@hendisantika
hendisantika / .gitlab-ci.yml
Created July 4, 2019 02:28 — forked from superjose/.gitlab-ci.yml
This is an example of a .gitlab-ci.yml that is required for Continuous Integration on GitLab projects.
# Reference: https://www.exclamationlabs.com/blog/continuous-deployment-to-npm-using-gitlab-ci/
# GitLab uses docker in the background, so we need to specify the
# image versions. This is useful because we're freely to use
# multiple node versions to work with it. They come from the docker
# repo.
# Uses NodeJS V 9.4.0
image: node:9.4.0
# And to cache them as well.