Skip to content

Instantly share code, notes, and snippets.

View shivkumarganesh's full-sized avatar
🏠
Working from home

Shiv Kumar Ganesh shivkumarganesh

🏠
Working from home
View GitHub Profile
@yufengg
yufengg / AutoML_data_preparation_AIA023.ipynb
Last active July 24, 2024 09:26
Notebook for preparing a CSV for Google Cloud AutoML Vision
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rgdonohue
rgdonohue / README.md
Last active January 11, 2023 21:43
Batch Geocoding Script with GeoPy
@shivkumarganesh
shivkumarganesh / Bind in Visage
Created October 24, 2012 12:57
This small snippet show us how to use enable binding in visage binders.You can simply put this snippet on the top of the class and import java listeners.
//Please format the code appropriately as required.
postinit{
//Changes on text property will be reflected in visage text
wrappedTextInputControl.textProperty().addListener(
ChangeListener{
override function changed( observable:ObservableValue, oldValue:Object , newValue:Object ):Void{
text = newValue as String;
}
});