User Youssef - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T20:12:53Z http://stackoverflow.com/feeds/user/10968 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1349513/how-to-check-if-asp-session-is-valid 0 How to check if asp session is valid? Youssef 2009-08-28T21:38:29Z 2009-11-11T22:54:31Z <p>Hi, Im using outproc session that is managed by aspnet_state. Sometimes I get run time errors saying that the session is invalid. So I wanted to check if the session is valid for every request I make. But I couldn't find a proper way to do it like in <a href="http://stackoverflow.com/questions/634929/how-to-check-if-a-session-is-invalid">this Question</a> using Java.</p> <p>Here is the code I'm using right now in the page_preinit event.It looks ugly but it works.</p> <pre><code> Try Dim x = Session.Keys().Item(0) Catch ex As Exception Session.Clear() End Try </code></pre> <p>Does any one knows a better approach? </p> <p>Thanks</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/69216#69216 0 Answer by Youssef for What is the single most influential book every programmer should read? Youssef 2008-09-16T03:42:19Z 2009-10-26T20:06:05Z <p>Programing Pearl, J.Bentley Pragamtic programmer. Mythical man month</p> http://stackoverflow.com/questions/1349513/how-to-check-if-asp-session-is-valid/1597199#1597199 0 Answer by Youssef for How to check if asp session is valid? Youssef 2009-10-20T20:45:41Z 2009-10-20T21:15:46Z <p>Actually I solved the problem by checking the first element of the session( session.item(0) ) I put the code in try catch . if the there is an exception I just clear the session. This code is in a basepage for all my pages.</p> <p>so in the preinit event my code look like this</p> <pre><code>Private Sub Page_PreInit(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.PreInit Try Dim x = Session.Keys().Item(0) Catch ex As Exception Session.Clear() End Try End Sub </code></pre> <p>It seems to be ugly but it does solve my problem.</p> <p>Thanks everyone.</p> http://stackoverflow.com/questions/1300655/whats-alternative-to-singleton/1300775#1300775 0 Answer by Youssef for What's Alternative to Singleton Youssef 2009-08-19T15:35:38Z 2009-08-19T15:35:38Z <p>You can accomplish the same behavior of singleton by using static methods. Steve yegge explains it very well in <a href="http://steve.yegge.googlepages.com/singleton-considered-stupid" rel="nofollow">this</a> post.</p> http://stackoverflow.com/questions/102084/hidden-features-of-vb-net/1207521#1207521 1 Answer by Youssef for Hidden Features of VB.NET? Youssef 2009-07-30T15:50:54Z 2009-07-30T15:50:54Z <p>One of the features I found really useful and helped to solve many bugs is explicitly passing arguments to functions, especially when using optional.</p> <p>Here is an example:</p> <pre><code>Public Function DoSomething(byval x as integer, optional y as boolean=True, optional z as boolean=False) ' ...... End Function </code></pre> <p>then you can call it like this:</p> <pre><code>DoSomething(x:=1, y:=false) DoSomething(x:=2, z:=true) or DoSomething(x:=3,y:=false,z:=true) </code></pre> <p>This is much cleaner and bug free then calling the function like this</p> <pre><code>DoSomething(1,true) </code></pre> http://stackoverflow.com/questions/922998/jgrowl-not-working-with-masterpage 0 jGrowl not working with MasterPage Youssef 2009-05-28T20:31:19Z 2009-07-17T23:00:01Z <p>Hi, I'm trying to use <a href="http://stanlemon.net/projects/jgrowl.html" rel="nofollow">jGrowl</a> in an aspx page. But I encountered a problem that I couldn't solve. When I use a regular aspx page the jGrowl is working fine. however when I use the page with a MasterPage the jGrowl is not working ,I got a javascript error saying $.jGrowl is not a function.</p> <p>From Firebug Console, I can query $; $("a"); they return objects. Which means jquery is loaded, but $.jGrowl("hello world"); return "$.jGrowl is not a function."</p> <p>Here is the sample code I'm using</p> <pre><code>&lt;%@ Page Language="VB" AutoEventWireup="false" CodeFile="growl.aspx.vb" Inherits="growl" MasterPageFile="~/MyMaster.Master" Title="growl" %&gt; </code></pre> <p> </p> <pre><code>&lt;script language="javascript" type="text/javascript" src="Scripts/jquery.min.js"&gt;&lt;/script&gt; &lt;script language="javascript" type="text/javascript" src="Scripts/jquery.jgrowl.js"&gt;&lt;/script&gt; &lt;script language="javascript" type="text/javascript" src="Scripts/jquery-ui.min.js"&gt;&lt;/script&gt; </code></pre> <p></p> <pre><code>&lt;asp:Content ID="maincontent1" runat="server" ContentPlaceHolderID="MainContent"&gt; $(document).ready(function() { $('#demo12').click(function() { $.jGrowl("Growl Notification"); }); }); &lt;button id="demo12" type="reset" onclick="$.jGrowl('Hello WORLD');"&gt; DEMO&lt;/button&gt; </code></pre> <p></p> <p>The master page contains an Asp:ScriptManager.</p> <p>Any help is very appreciate it.</p> <p>Thanks,</p> http://stackoverflow.com/questions/2556/whats-the-best-online-payment-processing-solution/1106605#1106605 0 Answer by Youssef for What's the best online payment processing solution? Youssef 2009-07-09T21:41:55Z 2009-07-09T21:41:55Z <p>Try AlertPay, they have very competetive fees.</p> http://stackoverflow.com/questions/1044972/namespace-or-class-could-not-be-found-asp-net-website-project/1045006#1045006 0 Answer by Youssef for namespace or class could not be found (ASP.NET WebSite "project") Youssef 2009-06-25T16:51:55Z 2009-06-25T16:51:55Z <p>is lists.cs wrapped in a namespace? if it is the case then you need to add the namespace (yournamespace.lists) or include it in masterpage. Check Also if your MasterPage is in a Namespace</p> http://stackoverflow.com/questions/1013807/access-images/1013875#1013875 5 Answer by Youssef for Access Images Youssef 2009-06-18T16:54:16Z 2009-06-18T16:56:33Z <pre><code>$(":img[src='matchString']").toggleClass('yourhighlightCSScalss') </code></pre> http://stackoverflow.com/questions/967400/jquery-user-control 2 Jquery user control Youssef 2009-06-08T22:44:43Z 2009-06-09T18:02:24Z <p>I have a problem with jquery not loaded in an asp user control.</p> <p>I want simply to add the click event when a checkbox is clicked.</p> <p>Here is my javascript file </p> <pre><code>$(document).ready(function() { var arr = jQuery(":checkbox[id*='drpAccountType']"); for (i = 0; i &lt; arr.length; i += 1) { $("#" + arr[i].id).click(function() { alert(this.id) }); } }); if (typeof (Sys) !== 'undefined') Sys.Application.notifyScriptLoaded(); </code></pre> <p>The user control pre render events:</p> <pre><code>Protected Sub Page_PreRender(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.PreRender ScriptManager.RegisterClientScriptInclude(Me, Me.GetType, "CheckboxdropdownScript", ResolveUrl("~/Scripts/CheckBoxDropDown.js")) End Sub </code></pre> <p>the script is loaded fine but any usage of jQuery return undefined. Then only when the page is loaded I can excute the same code for the commande line in firebug. The jquery library is loaded in the master page.</p> <p>Whenever I'm using jquery within an asp user control I always find problems, and I always have to hack around to get it to work. I try all the entries in stackoverflow but I never found a one as general solution.</p> <p>did any one found a simple solution to use jquery with master pages, user control in asp.net I would appreciate if someone can share such valuable information.</p> <p>My manager is about to drop jquery from the application as we always waist lot of time just to find a workaround to have it to work with user controls.</p> <p>Please help, I like jquery and I really want to use it for client script.</p> <p>best regards</p> http://stackoverflow.com/questions/922998/jgrowl-not-working-with-masterpage/926496#926496 0 Answer by Youssef for jGrowl not working with MasterPage Youssef 2009-05-29T15:09:31Z 2009-05-29T15:09:31Z <p>I found my problem. It was a literal in the MasterPage that is set in the page_Load to include the javascript library. When I removed it it works fine.</p> <p>Thanks guys for your help.</p> http://stackoverflow.com/questions/643274/gridview-paging-inside-a-repeater 0 GridView Paging inside a repeater Youssef 2009-03-13T15:35:07Z 2009-03-16T16:05:16Z <p>Hi ,</p> <p>I have a greidview nested within a repeater , And trying to enable paging on th e grid view without much success.</p> <p>the gridview databound is like this</p> <pre><code>&lt;asp:repeater....&gt; &lt;asp:gridview id="GridView1" Datasource='&lt;%# LoadData(CInt(Eval("Id"))) %&gt;' OnPageIndexChanging="GridViewPageIndexChanging" AllowPaging="true" PageSize="10" ............. &lt;/asp:GridView&gt; &lt;/asp:repeater&gt; </code></pre> <p>In the code behind My loadData get a list of objects.</p> <pre><code>Public Function LoadData(ByVal Id As Integer) As IList(Of Client) Dim ds As IList(Of Client) = client.GetClientById(Id) Return ds End Function </code></pre> <p>And the event handler is as follow:</p> <pre><code>Protected Sub GridViewPageIndexChanging(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewPageEventArgs) sender.PageIndex = e.NewPageIndex End Sub </code></pre> <p>My code doesn't change the page in the gridview , Am I missing something ?</p> <p>Any help is very appreciate it.</p> http://stackoverflow.com/questions/643274/gridview-paging-inside-a-repeater/643481#643481 0 Answer by Youssef for GridView Paging inside a repeater Youssef 2009-03-13T16:15:58Z 2009-03-16T16:05:16Z <p>I'm one step further , After I do the binding I got an exception on Eval. I changed it in the datasource to &lt;%#LoadData(DataBinder.Eval(Container.DataItem,"Id"))%> </p> <p>I don't get the Eval exception anymore after the binding. However my grid still empty.</p> <p>[update]</p> <p>Ok I got it solved by keeping my Ids in hashtable and I rebind my gridview with the equivalent id from the hashtable. </p> <p>It is all good now thanks everyone for your helps.</p> http://stackoverflow.com/questions/488229/personal-project-idea-database-and-tracking/488702#488702 0 Answer by Youssef for Personal project/idea database and tracking Youssef 2009-01-28T18:12:29Z 2009-01-28T18:12:29Z <p>I use Emacs with Org-mode and remember.</p> http://stackoverflow.com/questions/440371/blogging-from-within-emacs 3 blogging from within emacs [closed] Youssef 2009-01-13T19:18:41Z 2009-01-14T03:46:40Z <p>Hi all,</p> <p>I would like to know what packages and tools to use to write blogs from within emacs. I mean packages to write and publish. I 've seen a demo of that in textmate : <a href="http://blog.macromates.com/2006/blogging-from-textmate/" rel="nofollow">http://blog.macromates.com/2006/blogging-from-textmate/</a></p> <p>Is it possible to do the same in emacs?</p> <p>Thank you very much.</p> <p>Edit: I found a package in google code that serve blogging form emacs <a href="http://code.google.com/p/e-blog/" rel="nofollow">e-blog</a></p> <p>I still don't get it why this thread is closed !!!! Not related to development!!???</p> http://stackoverflow.com/questions/439574/whats-the-best-way-to-refactor-a-method-that-has-too-many-6-parameters/439720#439720 1 Answer by Youssef for What's the best way to refactor a method that has too many (6+) parameters? Youssef 2009-01-13T16:36:30Z 2009-01-13T16:36:30Z <p>This is quoted from Fowler and Beck book: "Refactoring"</p> <blockquote> <p>Long Parameter List</p> <p>In our early programming days we were taught to pass in as parameters everything needed by a routine. This was understandable because the alternative was global data, and global data is evil and usually painful. Objects change this situation because if you don't have something you need, you can always ask another object to get it for you. Thus with objects you don't pass in everything the method needs; instead you pass enough so that the method can get to everything it needs. A lot of what a method needs is available on the method's host class. In object-oriented programs parameter lists tend to be much smaller than in traditional programs. This is good because long parameter lists are hard to understand, because they become inconsistent and difficult to use, and because you are forever changing them as you need more data. Most changes are removed by passing objects because you are much more likely to need to make only a couple of requests to get at a new piece of data. Use Replace Parameter with Method when you can get the data in one parameter by making a request of an object you already know about. This object might be a field or it might be another parameter. Use Preserve Whole Object to take a bunch of data gleaned from an object and replace it with the object itself. If you have several data items with no logical object, use Introduce Parameter Object. There is one important exception to making these changes. This is when you explicitly do not want to create a dependency from the called object to the larger object. In those cases unpacking data and sending it along as parameters is reasonable, but pay attention to the pain involved. If the parameter list is too long or changes too often, you need to rethink your dependency structure.</p> </blockquote> http://stackoverflow.com/questions/392993/what-are-your-favorite-programming-bookmarks/393141#393141 0 Answer by Youssef for What are your favorite programming bookmarks? Youssef 2008-12-25T20:02:42Z 2008-12-25T20:02:42Z <p><a href="http://c2.com/cgi/wiki?WikiWikiWeb" rel="nofollow">WikiWikiWeb, by Ward Cunningham </a></p> http://stackoverflow.com/questions/344826/looking-for-input-in-model-design-for-django-schools/345053#345053 0 Answer by Youssef for Looking for input in model design for Django Schools Youssef 2008-12-05T20:40:28Z 2008-12-05T20:40:28Z <p>You should link paiement (transaction) to the person concerned.</p> http://stackoverflow.com/questions/315642/what-was-your-biggest-programming-blooper -2 what was your biggest programming blooper [closed] Youssef 2008-11-24T21:55:17Z 2008-11-24T22:04:02Z <p>Based on the question asked <a href="http://stackoverflow.com/questions/278526/what-was-your-biggest-nix-blooper">here</a> for *nix fellows, I 'm wondering how about programming in general. </p> <p>I just had one of my colleague did something like this on SQL SERVER.</p> <pre><code>Update [Transaction] set [Amount]=0 where @UserId = @UserId </code></pre> <p>Forgetting to remove the @ in the condition which set the condition to be always true, and he ran the query on the production server. Guess what happened to all the transactions in the system.We had a hard time to restore the DB. And we all learned an important lesson.</p> <p>The reason I share this because from mistakes we learn.</p> <p>What's yours ?</p> http://stackoverflow.com/questions/303096/tripledes-encryption-in-c 2 TripleDES Encryption in C# Youssef 2008-11-19T19:43:23Z 2008-11-19T20:02:43Z <p>I'm trying TripleDES Encryption with ECB mode. My code looks like that:</p> <pre><code>public static string EncryptDES(string InputText) { byte[] key = new byte[] { 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48 }; byte[] clearData = System.Text.Encoding.UTF8.GetBytes(InputText); MemoryStream ms = new MemoryStream(); TripleDES alg = TripleDES.Create(); alg.Key = key; alg.Mode = CipherMode.ECB; CryptoStream cs = new CryptoStream(ms, alg.CreateDecryptor(), CryptoStreamMode.Write); cs.Write(clearData, 0, clearData.Length); cs.FlushFinalBlock(); byte[] CipherBytes = ms.ToArray(); ms.Close(); cs.Close(); string EncryptedData = Convert.ToBase64String(CipherBytes); return EncryptedData; } </code></pre> <p>When I run a test I got an exception that the "Length of Data to decrypt is invalid."</p> <p>Does anyone knows what I'm doing wrong?</p> <p>Thank you in advance.</p> <h2>Update</h2> <p>My bad ! I found my problem Instead of using <code>alg.CreateEncryptor()</code> I was using <code>alg.CreateDecyptor()</code>.</p> <p>A copy paste issue. :(</p> <p>Thanks for help, guys</p> http://stackoverflow.com/questions/303096/tripledes-encryption-in-c/303159#303159 3 Answer by Youssef for TripleDES Encryption in C# Youssef 2008-11-19T19:58:04Z 2008-11-19T19:58:04Z <p>My bad ! I found my problem Instead of using <code>alg.CreateEncryptor()</code> I was using <code>alg.CreateDecyptor()</code>.</p> <p>A copy paste issue. :(</p> <p>Thanks for help, guys</p> http://stackoverflow.com/questions/284804/indexing-large-table-in-sql-server 1 indexing large table in SQL SERVER Youssef 2008-11-12T18:12:56Z 2008-11-12T19:17:11Z <p>I have a large table (more than 10 millions records). this table is heavily used for search in the application. So, I had to create indexes on the table. However ,I experience a slow performance when a record is inserted or updated in the table. This is most likely because of the re-calculation of indexes. </p> <p>Is there a way to improve this.</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/39040/screencasts-for-django-python/252448#252448 0 Answer by Youssef for Screencasts for django/python? Youssef 2008-10-31T02:27:22Z 2008-10-31T02:27:22Z <p>It will be great If you could cover the same topics as the one in peepcode for rails. It will be great if the quality is similar. </p> http://stackoverflow.com/questions/251482/casting-in-vb-net 3 Casting in VB.Net Youssef 2008-10-30T19:42:36Z 2008-10-30T20:17:01Z <p>I would like to be able to cast a value dynamically where the type is known only on runtime.</p> <p>something like this</p> <p>myvalue = ctype (value, "String, Integer or Boolean")</p> <p>the string that contains the type value is passed as argument and also read from DB.</p> <p>And the value is stored as string in the DB.</p> <p>Is this possible ?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/206595/ie6-problem-with-postback-in-asp-net 1 IE6 problem with postback in asp.net Youssef 2008-10-15T21:35:19Z 2008-10-16T02:48:53Z <p>Ok I gave up, I've been struggling with this problem the whole day. I would appreciate any kind of help</p> <p>I have a page that contains a user control that is just a personalized dropdown list . I assign to each item the attribute <code>onClick=__doPostBack('actrl',0)</code>.</p> <p>when I click the page postback fine and I got the expected results. However in IE6 my page doesnt' change to the new values loaded from the server.</p> <p>The weird thing is that when I shift + click on the link The page reload fine with all changes. </p> <p>I tried to disable caching on the page but no luck.</p> <p>using all this code</p> <pre><code>Response.CacheControl = "no-cache" Response.AddHeader("Pragma", "no-cache") Response.Expires = -1 Response.Cache.SetExpires(DateTime.UtcNow.AddMinutes(-1)) Response.Cache.SetCacheability(HttpCacheability.NoCache) Page.Response.Cache.SetExpires(DateTime.Now.AddDays(-30)) Page.Response.Cache.SetCacheability(HttpCacheability.NoCache) Page.Response.Cache.SetNoServerCaching() Page.Response.Cache.SetNoStore() Response.Cache.SetNoStore() </code></pre> <p>Also when I debug the application I can see that the generated html to be rendred is correct, but it is not rendered.</p> <p>This problem happens only in IE6.</p> <p>I would appreciate any help .</p> <p>Thanks</p> http://stackoverflow.com/questions/206595/ie6-problem-with-postback-in-asp-net/206624#206624 0 Answer by Youssef for IE6 problem with postback in asp.net Youssef 2008-10-15T21:42:18Z 2008-10-15T21:42:18Z <p>the reason for that is that I need a custom dropdown list , with images and other stuff.</p> http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/69432#69432 2 Answer by Youssef for What Hosting Service is best for Django applications? Youssef 2008-09-16T04:40:29Z 2008-09-16T04:40:29Z <p>why not host in google app engine, django and python are mainly supported. and as far as I know it is free. </p> http://stackoverflow.com/questions/1349513/how-to-check-if-asp-session-is-valid/1718674#1718674 Comment by Youssef on How to check if asp session is valid? Youssef 2009-11-12T15:53:47Z 2009-11-12T15:53:47Z No, the count did not help as the count was correct.The session has elements in it, but they are corrupted for some reason. You can replicate that by using out proc session after it runs for some times(heavily accessed) it will start crashing. It could be memory problem.I didn't investigate it throughly but the try catch works fine for me. http://stackoverflow.com/questions/1349513/how-to-check-if-asp-session-is-valid Comment by Youssef on How to check if asp session is valid? Youssef 2009-08-31T16:05:43Z 2009-08-31T16:05:43Z PortageMonkey: no I'm not using from authentication http://stackoverflow.com/questions/1349513/how-to-check-if-asp-session-is-valid/1349934#1349934 Comment by Youssef on How to check if asp session is valid? Youssef 2009-08-31T16:03:52Z 2009-08-31T16:03:52Z The code I'm using is on the base page. But the session does exist it is not null. Accessing eny element will throw an exception. By simply restarting the asp_net session the problem goes or in the code I clean it. The code I'm using does solve my problem but Iwas wondering if there is other to do it. http://stackoverflow.com/questions/1349513/how-to-check-if-asp-session-is-valid Comment by Youssef on How to check if asp session is valid? Youssef 2009-08-31T15:59:21Z 2009-08-31T15:59:21Z olle: the session does exist (NOT NULL) but accessing any element throw an exception. This only happen from time to time and only on my dev machine as i do lot of build/rebuild http://stackoverflow.com/questions/707909/does-this-caching-function-work-how-i-think-it-does/708034#708034 Comment by Youssef on Does this Caching function work how I think it does? Youssef 2009-07-29T19:38:51Z 2009-07-29T19:38:51Z thanks Guffa, would it be possible to show me a simple code of how to do it in VB? http://stackoverflow.com/questions/707909/does-this-caching-function-work-how-i-think-it-does/708034#708034 Comment by Youssef on Does this Caching function work how I think it does? Youssef 2009-07-29T16:21:02Z 2009-07-29T16:21:02Z How can I accomplish similar behavior in VB.NET ? http://stackoverflow.com/questions/1044972/namespace-or-class-could-not-be-found-asp-net-website-project/1044985#1044985 Comment by Youssef on namespace or class could not be found (ASP.NET WebSite "project") Youssef 2009-06-25T16:53:37Z 2009-06-25T16:53:37Z does your master page inherits from another class? http://stackoverflow.com/questions/967400/jquery-user-control/967453#967453 Comment by Youssef on Jquery user control Youssef 2009-06-09T02:09:13Z 2009-06-09T02:09:13Z I avoid RegisterStartupScript simply because I have to construct the script using string builder which if the script is large it gets ugly and hard to maintain. http://stackoverflow.com/questions/922998/jgrowl-not-working-with-masterpage/923050#923050 Comment by Youssef on jGrowl not working with MasterPage Youssef 2009-05-28T20:55:25Z 2009-05-28T20:55:25Z I tried it but still getting TypeError: jQuery.jGrowl is not a function http://stackoverflow.com/questions/922998/jgrowl-not-working-with-masterpage/923087#923087 Comment by Youssef on jGrowl not working with MasterPage Youssef 2009-05-28T20:53:25Z 2009-05-28T20:53:25Z it is the right library , I checked the script loaded using Firebug. http://stackoverflow.com/questions/912018/key-shortcuts-in-web-application/912036#912036 Comment by Youssef on Key Shortcuts in Web Application Youssef 2009-05-26T19:16:06Z 2009-05-26T19:16:06Z Even though your application is not Gmail-like, you better use Gmail shortcut scheme, so that users will have an intuitive usage of the shortcut in your application (ie: j,k,n,p,g) or use the vim scheme. http://stackoverflow.com/questions/643274/gridview-paging-inside-a-repeater/643405#643405 Comment by Youssef on GridView Paging inside a repeater Youssef 2009-03-13T16:09:38Z 2009-03-13T16:09:38Z It is inside an ItemTemplate, http://stackoverflow.com/questions/643274/gridview-paging-inside-a-repeater/643377#643377 Comment by Youssef on GridView Paging inside a repeater Youssef 2009-03-13T16:00:17Z 2009-03-13T16:00:17Z Thanks ruslan whene I do that I got the following error: &quot;Databinding methods such as Eval(), XPath(), and Bind() can only be used in the context of a databound control.&quot; http://stackoverflow.com/questions/441900/most-used-ide-keyboard-shortcut Comment by Youssef on Most used IDE Keyboard Shortcut Youssef 2009-01-14T15:40:22Z 2009-01-14T15:40:22Z WHY THIS CLOSED!!!!!!!!!!!!!!!!!!! I'm really becoming sick of closing thread. (If people are intersted in it then leave it). I wish Stackoverflow review their policies about closing Questions. http://stackoverflow.com/questions/440371/blogging-from-within-emacs Comment by Youssef on blogging from within emacs Youssef 2009-01-14T03:44:00Z 2009-01-14T03:44:00Z I jsut found out ain google code to serve this purpose <a href="http://code.google.com/p/e-blog/" rel="nofollow">code.google.com/p/e-blog</a>