Mahol Dot Org

Icon

Weblog For All Your Need

www.moe.gov.np SLC Results Nepal | SLC Result 2066 with marksheet TU result BBS Part 2 educationsansar.com

http://www.hseb.edu.np/images/hseb_logo.jpgHigher Secondary Education Board – HSEB – Nepal - 10+2 – Colleges in Nepal – Online Result – Notice – News ,
Result publisher of SLC & +2 (plus 2) with marks system and TU result for the first time in Nepal. EducationSansar.com is most popular educational portal on Nepal. You can view your SLC Result http://www.educationsansar.com/images/slc_side_result.jpgor SLC Result 2066 with marksheet
From Higher secondary education in Nepal check 2 results at Class XII Result
You can view results online from home page of HSEB site.
Enter your class, symbol number, year, exam type and press the Search button.

http://www.hseb.edu.np/content/result.php

School Leaving Certificate Examination-2064 (SLC) is likely to be published on July, 2010
SLC Results 2065 |SLC Results 2064 | SLC Results 2065 Nepal | slc result 2064 Nepal | www.moe.gov.np | moe.gov.np
Higher secondary education in Nepal check 2 results at
Class XII Result Published

http://www.educationsansar.com/images/hseb_side_result.jpgPlease View the Retotaling Result of Grade XI & XII (2066 B.S.)
Click Here ( PDF Document – 995KB)
You can view results online from home page of HSEB site.
Retotaling Results
SLC 2064 Result Published – SLC 2065 Exam -www.slc.ntc.net.np- slc result 2065 – www.ntc.net.np – slc result nepal – moe.gov.np

Latest updated results for TU results Nepal is BBS part 2 results are declared,. at educationsansar.com
source

http://www.hseb.edu.np

www.ntc.net.np, ntc.net.np, hseb result, 2 result, hseb, EducationSansar.com – Education for next generation, SLC Result 2066, SLC Result, TU Result, Hseb Result, +2 Result, SMS 4253, School, College, sansar, nepal, slc result on mobile, slc result 2066, slc, slc result, slc result on website, hseb, hseb result, +2, +2 result, tu exam, tu result, tu, tribhuvan university, schools of nepal,

number of view: 82

Possibly Related Posts:


result.educationboard.gov.bd H.S.C Dakhil Equivalent 2010 Results Online

Boards of Intermediate and Secondary Education, Madrasah Technical Education, Bangladesh

http://www.educationboard.gov.bd/images/govt_logo.gif

Boards of Intermediate and Secondary Education, Madrasah Technical Education, Bangladesh HSC results 2010 Updates

HSC results 2010 Updates, official website of “Education Boards Bangladesh”, is at www.educationboard.gov.bd ,

This year Bangladesh results sites are improved and there are few more links to check results online. View and check all board results at educationboardresults.gov.bd here is link, www.educationboardresults.gov.bd

Check out HSC 2010 results on Mobile

  1. HSC Result Dhaka board,bangladesh
  2. HSC Result Rajshahi board,bangladesh
  3. HSC Result Comilla board,bangladesh
  4. HSC Result Jessore board,bangladesh
  5. HSC Result Chittagong board,bangladesh
  6. HSC Result Barisal board,bangladesh
  7. HSC Result Sylhet board,bangladesh
  8. HSC Result Dinajpur board,bangladesh
  9. HSC Result Madrasah board,bangladesh Technical-HSC(Vocational)

Note: The results are accessable during Bangladesh local time 9 am – 5 pm
source Education Boards Bangladesh www.educationboard.gov.bd
Hsc result dhaka H.S.C/ Alim/ Equivalent 2010 Result today, HSC results 2010, hhcresult dhaka. 2010

Check HSC Result 2010 Alia Madrasah Board Bangladesh from
www.bmeb.gov.bd/

Bangladesh Madrasah Education Board

Collect Alim Exam 2010 Result through e-mail

http://result.educationboard.gov.bd/ Result of All Education Board

Bangladesh Technical Education Board http://www.bteb.gov.bd/

http://educationboard.gov.bd/ Education Boards Bangladesh

Dhaka University

The Board of Intermediate and Secondary Education, Sylhet;
HSC results for the Science, Humanities and Business Studies

number of view: 69

Possibly Related Posts:


siteonmobile.com Perfect Example Of Personal Computing For Transforming Lives In Emerging Markets

http://som-portal-br1.hpl.hp.com/som/assets/homelogo2.pngwww.siteonmobile.com, an innovative solution by HP labs india,
Which provides a new way of information sharing. Five years before nobody thought of facebook, twitter and youtube, today they are everywhere on each website. This is perfect example of personal computing, narrates HP labs India director Dr. Prith Banerjee.
In 2008 HP Labs India started working on this project, and came up with technology called Siteonmobile. This is unique in nature because it captures not only internet users but also non internet users by using IVR system. User has to dial in to specific number of send ans SMS to specific number to get the information. The technology behind it uses is Tasklets, which interacts with cloud and provides the results to user, Hiding the complexity of the system.
This service is made available free by HP Labs India.
visit official blog for comments and recent updates.
Tasklets represents a sequence of interactions needed to perform a task on the web.
Youtube video on Tasklets for Simplifying Web (SWAN project) by HP Labs India

number of view: 20

Possibly Related Posts:


Cross Compiling Python 2.6.2 For ARM Cross Compiling Python for Embedded Linux

Tried to Cross Compile Python 2.6.2 For my ARM board, got success to successfully port python on ARM board, On ARM board Embedded Linux is already ported and running fine.

http://www.python.org/images/python-logo.gif ==>>  http://www.arm.com/images/site/arm_logo.gif

Here are simple steps to Cross compile python for ARM target board.

1) setup ARM tool chain with X11
2) export PKG_CONFIG_PATH

install dependencies
====================

Dependencies taken from DEBIAN
——————————
1) libdb
copy

2) libsqlite3
copy and change prefix in sqlite3.pc

3) ncursesw
copy

Dependencies installed from source
———————————–
1) bzip2
edit Makefile

CC=arm-linux-gcc
AR=arm-linux-ar
RANLIB=arm-linux-ranlib
PREFIX=your_toolchain_prefix_path

make
make install

2) gdbm
./configure –host=arm-linux –target=arm-linux –prefix=/xxx/yyy –enable-shared
make
make install
3) tcl-8.4.19
cd to unix folder

export ac_cv_func_strtod=yes
export tcl_cv_strtod_buggy=1

CC=arm-linux-gcc ./configure –host=arm-linux –prefix=/xxx/yyy

make
make install DESTDIR=/xxx/yyy

Note: dont install in prefix otherwise tk is not compiling.

4) tk-8.4.19

./configure –host=arm-linux CC=arm-linux-gcc
–prefix=/xxx/yyy –with-tcl=<path to unix folder in source of tcl>

make

make install

Note: you may have to move X11R6 from toolchain to /usr because its looking  in /usr for the X11 libs. if you do so remember to take backup of your /usr/X11R6 and then restore when you are done cross compiling python. Later find out why Makefiles are looking for X11R6 in /usr and change the path in those Makefiles..

5) readline-6.1
./configure
make
make install

6) openssl-0.9.8
There is no need to type configure, a Makefile is already existing. We just need to edit it and change it with way:

INSTALLTOP=/opt/external_packages/openssl/0.9.8g/compiled/xxx-yyy-linux-gnu
OPENSSLDIR=/opt/external_packages/openssl/0.9.8g/compiled/xxx-yyy-linux-gnu

CC= xxx-yyy-linux-gnu-gcc
AR=xxx-yyy-linux-gnu-ar $(ARFLAGS) r
RANLIB= xxx-yyy-linux-gnu-ranlib
To compile and install the OpenSSL project, type successively make and make install. You should find the directories and files listed above under /opt/external_packages/openssl/0.9.8g/compiled/xxx-yyy-linux-gnu/.

change pkg-config files

Patching Python-2.6.2 before crosscompile
—————————————–
1) ./configure
2) make python Parser/pgen
3) mv python hostpython
4) mv Parser/pgen Parser/hostpgen
5) make distclean

6) apply the patch Python-2.6.2-xcompile.patch
patch -p1 < Python-2.6.2-xcompile.patch

7) In Modules/Setup.config and setup.py according to
Setup.config and setup.py (TODO: make patches for setup.py and Setup.config).
8) edit Modules/getaddrinfo.c and change “u_” to “unsigned ”

Compiling Python-2.6.2
———————-
CC=arm-linux-gcc CXX=arm-linux-g++ AR=arm-linux-ar RANLIB=arm-linux-ranlib ./configure –host=arm-linux –build=i686-pc-linux-gnu –prefix=/xxx/yyy
make HOSTPYTHON=./hostpython HOSTPGEN=./Parser/hostpgen BLDSHARED=”arm-linux-gcc -shared” CROSS_COMPILE=arm-linux- CROSS_COMPILE_TARGET=yes
make  install HOSTPYTHON=./hostpython BLDSHARED=”arm-linux-gcc -shared” CROSS_COMPILE=arm-linux- CROSS_COMPILE_TARGET=yes prefix=~/Python-3.1.2

Dependencies – Setup.config and setup.py are configuration files are required to be modify for ARM board.

Downloads required for Cross Compiling Python for Embedded Linux

  1. Setup.config
  2. setup.py

Note -Rename python_setup_file to setup.py
Links -  Download Python

python corss compile patch used.

number of view: 53

Possibly Related Posts:


Ifort -extend-source Option Errors & Fortran Fixed Formatting Use nofree

Problem Definition
Working on FORTRAN source code migrations from Solaris operating system to windows XP.  Fortran being most portable code so most of the time we do not see any problems while porting fortran code, but there is always problem with columns length exceeds to default value and while compilations we forgot to take care of option extend-source.

Intel® Fortran compiler(ifort) – Option -extend-source

       -extend-source [size]
	      Specifies the column number to use to end the  statement	field
	      in  fixed-form source files. [size] can be 72, 80, or 132.  The
	      default behavior is -noextend-source, which implies column  72.
	      If  you  do  not	specify	 size,	it  is the same as specifying
	      -extend-source 132.

source ifort help or man ifort

Solution
The Makefile has a compiler flag called /extend_source:132, which basically extends the number of columns the Fortran compiler looks at. The default value is 72. /extend_source extends the number of columns that the compiler looks at to 132.

Fortran generally uses something called as Fixed Formatting - which takes 72 valid columns, ignores the rest and also considers tabs and spaces as comments inside a statement field.
/nofree tells the compiler that fixed formatting needs to be used. Most of the time code follows fixed formatting.

TO remove all compiler errors which pertain to syntax errors at Format statement just add some variable in your makefile, like
COLEXTEND=/extend_source:132

And when facing problem while compiling any fortran module in Windows just compile with COLEXTEND= /nofree.

example of make command, assuming windows makefile name as win.make

on command prompt type : nmake /f win.make COLEXTEND=/nofree

Good luck and do comment your experiences as well.

Related problem regarding

-extend-source option

number of view: 36

Possibly Related Posts:


www.moe.gov.np Nepal SLC Exam Result 2067 Onilne SLC Examination Result 2066

www.moe.gov.np Nepal SLC Result Name wise 2067 School Leaving Certificate The SLC results 2067 will be published by next week. nepali slc result 2067.

Government of Nepal Ministry of Education the School Leaving Certificate (SLC) Results 2067. Nepal SLC Results 2067 will be announced on 1st week of July, 2010. SLC Results 2067 or SLC Result 2066 announced on the official website The Ministry of Education (MoE) at

http://moe.gov.np/

Related:

Nepal SLC Results 2067 and SLC Results 2066

Nepal SLC Result 2067, moe.gov.np , www.SLC Result 2065.edu.com.

slc 2067 in nepal. nepal slc result 2067. slc result slc net.

SLC Results 2065 Nepal SLC Exam Result 2009 On SMS &amp; Merit List

nepal – the office of controller of the examination has made published the results of the SLC examination 2065. slc result of 2065 b.s. slc result 2065,

ministry of education. SLC result 2066.

number of view: 24

Possibly Related Posts:


How To Capture X Protocol Traffic Using Wireshark On Windows XP?

This is an experiment about use wireshark to capture X protocol traffic

Google and the wireshark manual/wiki give no hints (ie. How do you capture DISPLAY=:0.0 traffic ?). Setting wireshark to capture “local” (127.0.0.1) or “any” devices captured nothing. The remote X11
server
doesn’t support XRandR so it’s no help.

If you set DISPLAY=localhost:0 then the client will use TCP on the
loopback interface and wireshark can capture that. Of course your X
server can’t be running with “-nolisten tcp”, which is default in many
installations. thanks to Xcb thread discussion

Challenges
I want to capture localhost traffic on Windows Xp machine with Wireshark, and it fails.
Did google on it about Is there a way to get wireshark to capture packets sent from/to localhost on Windows?
Got this info from WIKI Loopback capture setup
Which says I need to install Loopback adapter and steps here for Microsoft: How to install the Microsoft Loopback adapter in Windows XP

This method did not help much expect able to capture only ARP packets,

Capturing local traffic on Windows XP Route method
> route add 155.132.130.129 mask 255.255.255.255 155.132.130.1 metric 1
where 155.132.130.129 is your local IP, and 155.132.130.1 that of your default gateway. You must have “Advanced TCP/IP Settings > Automatic metric” disabled! What it does is basically force each packet intended for localhost to go out to the default gateway first, from which it will come back again. Of course this means you see each packet twice.

===Not directly, but if you are on a network with a gateway, you can use the
command-line ROUTE command to redirect the packets through the gateway, which will bounce the packets back at your machine so Ethereal/Wireshark can capture them.  You can use comview tool. It can fullfil your wish. Wireshark does not use IM driver but it uses protocol driver.

Still digging on How To Capture X Protocol Traffic Using Wireshark On Windows XP?

number of view: 13

Possibly Related Posts:


Parse error: wp-content/themes/grid_focus/functions.php on line 6

Parse error: wp-content/themes/grid_focus/functions.php on line 6:

Wooo , this error I got, when i tried to add play with functions.php file,
I am using gridfocus-wordpress template,
Reason Why I was playing with this function is, I did not see any adds when the visitor comes on the pages with under pages TAGS
Eg, when visitor comes on this page,

from google.co.in on “Posts tagged “tancet2010-rank-list” – Mahol Dot Org

I am unable to show the Adds, but it is not problem with visitor comes from google.co.in on “www.unipune.ac.in | Pune Board | MKCL Results Pune

I could not able to locate the place, so thought of playing with functions.php file
I have just added the new line in this function and boom..
Parse error: wp-content/themes/grid_focus/functions.php on line 6
Nothing is coming up, unable to save the templates as well..
Solution:
Login to FTP, download the grid focus template. , and upload the file functions.php in /wp-content/themes/grid_focus.

This saved me, since I did not have taken backup of my blog and just doing changes.

Thanks god I am back. Enjoy

number of view: 10

Possibly Related Posts:


www.bseorissa.in.co Orissa H.S.C or 10th Results at orissaresults.nic.in Merit List

Orissa Examination Results 2010 updates
Board of Secondary Education, Orissa , declared Annual H. S. C Examination Result – 2010 declared on 20th June
orissaresults.nic.in

results.nic.in
BOARD OF SECONDARY EDUCATION ORISSA, CUTTACK

ANNUAL H.S.C EXAMINATION RESULT – 2010 or direct link orissaresults.nic.in/bsein10.htm
Merit List (Top 100) at www.bseorissa.in.co.
BOARD OF EDUCATION ORISSA RESULTS 2010. orrissa result.com.

Congrats to Topper ANUPAM JENA of SARASWATI VIDYAMANDIR,COLLEGE SQUARE who secured 576 marks in HSC 2010
Other toppers are from following school.

  • SARASWATI VIDYA MANDIR,BALANGIR
  • SARASWATI VIDYA MANDIR,DHANUPALI
  • NUABAZAR HIGH SCHOOL,NUABAZAR
  • PURI ZILLA SCHOOL,PURI-2
  • RADHANATH BIDYAPITHA,SORO
  • TALCHER THERMAL HIGH SCHOOL,TALCHER THERMAL
  • SARASWATI VIDYA MANDIR,GOSANINUAGAON
  • PACHHIKOTE HIGH SCHOOL,PACHHIKOTE
  • UDALA GOVT GIRLS HIGH SCHOOL,UDALA
  • BAURI BANDHU PALO HIGH SCHOOL,GOUNJU
  • SARASWATI VIDYA MANDIR,KHURDA
  • SARASWATI VIDYAMANDIR UNIT 8, NAYAPALLI
  • SARASWATI SISHU VIDYA MANDIR,NEELAKANTHA NAGAR
  • ONSLOW INSTITUTION,CHATRAPUR

date of publication of Distance Education, board of secondary education, orissa Annual C.T. Examination Result-2010 declared . bse orissa, bse orissa result, bse orissa 2010, bse result 2010, hsc results orissa

BOSEO declared HSC result – Higher Secondry result of Orissa announced – BSE Orissa declared class 10 th result.
orissaresults, bse orissa 2010 results, bseorissa, hsc orissa result, orissaresult

number of view: 12

Possibly Related Posts:


Tancet2010 Rank List Counselling Online And TNEA cut-off 2009 at www.annauniv.edu

Anna University Chennai

Tamil Nadu Engineering Admissions – 2010

THE ANNA University TNEA 2010 rank list has been published. Tamil Nadu Engineering Admissions rank list 2010 will be available on the official website at annauniv edu tancet exam results.

TNEA 2010 Rank List is for tancet 2010 entrance exam results, admission to the first year B.E/ B Tech degree courses which are offered in the Anna University Departments and Anna University Colleges including Tamil Medium in BE Mechanical Engineering and Civil Engineering, Govt and Govt Aided Engineering Colleges.

TAMIL NADU ENGINEERING ADMISSIONS 2010 RANK ENQUIRY

or direct link at www.annauniv.edu/tnea2010/rankaca.html

more updates at http://www.annauniv.edu/tnea2010/

somehow the site http://www.annauniv.edu/tancet2010/ is not working for now, students can use www.annauniv.edu/tnea2010/

source : http://www.annauniv.edu/

Counselling for NRI/CIWGC Category (B.E/B.Tech/B.Arch) Programmes) on 21st June 2010

  • Anna University Chennai
  • Anna University Coimbatore
  • Anna University Tiruchirappalli
  • Anna University Tirunelveli

tancet exam results 2010, anna university tancet exam 2010, anna university tancet result 2010, annauniv tancet result 2009, 2009 cutoff.  annauniv edu tancet

TAMIL NADU ENGINEERING ADMISSIONS 2010
SCHEDULE OF EVENTS FOR B. E. / B. TECH.
Sl.
No. Events Dates
1.
Assigning Random Number
15.06.2010
2.
Publication of Rank List
18.06.2010
3.
Verification of Certificates for Eminent
Sports Persons Category for short listed
candidates only (For details check
www.annauniv.edu/tnea2010/sports.html )
21.06.2010
22.06.2010
4.
Counselling for Sports Quota
28.06.2010
5.                       Counselling for Vocational Candidates
29.06.2010
to
03.07.2010
6.
Counselling for Differently Abled Persons
04.07.2010
7.
Commencement of Counselling for
Academic Candidates
05.07.2010

For any clarification

Write to : The Secretary

Tamil Nadu Engineering Admissions

Anna University Chennai

Chennai – 600 025.

Enquiry : 044-2235 8265 / 66 / 67 / 68, 2235 8301 / 02 / 03 / 04

number of view: 25

Possibly Related Posts: