Click here to Skip to main content

Ilka Guigova - Professional Profile

2,447
Author
45
Authority
310
Debator
193
Editor
5
Enquirer
319
Organiser
989
Participant
Member since Thursday, July 19, 2007 (4 years, 10 months)

For more information on Reputation please see the FAQ.
 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
  Refresh
GeneralC# - Proper use of the IDisposable interface Pin
Thursday, May 24, 2012 10:42 AM
http://stackoverflow.com/questions/538060/proper-use-of-the-idisposable-interface[^]
 
GeneralMonitoring CURL Traffic Pin
Thursday, April 12, 2012 8:26 AM
https://groups.google.com/forum/?fromgroups#!topic/httpfiddler/UdL_l8aM5Kk[^]
 
EricLaw 16/04/2009
 
curl doesn't use the system proxy by default. Try this:
 
curl -x 127.0.0.1:8888 http://www.get.this/
 
This tells CURL to use Fiddler (on localhost port 8888) as a proxy.
- hide quoted text -
 
On Apr 16, 1:40 pm, refugee wrote:
> Hello -
>
> For some reason why I use curl at the command line to access websites,
> the traffic doesn't show up in Fiddler. What am I missing?
>
> Thanks.
 
GeneralHTTP Statuses Pin
Saturday, April 7, 2012 7:49 AM
http://httpstatus.es/[^]
 
GeneralC# – How to determine processor 64 bit or 32 bit? Pin
Thursday, April 5, 2012 8:35 AM
http://rongchaua.net/blog/c-how-to-determine-processor-64-bit-or-32-bit/[^]
 
GeneralHow the Clipboard Works, Part 1 Pin
Friday, March 23, 2012 11:58 AM
http://blogs.msdn.com/b/ntdebugging/archive/2012/03/16/how-the-clipboard-works-part-1.aspx[^]
 
GeneralAsynchronous Upload of Large File Using HttpWebRequest in C#.Net Pin
Friday, March 9, 2012 2:11 PM
http://stackoverflow.com/questions/5775296/asynchronous-upload-of-large-file-using-httpwebrequest-in-c-net[^]
GeneralRe: Asynchronous Upload of Large File Using HttpWebRequest in C#.Net PinmemberIlka Guigova14:29 9 Mar '12  
 
General.NET String to byte Array C# Pin
Thursday, March 8, 2012 1:36 PM
http://stackoverflow.com/questions/472906/net-string-to-byte-array-c-sharp[^]
 
GeneralList(Of T) to string Pin
Thursday, March 1, 2012 10:56 AM
The solution:
http://stackoverflow.com/questions/436716/how-do-i-invoke-a-method-through-reflection-with-a-lambda-expression-as-a-parame[^]
 
  public static class Utils
  {
    public static string ToInfo(this object obj)
    {
      if (obj.GetType().GetInterface("IList") != null && obj.GetType().IsGenericType)
      {
        var method = typeof(Utils).GetMethod("ToStrings", BindingFlags.Static | BindingFlags.Public);
        var toStrings = method.MakeGenericMethod(new[] { obj.GetType().GetGenericArguments()[0] });
        var strings = (List<string>)toStrings.Invoke(null, new object[] { obj });
 
        return string.Join(",", strings.ToArray());
 
      }
 
      return obj.ToString();
    }
 
    public static List<string> ToStrings<T>(List<T> list)
    {
      return list.ConvertAll<string>(t => t.ToString());
    }
  }
 
See Also:
http://www.codemeit.com/linq/c-array-delimited-tostring.html[^]
http://stackoverflow.com/questions/248903/if-object-is-generic-list[^]
http://stackoverflow.com/questions/7904656/reflection-invoke-method-passing-a-delegate-as-parameter[^]
 
GeneralWeb-Drawing Throwdown: Paper.js Vs. Processing.js Vs. Raphael Pin
Wednesday, February 29, 2012 7:16 AM
http://coding.smashingmagazine.com/2012/02/22/web-drawing-throwdown-paper-processing-raphael/[^] by Zack Grossbart
 
GeneralThe "2,000 line Page_Load method" Pin
Friday, February 17, 2012 8:01 AM
"There is a mythical beast in the ASP.NET world known as the "2,000 line Page_Load method". I never thought I'd see one first hand, but when I reviewed this code base I discovered an entire colony. The beasts live inside of houses built with #regions, and in the next village is an entire flock of monsters known as the "stored procedures using cursors inside triple nested loops". There isn't much land separating the beasts from the monsters, but there is a copy and paste river filled with fish we call "Execute method with switch and typecasts". The code is spectacular, and by spectacular I mean hair-raising." (http://odetocode.com/Blogs/scott/archive/2012/02/15/a-tale-of-two-offshorings.aspx[^])
 
GeneralRunning or debugging NUnit tests from Visual Studio without any extensions Pin
Wednesday, February 8, 2012 12:52 PM
Running or debugging NUnit tests from Visual Studio without any extensions[^]
 
GeneralCommon Crawl on AWS Public Data Sets Pin
Thursday, February 2, 2012 6:30 PM
Common Crawl on AWS Public Data Sets[^]: "Amazon Web Services (AWS) provides a centralized repository of public data sets that can be integrated in AWS cloud-based applications. AWS makes available such estimable large data sets as the mapping of the Human Genome and the US Census. Previously, such data was often prohibitively difficult to access and use. With the Amazon Elastic Compute Cloud, it takes a matter of minutes to begin computing on the data."
 
GeneralConceptScript 101 Pin
Saturday, January 14, 2012 5:29 PM
http://conceptscript.org/doc/tutorial.html[^]
 
GeneralTSQL Regular Expression Workbench Pin
Friday, November 11, 2011 12:38 PM
http://www.simple-talk.com/sql/t-sql-programming/tsql-regular-expression-workbench/[^]
 
General[Awesome] Original Hover Effects with CSS3 Pin
Tuesday, November 8, 2011 6:54 AM
http://tympanus.net/codrops/2011/11/02/original-hover-effects-with-css3/[^]
GeneralCSS Background: There’s More To Know Than You Think PinmemberIlka Guigova6:57 8 Nov '11  
GeneralRe: [Awesome] Original Hover Effects with CSS3 PinmemberIlka Guigova14:51 14 Jan '12  
GeneralBehind the scenes of 'Lights' PinmemberIlka Guigova17:38 14 Jan '12  
GeneralFreebie: Free Vector Web Icons (91 Icons) PinmemberIlka Guigova16:25 29 Jan '12  
GeneralRe: [Awesome] Original Hover Effects with CSS3 PinmemberIlka Guigova11:21 19 Mar '12  
GeneralPure CSS Tool Tips Revisited PinmemberIlka Guigova11:09 13 Apr '12  
GeneralDecoupling HTML From CSS PinmemberIlka Guigova6:33 23 Apr '12  
 
GeneralHow To Change compare merge tool in TFS? Pin
Monday, November 7, 2011 10:15 AM
How To Change compare merge tool in TFS?[^]
 
diff/merge configuration in Team Foundation - common Command and Argument values[^]
 
GeneralGetDeploymentDescription() Pin
Thursday, November 3, 2011 1:42 PM
http://johnnycoder.com/blog/2009/02/24/clickonce-run-at-startup/[^]

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   


Advertise | Privacy | Mobile
Web04 | 2.5.120528.1 | Last Updated 28 May 2012
Copyright © CodeProject, 1999-2012
All Rights Reserved. Terms of Use
Layout: fixed | fluid