Tim Uckun

Results 33 comments of Tim Uckun

Here is the header id,occurrenceID,basisOfRecord,modified,institutionCode,collectionCode,datasetName,informationWithheld,catalogNumber,_references,occurrenceRemarks,occurrenceDetails,recordedBy,establishmentMeans,eventDate,eventTime,verbatimEventDate,verbatimLocality,decimalLatitude,decimalLongitude,coordinateUncertaintyInMeters,countryCode,identificationID,dateIdentified,identificationRemarks,taxonID,scientificName,taxonRank,kingdom,phylum,class,_order,family,genus,license,rights,rightsHolder notice that I put underscores in front of references and order in order to get it import. I also noticed that it imported everything as...

Just FYI. If you put the field names in double quotes postgres doesn't have problems.

Yes it does work if I take the contract out. I guess it makes sense that the contract can't know about a type that hasn't been defined yet but this...

Seems like Medium changed something so this plugin doesn't work anymore.

I do have permissions. After searching around quite a bit I found that if I do this before it works ```bash kubectl create serviceaccount -n kube-system tiller kubectl create clusterrolebinding...

No the instructions were not enough in that when it came to install the cert manager I got the permission error. My GKE version is 1.10.9-gke.5

OK. For some reason I had to do that.

Here is a crazy idea. Why not have a fat buffalo for development and a thin one for production? Maybe they could be managed with symlinks or a shim shell...

Hi I have the same question. I want to do "on conflict (field1, field2) do nothing or update.... Is there a way to do this now?

Hi. Looking at the source code I found the function SetColumnRenameFunction. ```go goqu.SetColumnRenameFunction(ToSnakeCase) ``` Looking further I found a gist that I am using ```go var matchFirstCap = regexp.MustCompile("([A-Z])([A-Z][a-z])") var...