The Complete Persepolis - by Marjane Satrapi (Author)
O MURO - FRAIPONT, CELINE / BAILLY, PIERRE
PILULAS AZUIS - PEETERS, FREDERICK / SCHEIBE, FERNANDO
O ARABE DO FUTURO - SATTOUF, RIAD
| public static void GravarObjectGraphModoBinario(string fileName, object objeto2serialize) | |
| { | |
| using (var stream = new FileStream("C:\\temp\\ObjectGraph.bin", | |
| FileMode.OpenOrCreate, | |
| FileAccess.ReadWrite, | |
| FileShare.ReadWrite)) | |
| { | |
| new BinaryFormatter().Serialize(stream, objeto2serialize) | |
| }; | |
| } |
| public void SampleCalculateBestPathToolGping() | |
| { | |
| // Initialize the geoprocessor. | |
| IGeoProcessor2 gp=new GeoProcessorClass(); | |
| // Add the BestPath toolbox. | |
| gp.AddToolbox(@"C:\SanDiego\BestPath.tbx"); | |
| // Generate the array of parameters. | |
| IVariantArray parameters=new VarArrayClass(); |
The Complete Persepolis - by Marjane Satrapi (Author)
O MURO - FRAIPONT, CELINE / BAILLY, PIERRE
PILULAS AZUIS - PEETERS, FREDERICK / SCHEIBE, FERNANDO
O ARABE DO FUTURO - SATTOUF, RIAD
| def set_proxy_environment_variables(): | |
| proxies = urllib.getproxies() | |
| http_proxy = proxies.get('http') | |
| https_proxy = proxies.get('https') | |
| Utils.logs("Proxies: {0}".format(proxies)) | |
| if http_proxy is not None and http_proxy != "": | |
| Utils.logs("Configurando http proxy: {0}".format(http_proxy)) | |
| os.environ["HTTP_PROXY"] = http_proxy |
| def _getTokenArcMap(self): | |
| token_response = arcpy.GetSigninToken() | |
| if token_response and 'token' in token_response: | |
| self._token = token_response['token'] | |
| self._expires_in = token_response['expires'] | |
| self._token_expires_on = datetime.datetime.fromtimestamp(token_response['expires'] / 1000) - \ | |
| datetime.timedelta(seconds=1) | |
| self._referer_url = token_response['referer'] | |
| return self._token |
| python -m SimpleHTTPServer 8000 |
| def add_layer_on_mxd(layer_path): | |
| """ | |
| Adiciona uma layer ao mxd atual. | |
| """ | |
| mxd = arcpy.mapping.MapDocument("CURRENT") | |
| data_frames = arcpy.mapping.ListDataFrames(mxd, "*")[0] | |
| newlayer = arcpy.mapping.Layer(layer_path) | |
| arcpy.mapping.AddLayer(data_frames, newlayer, "BOTTOM") | |
| add_layer_on_mxd("IN_MEMORY\FeatureCabos_T2UVATGGKJ") |
Agile 2011 Notes
Rafael - Agile distribuido
Retrospectives
Set the goals clearly
Set the context clearly
Be very carefull with anonymous complains - Have a plan to do with it
Safety check activities - Check In Activity or some like that is very important to have a view of how people feel
A lot of time retrospectives are about emotions. It's important to people to feel good and feel happier!