http://www.english.hb.pl/articles/tips/
Learning English - tips
- Mnemonics and mind maps
- Learn English with Google
- Song lyrics in Winamp
- SuperMemo FAQ
------------------------------------------------------------------------------------------------
http://www.ehow.com/list_6538175_tricks-learn-english.html
Learning English is an arduous endeavor for many people. Some beginners hope to master the language right away, but the difficulties they may encounter in the initial stages of the learning process can be discouraging. New learners should remain steadfast in their efforts and employ strategies that strengthen their commitment, patience, knowledge retention and, perhaps most importantly, enjoyment throughout the learning experience.
Converse with Native English Speakers
Native English speakers possess a natural flow in their speech that beginners should try to emulate. Over time, practicing speech with a native speaker will help a beginner pronounce awkward words with ease and confidence. Additionally, beginners can familiarize themselves with idiomatic phrases that may be challenging for them to recognize and fully understand in the early stages of learning; native speakers can help convey their meanings more clearly. Moreover, forging a friendship enhances the enjoyment of the learning process.
Set Achievable Targets
It is important for beginners to set realistic targets so the learning experience is an encouraging--rather than frustrating--one. Goals such as reading a brief news article every day, learning 10 new words throughout the week or listening to a talk radio show every other day are small but achievable and allow learners to progress gradually. Measured improvement strengthens motivation and confidence; on the other hand, setting an overly ambitious goal--such as completely understanding a complex and lengthy novel in just three weeks--can lead to a new learner's unwarranted sense of failure.
Speech Recording
The LEO Network reports that an auditory learner who interprets the meanings of speech more effectively through listening to intonation, pitch, speed and other nuances can benefit from making a recording of her speech. She then can replay the recording and gauge which words are most problematic for her to articulate. This self-awareness can stimulate her improvement, as she is able to make a more conscious effort when pronouncing difficult words.
English Films, TV Shows and Songs
Watching English films and television shows and singing along to English songs are entertaining learning methods. Watch films and shows with English subtitles and print out the lyrics to favorite songs in order to learn vocabulary more effectively.
Structured Instruction
English instruction classes provide a student with the structured tutorial, deadlines, homework and tests that can strengthen his chances for success. He also can benefit from being a part of a supportive community of new learners who share his experience. If needed, private instruction is also an option.
Tips & Tricks for English learners
Etiketler: english
linq clone error
error:
Object graph for type 'Uye.UyeMacAdresi' contains cycles and cannot be serialized if reference tracking is disabled.
solution:
in dbml file change the 'Serialization Mode' to 'Unidirectional'
Etiketler: clone , linq , serialization mode
method overload with single method
Etiketler: overload method
t-sql - Retrieving Error Information
-- Create procedure to retrieve error information.
CREATE PROCEDURE usp_GetErrorInfo
AS
SELECT
ERROR_NUMBER() AS ErrorNumber
,ERROR_SEVERITY() AS ErrorSeverity
,ERROR_STATE() AS ErrorState
,ERROR_PROCEDURE() AS ErrorProcedure
,ERROR_LINE() AS ErrorLine
,ERROR_MESSAGE() AS ErrorMessage;
GO
-- Sample:
BEGIN TRY
-- Generate divide-by-zero error.
SELECT 1/0;
END TRY
BEGIN CATCH
-- Execute error retrieval routine.
EXECUTE usp_GetErrorInfo;
END CATCH;
http://msdn.microsoft.com/en-us/library/ms175976.aspx
linq - Row not found or changed
trouble:
var daskTeklif = _context.tblDaskTeklifs.SingleOrDefault(dt => dt.teklif_id == TeklifTkID);
daskTeklif.SirketPoliceNo = policeNo;
_context.SubmitChanges();
throws an exception: System.Data.Linq.ChangeConflictException: Row not found or changed.
solution:
creating a new datacontext:
var context = new DataClassesDataContext();
daskTeklif = context.tblDaskTeklifs.SingleOrDefault(dt => dt.teklif_id == TeklifTkID);
daskTeklif.sirketPoliceNo = policeNo;
context.SubmitChanges();
cycle error on cloning linq object
error: "Object graph for type 'TestLinq.PersonAddress' contains cycles and cannot be serialized if reference tracking is disabled.”
solution: change the 'Serialization Mode' to 'Unidirectional'.
source: http://stackoverflow.com/questions/1432501/clone-linq-object-error-object-graph-for-type-testlinq-personaddress-contains
Etiketler: linq , serialization
clone linq object
///
/// Clones any object and returns the new cloned object.
///
///
///
The original object.///
public static T Clone
{
var dcs = new DataContractSerializer(typeof(T));
using (var ms = new System.IO.MemoryStream())
{
dcs.WriteObject(ms, source);
ms.Seek(0, System.IO.SeekOrigin.Begin);
return (T)dcs.ReadObject(ms);
}
}
source:http://stackoverflow.com/questions/2178080/linq-to-sql-copy-original-entity-to-new-one-and-save
Etiketler: DataContractSerializer , linq
session killer script
this one line of script is a killer of asp.net session on ie 7, 8, and 9 browsers (maybe ie6, i didn't test it):
$(document).ready(function() {
// for remembering the selected tabs
$("div[id*='tabs']").tabs({ cookie: { expires: 999, name: this.id }, cache: false, collapsible: true });
}
script'i 2 parça halinde yazmak buna neden oluyor.
// // for remembering the selected tabs
// $("div[id*='tabs']").tabs({ cookie: { expires: 999, name: this.id }, cache: false, collapsible: true });
// fade effect
$("div[id*='tabs']").tabs({
fx: {
opacity: 'toggle',
duration: 'fast'
},
cookie: { expires: 999, name: this.id }, cache: false, collapsible: true
});
Etiketler: javascript , jquery , session
t-sql find object references
select object_name(object_id), OBJECT_DEFINITION(object_id)
from sys.objects
where OBJECT_DEFINITION(object_id) like '%CDS%' and type='P'
örn: ProductId alanının kullanıldığı sp'ler.
Etiketler: t-sql
streamreader encoding
sorun: doğru encoding verilmezse türkçe karakterler okunamıyor.
çözüm:
StreamReader sr = new StreamReader("ornek.txt", Encoding.GetEncoding("windows-1254"));
textBox1.Text = sr.ReadToEnd();
Etiketler: streamreader , türkçe karakter