A manifesto for Scrum adoption in your life. Assuming you already heard about Agile, Scrum, Sprints and Retrospectives. As in any scrum team, the iterative and incremental process culminate in a retrospective, where members receive and elaborate feedback, taking actions to inspect and correct behaviours, remove obstacles, fix issues. If we are in an Agile […]
You are browsing archives for
Category: Programming
Scripting, Coding, Programming. Software, Code, Help, Errors, Tips and any kind of tools and support that could be usefull.
Android Toast equivalent in iOS
If you wonder what the Java Toast equivalent of this iOS Objective C event would be than you are in the right place. Below is a sample of what I have written for iOS and Xamarin.iOS. This behave pretty much the same as Alert in Java using a Toast in place of the iOS UIAlert. In […]
Don’t ignore errors. Rule them.
“If an error is possible, someone will make it. The designer must assume that all possible errors will occur and design so as to minimize the chance of the error in the first place, or its effects once it gets made. Errors should be easy to detect, they should have minimal consequences, and, if possible, […]
Friday Feeling
3 Links to check out if you want to get familiar with Linux
Understanding Linux file permissions Linux commands man pages Linux Tutorial, Ryan’s Tutorials
Write special characters in cookies with classic ASP
The following code line Response.Cookies(“test”)= “__cf_mob_redir” will produce a cookie named “test” whith value “%5F%5Fcf%5Fmob%5Fredir” Perhaps is not what we wanted. Even if we could decode the result when reading the cookie that string is very ugly. Could also happen that our responsibility is limited to write the right value and someone else will take […]
How to read a Pop3 server mail folder with C#
Let’s see how to read emails from a pop3 Server. After setting some variables, we’ll create a connection to the Pop3 Server and we’ll try to autenticate with user and password. After we’ll take a bunch of messages and we’ll start to iterate some operation per each message. The message can be cleaned, processed, saved […]
How to use Windows registry in your .Net C# application
In this article I will show how to read and use in your .Net C# application informations stored in the Windows registry. First of all let’s see the easiest way to store some information in the server registry. You can use the “regedit” command to edit the register or you can directly use a register file. […]
HTML Parser in Classic ASP
Today I’ll show you a script written in classic ASP that can use some server vulnerability to provide traffic from an unaware website to another one through another unaware server. It’s quite simple, so I’m not going to explain it in details. This malicious code was founded on a server, and is provided as it […]
Server antivirus for free win2008 r2
I saw around a lot of unsolved forum’s posts asking basically the same question: “Free antovirus are not for free for commercial use or aren’t working on servers. Can anyone find me someone to install?” Here the solution I tried for my win2008 r2 server: Microsoft Security Essentials (here the link to the page download: http://windows.microsoft.com/en-gb/windows/security-essentials-download ). […]