Fight Club | Captain Jack Sparrow |
---|---|
Fight-Club.mp4 |
Captain-Sparrow.mp4 |
In the past I have used Visual Studio for C#
and .NET
developement. This little project is used to create a simple .NET
console program using Visual Studio Code. The goal is to confirm that for multiple value entries, the .NET parser will use the last entered value.
Use these instructions to get the project up and running.
HN user flatroze posted a CLI tool for saving web pages as a single file. A comment posted by mike-cardwell demonstrated how to compile and run the utility within a Docker container.
Compile and install:
$ git clone https://github.com/Y2Z/monolith.git
$ cd monolith
$ docker run --rm -w "$(pwd)" -v "$(pwd):$(pwd)" -u "$(id -u):$(id -g)" rust cargo install --path .
For every developer, terminal is their weapon, so why don't you customize it to become a powerful, and a beautiful weapon?
Powerline style refers to a terminal style that helps developer to keep track of their workflow easily, allows them to have perfect visual on current directories and new changes. It is also git recognizable, and failure detector that will help your development process becomes more interact and much faster.
In this guideline, I will introduce you with 2 smart shells: Zsh
and Fishshell
. Both are perfect for the development jobs due to its rich of resources, and user-friendly.
My collection of Eclipse tips and tricks. I also have an Eclipse Cheat Sheet.
Change the context root in an Eclipse Dynamic Web project.
<!-- Avoid the M.A.D. Gadget vulnerability in certain apache commons-collections versions --> | |
<project> | |
<!-- ... --> | |
<build> | |
<plugins> | |
<plugin> | |
<artifactId>maven-enforcer-plugin</artifactId> | |
<executions> | |
<execution> | |
<goals><goal>enforce</goal></goals> |
How to have some fun using the terminal.
- Install cowsay [0] via :
sudo apt-get install cowsay
- Install fortune [1] via :
sudo apt-get install fortune
- Install figlet [3] via :
sudo apt-get install figlet
- Make sure you have Ruby installed via :
ruby -v
- Install the lolcat [2] via : gem
gem install lolcat
- (option) Add to .bash_profile and/or .bashrc
package org.gkh; | |
import java.io.BufferedReader; | |
import java.io.Console; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
public class ConsoleUtil { | |
/** |