Categorie
Archivi
- aprile 2018
- marzo 2018
- gennaio 2018
- dicembre 2017
- novembre 2017
- ottobre 2017
- settembre 2017
- agosto 2017
- luglio 2017
- giugno 2017
- maggio 2017
- aprile 2017
- marzo 2017
- febbraio 2017
- dicembre 2016
- novembre 2016
- ottobre 2016
- settembre 2016
- agosto 2016
- aprile 2016
- marzo 2016
- febbraio 2016
- gennaio 2016
- dicembre 2015
- novembre 2015
- ottobre 2015
- settembre 2015
- dicembre 2014
- novembre 2014
- ottobre 2014
- settembre 2014
- agosto 2014
- luglio 2014
- giugno 2014
- maggio 2014
- aprile 2014
- marzo 2014
- febbraio 2014
- gennaio 2014
- novembre 2013
- ottobre 2013
- settembre 2013
- agosto 2013
- luglio 2013
- agosto 2012
- luglio 2012
- giugno 2012
- aprile 2012
- marzo 2012
- febbraio 2012
- gennaio 2012
- dicembre 2011
- novembre 2011
- ottobre 2011
- settembre 2011
- agosto 2011
- luglio 2011
Aggiornamenti Twitter
- Enable Chrome Desktop to Prompt #PWA Add to Homescreen youtu.be/hnMyszjVqWU 2 years ago
- RT @FiordiRisorse: Agile non è un metodo, ma un mindset. I 12 principi dell' Agile e come possononessere trasferiti in un'azienda tradizion… 2 years ago
- RT @agilebusinessda: Sì parla di SCRUM con @AndreaRegoli #ABD18 #agilebusinessday #agileinvenice #agileconference https://t.co/ev0HKNv5ar 2 years ago
- Increase your productivity: Getting Things Done #GTD with #Trello or #Asana and #zapier or #IFTTT automation… twitter.com/i/web/status/9… 2 years ago
- List of #Management and #Leadership #Books part 2 andrearegoli.wordpress.com/2018/03/19/lis… via @andrearegoli 2 years ago
- #Trello vs #Asana: what is the better? andrearegoli.wordpress.com/2018/01/16/tre… via @wordpressdotcom 3 years ago
- The best result comes from everyone in the #group doing what's best for himself AND the group andrearegoli.wordpress.com/2018/01/08/the… via @andrearegoli 3 years ago
- #DesignThinking andrearegoli.wordpress.com/2017/12/20/des… @andrearegoli 3 years ago
Tags
- AD
- ajax
- Animation
- App
- Asp.Net
- binding
- book
- books
- Bootstrap
- Cast
- child
- Column
- ComboBox
- convert
- css
- CurrentThread
- delete
- EF6
- EntityValidationErrors
- exam
- fancybox
- file
- Filename
- Font
- game
- generic handler
- icon
- Identity 2.0
- item
- Jira
- join
- jquery
- jquery plugin
- jquery validation
- Json
- Leadership
- lightbox
- linq
- Listbox
- ListView
- live
- modal
- MVC
- pass value
- pmbok
- pmi
- pmp
- post
- project management
- recursive
- REST
- Routing
- Row
- script runner
- SCRUM
- Silverlight
- SQL
- status
- thread
- tr
- update
- url
- user story
- validation
- Visual studio
- WCF
- WebClient
- Windows 8
- windows phone
- WinRT
- wp7
- WP8
- WPF
- xml
Archivi del mese: dicembre 2015
Remove XSLT auto generated empty namespace xmlns=””
This is the last article of this year. Today I have worked with XSLT and I found a great things that at the beginning can be strange. My XML My XSL My XSLT Result This things seems strange but XSLT … Continua a leggere
Pubblicato in Uncategorized
Contrassegnato empty namespace, namespace, xml, xsl, xslt
Lascia un commento
Easy CSS way to center item with position absolute
There are 2 way to center a child at the center without use any javascript. I wrote the style inline that is easier to understand Solution 1 move the parent to the center and then move the child right by … Continua a leggere
Jquery add, append, prepend, remove child
Starting from child element: appendTo, prependTo Add at the end the selected item to a jquery container. This sintax return the element added, so it can be use in fluent syntax. In this case appendTo or prependTo return liElment. Prepend … Continua a leggere
Pubblicato in HTML5, javascript, jquery
Contrassegnato append, appendTo, prepend, prependTo, remove
Lascia un commento
MVC compile views cshtml
One big problem in MVC is when you change some properties in an exists model. If there are already some views that bind that properties will stop to works but when you compile the entire project, visual studio doesn’t throw … Continua a leggere
Pubblicato in Uncategorized
Contrassegnato compile view, cshtml, Visual studio, vs
Lascia un commento
Call a Web page in Scheduled task
There are many way to call a web page inside Skeduled Task Create a .bat file with this commands start http://www.example.com Simple but It will open the browser with the page and it’s not good in a server. Create a … Continua a leggere
Pubblicato in Powershell
Contrassegnato powershell, scheduled jobs, task scheduler, web page
Lascia un commento
WebClient download page error: 403 Forbidden
Today trying to download a web page using WebClient, I have received 403 Forbidden. After some test I found two possible solutions:
Pubblicato in .Net, c#
Lascia un commento
Join in Linq, Join in Entity Framework
There are two way to do a join in a query with linq. Using Join Using the relationship property I tried both ways and the SQL generated by Entity Framework (EF6) is the same, so choose what you prefer.
Entity Framework Update Single property and Validation Errors
As has already been said about how to update only one property of our model in EF. Here I wanna go more deep in this argument: 1) attach before, modify the property after 2) attach before, modify the property after … Continua a leggere
Pubblicato in Entity Framework
Contrassegnato EntityValidationErrors, one field, update single, ValidateOnSaveEnabled, validation failed
Lascia un commento