Skip to content

Instantly share code, notes, and snippets.

View zikozee's full-sized avatar
💭
Write Down Your Visions and Make it Plain

Eromosei Ezekiel Ohioze zikozee

💭
Write Down Your Visions and Make it Plain
View GitHub Profile
@zikozee
zikozee / gcse.ipynb
Created September 19, 2021 12:47 — forked from nikhilkumarsingh/gcse.ipynb
Working with Google Custom Search Engine using Python
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@zikozee
zikozee / ErrorMessage.java
Created July 31, 2020 11:16 — forked from Coder-ACJHP/ErrorMessage.java
How to use Bootstrap Modal login form with Spring MVC (included form validation) & Ajax.
public class ErrorMessage {
private String fieldName;
private String message;
public ErrorMessage(String fieldName, String message) {
this.fieldName = fieldName;
this.message = message;
}