ins.nafsadh.com
Code Example | inside the insight
https://ins.nafsadh.com/category/programming/code-example
List methods from a source file. Tue 30 Jun, 2015. Wed 01 Jul, 2015. Sometimes source files can become quite large. This is common mostly in C. But this may happen in other languages too. It makes working with these files particularly hard. Off-course there are IDEs which lists method and properties and what not. But there is a fun way to do the same stuff using python. The. For the signature of. Public protected private static s) [ w ] s ( w ) * ([ )]* ) *( {? And via Gist, Cheers! Mon 12 May, 2014.
ins.nafsadh.com
Azure | inside the insight
https://ins.nafsadh.com/tag/azure
Nodejs server on Azure. Fri 03 Jul, 2015. Fri 03 Jul, 2015. It is easy to use Node.js on a CentOS VM running on Azure, or any other linux VM on Azure. You can simply yum (with EPEL) install Node.js. Then an easy way to check if everything is working fine, a good idea is to test running a server from node. I am using this simple snippet:. Now you can start it by typing. Microsoft Azure yourazurevm Settings Endpoints. Endpoint: Any name (e.g. Http 8080). And see hello world. Install nodejs on CentOS. View ...
ins.nafsadh.com
Tutorial | inside the insight
https://ins.nafsadh.com/category/tutorial-2
Colors of Bangladesh – in Joy and with Glory. Thu 15 Dec, 2011. Fri 04 Oct, 2013. Although not legislatively established, it is generally held that. Are the colors of Bangladesh because they are on the national flag. According to People’s Republic of Bangladesh Flag Rules, 1972 ( rev 2005. The ‘National Flag’ will be in bottle green and rectangular in size in the proportion of length to width 10: 6 bearing a red circle on the body of the green. Color as per Constitution. Color name in rule book. Victory ...
arrayofpointers.wordpress.com
Select All and Deselect All Checkboxes in a list Using Asp.net « Yet Another Non-Nerdy Blog
https://arrayofpointers.wordpress.com/2014/05/07/select-all-and-deselect-all-checkboxes-in-a-list-using-asp-net
Yet Another Non-Nerdy Blog. Scrapbook of a tech learner. Select All and Deselect All Checkboxes in a list Using Asp.net. I was in a problem while I was trying to use a checkbox that will select all checkboxes or deselect all the boxes in the check list. This codes gives the important service that while selected, if any one of the check boxes is deselected, the ‘chkHeader’ (check box which selected all) will be deselected. this is an important need of course! Asp:GridView ID=CheckBoxDemo runat=server Colu...
arrayofpointers.wordpress.com
PHP session lost after redirecting the page « Yet Another Non-Nerdy Blog
https://arrayofpointers.wordpress.com/2015/05/13/php-session-lost-after-redirecting-the-page
Yet Another Non-Nerdy Blog. Scrapbook of a tech learner. PHP session lost after redirecting the page. I was inserting some data and was trying to show my success message using SESSION variables in PHP. my code segment of samplepage.php was like this:. Header('Location: samplepage.php'); } } } }. And below this segment I was catching the $ SESSION[‘MySuccessMsg’] in a div in top of my HTML body:. So every time the page was redirected after $success= 1 condition segment, I found no data in $msg. Header('Lo...
arrayofpointers.wordpress.com
Creating ASP.NET Applications with N-Tier Architecture « Yet Another Non-Nerdy Blog
https://arrayofpointers.wordpress.com/2014/06/16/creating-asp-net-applications-with-n-tier-architecture
Yet Another Non-Nerdy Blog. Scrapbook of a tech learner. Creating ASP.NET Applications with N-Tier Architecture. A good tutorial on N-Tier architecture introduction. Http:/ www.codeproject.com/Articles/439688/Creating-ASP-NET-application-with-n-tier-architect. This entry was posted in ASP.NET. Select All and Deselect All Checkboxes in a list Using Asp.net. Creating a trigger for a sequence that works for auto-increment of PK →. Leave a Reply Cancel reply. Enter your comment here. I am a multipotentialite.
arrayofpointers.wordpress.com
mahmud faisal « Yet Another Non-Nerdy Blog
https://arrayofpointers.wordpress.com/author/mahmudfaisal
Yet Another Non-Nerdy Blog. Scrapbook of a tech learner. Author Archives: mahmud faisal. Weka as a Machine Learning Tool. Last day we had a wonderful class where we were introduced us with ‘Weka’. It is generally used as a machine learning tool. Downloaded Weka from sourceforge. And installed it in our computer. For a demo, we followed following steps:. When the GUI of Weka was on the screen, clicked on Explorer. And opened a new screen. If we click on ‘ CLASSIFY. If we click on ‘ START. I was inserting ...
arrayofpointers.wordpress.com
index « Yet Another Non-Nerdy Blog
https://arrayofpointers.wordpress.com/index
Yet Another Non-Nerdy Blog. Scrapbook of a tech learner. Weka as a Machine Learning Tool. Push Pop program for 8086 microprocessor. PHP session lost after redirecting the page. How to avoid duplicate entry in each page reload after PHP submit. Difference between include() and include once() Functions in PHP. Upload and View a File (image/pdf/doc) in a List of Oracle Apex Page. Creating a trigger for a sequence that works for auto-increment of PK. Creating ASP.NET Applications with N-Tier Architecture.
arrayofpointers.wordpress.com
How to avoid duplicate entry in each page reload after PHP submit « Yet Another Non-Nerdy Blog
https://arrayofpointers.wordpress.com/2015/05/13/how-to-avoid-duplicate-entry-in-each-page-reload-after-php-submit
Yet Another Non-Nerdy Blog. Scrapbook of a tech learner. How to avoid duplicate entry in each page reload after PHP submit. I was using form submit using method=’POST’ and action=$ SERVER[‘PHP SELF’]. I added data in my DB successfully but whenever I manually reloaded my page, it was a duplicate entry. using POST variables carefully, I was unable to resolve the problem. Here goes my code segment of samplepage.php:. The solution is to RE-DIRECT the page! So, the code segment becomes:. You are commenting u...